blob: 822a93685c7838efd295d1540b15a458c93368f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Build Sloth
cargo build
FILENAME="$1"
# Compile standard library
./target/debug/sloth std/extern.sloth std/stdio.sloth std/stdmath.sloth $FILENAME
# Generate binary
clang -lm output.o std/stdio.c std/stdlib.c std/stdmath.c -o "${FILENAME%.sloth}"
# Move file
mv "${FILENAME%.sloth}" .
|