aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authornic-gaffney <gaffney_nic@protonmail.com>2023-07-27 23:03:20 -0500
committernic-gaffney <gaffney_nic@protonmail.com>2023-07-27 23:03:20 -0500
commitad85abc2db9ed35a2e3cf6ab18573de135ee9a5c (patch)
treee251dd8bdf7f5122489c379d8198569f3b45f01b /build.sh
parent1219f5ed8aed0bcb6a416a194fce70f0a290309d (diff)
downloadsloth-ad85abc2db9ed35a2e3cf6ab18573de135ee9a5c.tar.gz
Made error messages less terrible
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 812a732..653604d 100755
--- a/build.sh
+++ b/build.sh
@@ -2,7 +2,7 @@
cargo build
FILENAME="$1"
# Compile standard library
-./target/release/sloth std/stdio.sloth std/stdlib.sloth std/stdmath.sloth $FILENAME
+./target/debug/sloth std/extern.sloth std/stdmath.sloth std/stdio.sloth $FILENAME
# Generate binary
clang -lm output.o std/stdio.c std/stdlib.c std/stdmath.c -o "${FILENAME%.sloth}"