diff options
| author | Cody <cody@codyq.dev> | 2023-06-26 23:41:21 -0500 |
|---|---|---|
| committer | Cody <cody@codyq.dev> | 2023-06-26 23:41:21 -0500 |
| commit | a3c5134ee7581168947df8a050c332d7cb7aa426 (patch) | |
| tree | 01631812f37e4c3d124928a14f169796c58a7a0e /build.sh | |
| parent | 8c9bd55e161ba5fcaea626a1db2e0b685ac4f096 (diff) | |
| download | sloth-a3c5134ee7581168947df8a050c332d7cb7aa426.tar.gz | |
Strings and so much more
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,11 +1,11 @@ # Build Sloth -cargo build --features=llvm-sys/prefer-dynamic +cargo build # Compile standard library ./target/debug/sloth std/stdio.sloth mv output.o stdio.o ./target/debug/sloth std/stdlib.sloth -mv output.o stdlib.io +mv output.o stdlib.o ./target/debug/sloth std/stdmath.sloth mv output.o stdmath.o @@ -14,4 +14,4 @@ mv output.o stdmath.o mv output.o main.o # Generate binary -gcc stdio.o std/stdio.c stdlib.o std/stdlib.c stdmath.o std/stdmath.c main.o -o program +clang stdio.o std/stdio.c stdlib.o std/stdlib.c stdmath.o std/stdmath.c main.o -o program |
