diff options
author | Marvin Borner | 2019-09-14 20:25:11 +0200 |
---|---|---|
committer | Marvin Borner | 2019-09-14 20:25:11 +0200 |
commit | 1934b7a44d7501f303cbd52950f0d911a02a2a63 (patch) | |
tree | 1981085f54be45f23ab2ec4147f9a411856122d0 /build.sh | |
parent | 8bb8ed3f9e7d5edb4457a7fade7dbe215bd421d2 (diff) |
Improved POSIX compliance
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 |