aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-04-20 23:46:46 +0200
committerMarvin Borner2020-04-20 23:46:46 +0200
commit62b27d5307b1ac019a0a3a27fe947cccff8875f6 (patch)
treeb45362868b34475b85a83de47f4ed196d7e73d9f /run
parent3ea7f26a177650ca49551981e1cbd7efbc7191df (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-xrun4
1 files changed, 2 insertions, 2 deletions
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