From f0e58643098efafecf77d2b9115dfff16f931868 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 29 Jul 2020 14:58:34 +0200 Subject: Switched to -Os flag and fixed issues with it Somehow the insl function gets optimized to one instruction so I need a gcc attribute to exclude this function from optimization. I may fix this in the future though. Anyways, the kernel is waay smaller now! :) --- run | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'run') diff --git a/run b/run index 687ac46..3774f4d 100755 --- a/run +++ b/run @@ -112,8 +112,8 @@ make_debug() { } make_disasm() { - objdump -drwC -Mintel build/melvix.bin --visualize-jumps=color | less -R - #hexdump -C build/melvix.bin | less -R + objdump -drwC -Mintel build/debug.o --visualize-jumps=color | less -R + #hexdump -C build/kernel.bin | less -R } make_sync() { -- cgit v1.2.3