From 62b27d5307b1ac019a0a3a27fe947cccff8875f6 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 20 Apr 2020 23:46:46 +0200 Subject: wtf. After a day of debugging and testing, the solution to all the bugs seems to be a "too fast" code optimization gcc flag. wtf. --- run | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'run') diff --git a/run b/run index 9857d22..814c781 100755 --- a/run +++ b/run @@ -88,12 +88,12 @@ make_build() { stripped=$(echo "${line}" | sed -r 's/\//_/g') stripped=${stripped#??????} stripped=${stripped%%?}o - compile_with_flags -Os -s -c ./"${line}" -I ./src -D ${network} -o ./build/kernel/"${stripped}" + compile_with_flags -O2 -s -c ./"${line}" -I ./src -D ${network} -o ./build/kernel/"${stripped}" done <./build/tmp rm ./build/tmp # Link kernel ASM and C objects - compile_with_flags -Os -s ./build/kernel/*.o -T ./src/kernel/linker.ld -I ./src -o ./build/melvix.bin + compile_with_flags -O2 -s ./build/kernel/*.o -T ./src/kernel/linker.ld -I ./src -o ./build/melvix.bin # Modules # TODO: Find out why no font optimizations cause strange glitches -- cgit v1.2.3