summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordzwdz2022-04-12 19:44:38 +0200
committerdzwdz2022-04-12 19:44:38 +0200
commit008ac1574e127162f095a75f63c4c1be5d03b6d0 (patch)
tree23c7d249ec1e7b3ca85562a0e4a62a9221fb298c /Makefile
parent75ec633805db108bfddb6454ff7f8d812475feaf (diff)
kernel: make all sizes unsigned, sort out the sign mess
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3d913d4..44bcfc0 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ PATH := $(shell pwd)/toolchain/bin/:$(PATH)
AS = i686-elf-as
CC = i686-elf-gcc
CHECK = sparse
-CFLAGS = -std=gnu99 -ffreestanding -O2 -Wall -Wextra -Wold-style-definition -Werror=implicit-function-declaration
+CFLAGS += -std=gnu99 -ffreestanding -O2 -Wall -Wextra -Wold-style-definition -Werror=implicit-function-declaration -ftrack-macro-expansion=0
CFLAGS += -mgeneral-regs-only
CFLAGS += -Isrc/
LFLAGS = -ffreestanding -O2 -nostdlib -lgcc