diff options
author | Marvin Borner | 2020-04-20 23:46:46 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-20 23:46:46 +0200 |
commit | 62b27d5307b1ac019a0a3a27fe947cccff8875f6 (patch) | |
tree | b45362868b34475b85a83de47f4ed196d7e73d9f /run | |
parent | 3ea7f26a177650ca49551981e1cbd7efbc7191df (diff) |
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.
Diffstat (limited to 'run')
-rwxr-xr-x | run | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |