aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorMarvin Borner2019-09-14 20:25:11 +0200
committerMarvin Borner2019-09-14 20:25:11 +0200
commit1934b7a44d7501f303cbd52950f0d911a02a2a63 (patch)
tree1981085f54be45f23ab2ec4147f9a411856122d0 /build.sh
parent8bb8ed3f9e7d5edb4457a7fade7dbe215bd421d2 (diff)
Improved POSIX compliance
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index d41c54f..3da9389 100755
--- a/build.sh
+++ b/build.sh
@@ -12,14 +12,18 @@ mkdir ./build/
i686-elf-as ./src/boot.s -o ./build/boot.o
files=""
-for line in $(find ./src -name \*.c); do
+find ./src -name \*.c > ./build/tmp
+while read -r line; do
stripped=$(echo "${line}" | sed -r 's/\//_/g')
stripped=${stripped#??????}
stripped=${stripped%%?}o
i686-elf-gcc -c ./"${line}" -o ./build/"${stripped}" -std=gnu99 -ffreestanding -O2 -Wall -Wextra
files="${files} ./build/${stripped}"
-done
+done < ./build/tmp
+rm tmp
+# shellcheck disable=SC2086
+# Shellcheck suppression is needed because gcc would think that $files is one file
i686-elf-gcc -T ./src/linker.ld -o ./build/melvix.bin -ffreestanding -O2 -nostdlib ./build/boot.o $files -lgcc
# Testing