Skip to content

Commit

Permalink
Update build.sh
Browse files Browse the repository at this point in the history
Signed-off-by: 0x4248 <[email protected]>
  • Loading branch information
0x4248 committed Oct 8, 2024
1 parent 824d1f1 commit c4ed8d7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions c/tiny/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ fi
mkdir -p build

echo "[ BUILD.SH ] Building tiny"
gcc tiny.c -o build/tiny
gcc -S tiny.c -o build/tiny.s
x86_64-elf-gcc tiny.c -o build/tiny
x86_64-elf-gcc -S tiny.c -o build/tiny.s

echo "[ BUILD.SH ] Building hello"
gcc hello.c -o build/hello
gcc -S hello.c -o build/hello.s
x86_64-elf-gcc hello.c -o build/hello
x86_64-elf-gcc -S hello.c -o build/hello.s

echo "[ BUILD.SH ] Building math"
gcc math.c -o build/math
gcc -S math.c -o build/math.s
x86_64-elf-gcc math.c -o build/math
x86_64-elf-gcc -S math.c -o build/math.s

0 comments on commit c4ed8d7

Please sign in to comment.