diff options
author | Marvin Borner | 2020-09-26 16:29:49 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-26 16:29:49 +0200 |
commit | cac7c352a1ece2744de42128a9c69df16f05d26a (patch) | |
tree | 667d9b817f77df30468c63af735de0790f59acac /kernel/Makefile | |
parent | 038722e045684a1a04f0fd6a51da2a6ea9dc9bb5 (diff) |
Very simple icmp ping handling
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index e415454..1fc024f 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -23,7 +23,7 @@ LD = ../cross/opt/bin/i686-elf-ld OC = ../cross/opt/bin/i686-elf-objcopy AS = nasm -CFLAGS = -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -mno-red-zone -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Wl,-ekernel_main -I../libc/inc/ -Iinc/ -Dkernel -O0 +CFLAGS = -Wall -Wextra -Wno-address-of-packed-member -nostdlib -nostdinc -ffreestanding -fno-builtin -mno-red-zone -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Wl,-ekernel_main -I../libc/inc/ -Iinc/ -Dkernel -Ofast ASFLAGS = -f elf32 |