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