summaryrefslogtreecommitdiff
path: root/userland/windowserver/Makefile
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-02-22 17:28:08 +0100
committerAnton Kling <anton@kling.gg>2024-02-22 17:28:55 +0100
commita18da25e7355979d0f26cfd39dc0032172e8b135 (patch)
tree2af66bedd0dff4bbccffc8d82cd06836d7f68e0d /userland/windowserver/Makefile
parent9b475d3db3275d4c34f02161ae70ced5595a0fdb (diff)
Kernel: Fix undefined behavior and cleanup functions.
The int_syscall caused crashes for higher level of optimizations. To fix this I rewrote the function in assembly as I deemed it to be simpler.
Diffstat (limited to 'userland/windowserver/Makefile')
-rw-r--r--userland/windowserver/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/userland/windowserver/Makefile b/userland/windowserver/Makefile
index 7f80f2e..0adbdaa 100644
--- a/userland/windowserver/Makefile
+++ b/userland/windowserver/Makefile
@@ -1,5 +1,6 @@
CC="i686-sb-gcc"
-CFLAGS = -ggdb -ffreestanding -O2 -Wall -Wextra -pedantic -mgeneral-regs-only -Wimplicit-fallthrough
+#CFLAGS = -ggdb -ffreestanding -O2 -Wall -Wextra -pedantic -mgeneral-regs-only -Wimplicit-fallthrough
+CFLAGS = -ggdb -ffreestanding -Ofast -Wall -Wextra -pedantic -mgeneral-regs-only -Wimplicit-fallthrough
BIN=ws
LIB=-lgcc
INC=-I../libgui/
@@ -13,4 +14,4 @@ clean:
rm $(OBJ) ws
$(BIN): $(OBJ)
- $(CC) -o $(BIN) $(CFLAGS) $(OBJ) $(LIB)
+ $(CC) -flto -o $(BIN) $(CFLAGS) $(OBJ) $(LIB)