-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathinstall-zerobuild-freebsd.sh
executable file
·159 lines (135 loc) · 3.1 KB
/
install-zerobuild-freebsd.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#!/bin/bash
# changed: install to /home/foo/bin instead to /usr/local/bin!
export PATH="$HOME/l1vm/bin:$PATH"
export LD_LIBRARY_PATH="$HOME/l1vm/bin:$LD_LIBRARY_PATH"
echo "building compiler, assembler and VM..."
export CC=clang
export CCPP=clang++
sudo pkg install sdl2
sudo pkg install sdl2_gfx
sudo pkg install sdl2_image
sudo pkg install sdl2_ttf
sudo pkg install sdl2_mixer
sudo pkg install fann
sudo pkg install mpfr
sudo pkg install cmake
sudo pkg install gmake
sudo pkg install git
sudo pkg install libsodium
sudo pkg install libserialport
sudo pkg install pulseaudio
sudo pkg install pavucontrol
sudo pkg install libssl
sudo pkg install libcrypto++
# check if clang C compiler is installed
FILE=/usr/bin/clang
if test -f "$FILE"; then
echo "$FILE exists!"
else
sudo pkg install clang
fi
# check if ~/bin exists
DIR="~/l1vm/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 ~/l1vm
mkdir ~/l1vm/bin
fi
# check if zerobuild installed into ~/bin
FILE=~/l1vm/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 ~/l1vm/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
if zerobuild force; then
echo "l1asm build ok!"
else
echo "l1asm build error!"
exit 1
fi
cd ../comp
if zerobuild force; 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
if zerobuild zerobuild-nojit.txt force; then
echo "l1vm build ok!"
else
echo "l1vm build error!"
exit 1
fi
cd ..
cp assemb/l1asm ~/l1vm/bin
cp comp/l1com ~/l1vm/bin
cp prepro/l1pre ~/l1vm/bin
cp vm/l1v* ~/l1vm/bin
echo "VM binaries installed into ~/bin"
cd modules
echo "installing modules..."
chmod +x *.sh
sh ./build-freebsd.sh
if sh ./install-openbsd.sh; then
echo "modules build ok!"
else
echo "modules build FAILED!"
exit 1
fi
cd ../
echo "all modules installed. building programs..."
chmod +x *.sh
if sh ./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
echo "installing programs to ~/l1vm"
cp -R prog/ ~/l1vm
cp lib/sdl-lib* ~/l1vm/prog
echo "installing lib to ~/lib"
cp -R lib/ ~/l1vm
echo "installing fonts to ~/l1vm"
cp -R fonts/ ~/l1vm
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