diff options
author | Marvin Borner | 2020-01-16 21:07:03 +0100 |
---|---|---|
committer | Marvin Borner | 2020-01-16 21:07:03 +0100 |
commit | 366119b53d5148922c5df7c7bd088ed71e95499a (patch) | |
tree | a2cd4f1c7995e32c1c02b191324fa63f9d30655b /run | |
parent | cd3ad989210dc8a3f5805dd5d4c4a6bd74e281db (diff) |
Optimization reduction seems to improve things
*a bit* - POINTERS STILL DON'T WORK! Merging anyway ig
Diffstat (limited to 'run')
-rwxr-xr-x | run | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -107,10 +107,10 @@ make_build() { stripped=$(echo "${line}" | sed -r 's/\//_/g') stripped=${stripped#??????} stripped=${stripped%%?}o - compile_with_flags -O3 -c ./"${line}" -I ./src/userspace -o ./build/userspace/"${stripped}" + compile_with_flags -O2 -c ./"${line}" -I ./src/userspace -o ./build/userspace/"${stripped}" done <./build/tmp rm ./build/tmp - compile_with_flags -O3 ./build/userspace/*.o -T ./src/userspace/linker.ld -I ./src/userspace -o ./build/user.bin + compile_with_flags -O2 ./build/userspace/*.o -T ./src/userspace/linker.ld -I ./src/userspace -o ./build/user.bin # Create ISO mkdir -p ./iso/boot/ |