forked from koder77/l1vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-zerobuild-cygwin.sh
executable file
·140 lines (117 loc) · 2.56 KB
/
install-zerobuild-cygwin.sh
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#!/bin/bash
# changed: install to /home/foo/bin instead to /usr/local/bin!
export PATH="$HOME/bin:$PATH"
export LD_LIBRARY_PATH="$HOME/bin:$LD_LIBRARY_PATH"
echo "building compiler, assembler and VM..."
export CC=clang
export CCPP=clang++
# check if ~/bin exists
DIR="~/bin"
if [ -d "$DIR" ]; then
### Take action if $DIR exists ###
echo "${DIR} already exists!"
else
### Control will jump here if $DIR does NOT exists ###
echo "${DIR} will be created now..."
mkdir ~/bin
fi
# check if zerobuild installed into ~/bin
FILE=~/bin/zerobuild
if test -f "$FILE"; then
echo "$FILE exists!"
else
echo "zerobuild not installed into $FILE!"
echo "cloning and building it now..."
git clone https://github.com/koder77/zerobuild.git
cd zerobuild
./make.sh
cp zerobuild ~/bin/
cd ..
fi
# install mpreal.h include
echo "installing mpreal.h include file now..."
git clone https://github.com/advanpix/mpreal.git
sudo cp vm/modules/mpfr-c++/mpreal.h /usr/include
cd assemb
chmod +x make-win.sh
if ./make-win.sh; then
echo "l1asm build ok!"
else
echo "l1asm build error!"
exit 1
fi
cd ../comp
chmod +x make-win.sh
if ./make-win.sh; then
echo "l1com build ok!"
else
echo "l1com build error!"
exit 1
fi
cd ../prepro
if zerobuild force; then
echo "l1pre build ok!"
else
echo "l1pre build error!"
exit 1
fi
cd ../vm
chmod +x make-win.sh
if ./make-win.sh; then
echo "l1vm JIT build ok!"
else
echo "l1vm JIT build error!"
exit 1
fi
cp l1vm l1vm-nojit
cd ..
cp assemb/l1asm ~/bin
cp comp/l1com ~/bin
cp prepro/l1pre ~/bin
cp vm/l1vm ~/bin
echo "VM binaries installed into ~/bin"
cd modules
echo "installing modules..."
chmod +x *.sh
./build-win.sh
if ./install-win.sh; then
echo "modules build ok!"
else
echo "modules build FAILED!"
exit 1
fi
cd ../
echo "all modules installed. building programs..."
cd ../prog
chmod +x *.sh
if ./build-all.sh; then
echo "building programs successfully!"
else
echo "building programs FAILED!"
fi
echo "checking for ~/l1vm directory..."
# check if ~/l1vm exists
DIR="~/l1vm"
if [ -d "$DIR" ]; then
### Take action if $DIR exists ###
echo "${DIR} already exists!"
else
### Control will jump here if $DIR does NOT exists ###
echo "${DIR} will be created now..."
mkdir ~/l1vm
fi
cd ..
echo "installing programs to ~/l1vm"
cp prog/ ~/l1vm -r
cp lib/sdl-lib* ~/l1vm/prog
echo "installing lib to ~/lib"
cp lib/ ~/l1vm -r
echo "installing fonts to ~/l1vm"
cp fonts/ ~/l1vm -r
mkdir ~/l1vm/include
cp include-lib/* ~/l1vm/include/
mkdir ~/l1vm/man
echo "copy fann demo neural networks"
cp -R fann ~/l1vm
echo "installation finished!"
exit 0