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