diff options
author | dzwdz | 2022-04-12 19:44:38 +0200 |
---|---|---|
committer | dzwdz | 2022-04-12 19:44:38 +0200 |
commit | 008ac1574e127162f095a75f63c4c1be5d03b6d0 (patch) | |
tree | 23c7d249ec1e7b3ca85562a0e4a62a9221fb298c /Makefile | |
parent | 75ec633805db108bfddb6454ff7f8d812475feaf (diff) |
kernel: make all sizes unsigned, sort out the sign mess
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |