mirror of
https://github.com/tailix/kernel.git
synced 2024-11-20 11:16:10 -05:00
Enable CFLAGS "-pedantic"
This commit is contained in:
parent
4897a47b06
commit
8221f96cc6
1 changed files with 9 additions and 1 deletions
|
@ -6,7 +6,15 @@ LD = $(CCPREFIX)ld
|
|||
|
||||
KERNEL = tailix.multiboot2
|
||||
|
||||
CFLAGS = -std=gnu99 -ffreestanding -fno-builtin -fno-stack-protector -Wall -Wextra -I/usr/local/include
|
||||
CFLAGS = \
|
||||
-std=gnu99 \
|
||||
-Wall \
|
||||
-Wextra \
|
||||
-pedantic \
|
||||
-ffreestanding \
|
||||
-fno-builtin \
|
||||
-fno-stack-protector \
|
||||
-I/usr/local/include
|
||||
|
||||
# Architecture-dependent
|
||||
OBJS = start.s.o
|
||||
|
|
Loading…
Reference in a new issue