We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ab7284 commit 8d863f7Copy full SHA for 8d863f7
.gitignore
@@ -11,6 +11,11 @@ mOS
11
# Emacs
12
*.~
13
14
+# Nix
15
+.envrc
16
+.lock
17
+.nix
18
+
19
# Powershell (b/c qemu's fussy)
20
*.ps1
21
Makefile
@@ -14,12 +14,12 @@ GDB := gdb
endif
ifeq ($(DEBUG), true)
-DEBUG_CFLAGS := -g3 -O0
+DEBUG_CFLAGS := -g3 -O0 -fno-stack-protector
DEBUG_NASM_FLAGS := -O0
DEBUG_QEMU_FLAGS := -monitor stdio
DEBUG_LFLAGS := -g
else
22
-DEBUG_CFLAGS := -Os
+DEBUG_CFLAGS := -Os -fno-stack-protector
23
DEBUG_NASM_FLAGS := -Ox
24
DEBUG_QEMU_FLAGS :=
25
DEBUG_LFLAGS :=
0 commit comments