mirror of
https://github.com/tailix/kernel.git
synced 2024-11-27 11:24:34 -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
|
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
|
# Architecture-dependent
|
||||||
OBJS = start.s.o
|
OBJS = start.s.o
|
||||||
|
|
Loading…
Reference in a new issue