diff options
author | Marvin Borner | 2020-07-29 14:58:34 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-29 15:00:35 +0200 |
commit | f0e58643098efafecf77d2b9115dfff16f931868 (patch) | |
tree | 6af2ba07e0794c55c6a4ac0d5f930bd53a54354e /run | |
parent | f28c0aae0d8fe6ccd48f3bca711360cb650c4d11 (diff) |
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! :)
Diffstat (limited to 'run')
-rwxr-xr-x | run | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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() { |