-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneoc
84 lines (69 loc) · 1.38 KB
/
neoc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/bash
# Author(s): Alex
# Path to the LLVM compiler
LLC="llc"
# Path to the C compiler
CC="gcc"
# C Flags
CFLAGS="-g -Wall"
# Path to the Neo compiler
NEO="./neo.native"
error=0
keep=0
Usage() {
echo "Usage: testall.sh [options] [.neo file]"
echo "-k Keep intermediate files"
echo "-h Print this help"
exit 1
}
SignalError() {
if [ $error -eq 0 ]; then
echo "FAILED"
error=1
fi
echo " $1"
}
# Run <args>
# Report the command, run it, and report any errors
Run() {
echo $*
eval $* || {
SignalError "$1 failed on $*"
return 1
}
}
Compile() {
error=0
basename=`echo $1 | sed 's/.*\\///
s/.neo//'`
generatedfiles="${basename}.ll ${basename}.s" &&
Run "$NEO" "$1" ">" "${basename}.ll" &&
Run "$LLC" "${basename}.ll" ">" "${basename}.s" &&
Run "$CC" "$CFLAGS" "-o" "${basename}.exe" "${basename}.s" "libneoc.o" "-lm"
if [ $error -eq 0 ]; then
if [ $keep -eq 0 ]; then
rm -f $generatedfiles
fi
echo "OK"
fi
}
while getopts kdpsh c; do
case $c in
k) # Keep intermediate files
keep=1
;;
h) # Help
Usage
;;
esac
done
shift `expr $OPTIND - 1`
if [ ! -f libneoc.o ]; then
echo "Could not find libneoc.o"
echo "Try \"make libneoc.o\""
exit 1
fi
if [ $# -ne 1 ]; then
Usage
fi
Compile $1