aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2019-10-25 23:26:29 +0200
committerMarvin Borner2019-10-25 23:26:29 +0200
commit5a4db78897063e5b09a676b02fec3ba4a2965921 (patch)
treeba9e1bf1ebc31ba3b541fd3936655c7a70e8ef61 /Makefile
parentd97071a061df629fa8ee7a29cc7c0b23ac304506 (diff)
Rewrite of paging and alloc functions
Still not working though :/
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3606e2a..f843795 100644
--- a/Makefile
+++ b/Makefile
@@ -23,11 +23,11 @@ build: clean
stripped=$$(echo "$${line}" | sed -r 's/\//_/g'); \
stripped=$${stripped#??????}; \
stripped=$${stripped%%?}o; \
- i686-elf-gcc -c ./"$${line}" -o ./build/"$${stripped}" -std=gnu99 -ffreestanding -O2 -Wall -Wextra -Wno-unused-parameter || exit; \
+ i686-elf-gcc -c ./"$${line}" -o ./build/"$${stripped}" -std=gnu99 -ffreestanding -O3 -Wall -Wextra -Wno-unused-parameter || exit; \
done <./build/tmp; \
rm ./build/tmp; \
- i686-elf-gcc -T ./src/kernel/linker.ld -o ./build/melvix.bin -ffreestanding -O2 -nostdlib ./build/*.o -lgcc || exit; \
+ i686-elf-gcc -T ./src/kernel/linker.ld -o ./build/melvix.bin -std=gnu99 -ffreestanding -O2 -nostdlib ./build/*.o || exit; \
# Testing
if grub-file --is-x86-multiboot ./build/melvix.bin; then \