diff options
author | Anton Kling <anton@kling.gg> | 2024-03-25 21:02:58 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-03-25 21:04:10 +0100 |
commit | 3deb2df8e62a5f0a5535ee734a5aa13b0959f53f (patch) | |
tree | af8841076c95ae3de7dcd4a006026be2607a0fbf /userland/windowserver/Makefile | |
parent | 6baa733f5682f660143c851a635a53dc2c2df7ae (diff) |
Random changes
Diffstat (limited to 'userland/windowserver/Makefile')
-rw-r--r-- | userland/windowserver/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
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) |