From 3deb2df8e62a5f0a5535ee734a5aa13b0959f53f Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Mon, 25 Mar 2024 21:02:58 +0100 Subject: Random changes --- userland/windowserver/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'userland/windowserver/Makefile') diff --git a/userland/windowserver/Makefile b/userland/windowserver/Makefile index 0adbdaa..d267350 100644 --- a/userland/windowserver/Makefile +++ b/userland/windowserver/Makefile @@ -1,6 +1,5 @@ CC="i686-sb-gcc" -#CFLAGS = -ggdb -ffreestanding -O2 -Wall -Wextra -pedantic -mgeneral-regs-only -Wimplicit-fallthrough -CFLAGS = -ggdb -ffreestanding -Ofast -Wall -Wextra -pedantic -mgeneral-regs-only -Wimplicit-fallthrough +CFLAGS = -ggdb -O0 -Wall -Wextra -Wimplicit-fallthrough BIN=ws LIB=-lgcc INC=-I../libgui/ @@ -14,4 +13,4 @@ clean: rm $(OBJ) ws $(BIN): $(OBJ) - $(CC) -flto -o $(BIN) $(CFLAGS) $(OBJ) $(LIB) + $(CC) -o $(BIN) $(CFLAGS) $(OBJ) $(LIB) -- cgit v1.2.3