forked from kenmcmil/ivy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild_submodules.py
216 lines (154 loc) · 5.82 KB
/
build_submodules.py
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
import sys
import os
import platform
def do_cmd(cmd):
print(cmd)
status = os.system(cmd)
if status:
exit(1)
def make_dir_exist(dir):
if not os.path.exists(dir):
os.mkdir(dir)
elif not os.path.isdir(dir):
print("cannot create directory {}".format(dir))
exit(1)
def find_vs():
import os
try:
windir = os.getenv('WINDIR')
drive = windir[0]
except:
drive = 'C'
for v in ["2019","2017"]:
for w in ['',' (x86)']:
dir = '{}:\\Program Files{}\\Microsoft Visual Studio\{}'.format(drive,w,v)
if os.path.exists(dir):
for vers in ['Enterprise','Professional','Community']:
vers_dir = dir + '\\' + vers
if os.path.exists(vers_dir):
vcvars = vers_dir + '\\VC\\Auxiliary\\Build\\vcvars64.bat'
if os.path.exists(vcvars):
return vcvars
for v in range(15,9,-1):
for w in ['',' (x86)']:
dir = '{}:\\Program Files{}\\Microsoft Visual Studio {}.0'.format(drive,w,v)
vcvars = dir + '\\VC\\vcvars64.bat'
if os.path.exists(vcvars):
return vcvars
print('Cannot find a suitable version of Visual Studio (require 10.0-15.0 or 2017 or 2019)')
def build_z3():
cwd = os.getcwd()
if not os.path.exists('submodules/z3'):
print("submodules/z3 not found. try 'git submodule update; git submodule update'")
exit(1)
os.chdir('submodules/z3')
ivydir = os.path.join(cwd,'ivy')
if platform.system() != 'Windows':
cmd = 'python3.10 scripts/mk_make.py --python --prefix {} --pypkgdir {}/'.format(cwd,ivydir)
else:
cmd = 'python3.10 scripts/mk_make.py -x --python --pypkgdir {}/'.format(ivydir)
do_cmd(cmd)
os.chdir('build')
if platform.system() == 'Windows':
do_cmd('"{}" & nmake'.format(find_vs()))
else:
do_cmd('make -j 4')
do_cmd('make install')
os.chdir(cwd)
def install_z3():
make_dir_exist('ivy/lib')
make_dir_exist('ivy/z3')
if platform.system() == 'Windows':
do_cmd('copy submodules\\z3\\src\\api\\*.h ivy\\include')
do_cmd('copy "submodules\\z3\\src\\api\\c++\\*.h" ivy\\include')
do_cmd('copy submodules\\z3\\build\\*.dll ivy\\lib')
do_cmd('copy submodules\\z3\\build\\*.lib ivy\\lib')
do_cmd('copy submodules\\z3\\build\\*.dll ivy\\z3')
do_cmd('copy submodules\\z3\\build\\python\\z3\\*.py ivy\\z3')
elif platform.system() == 'Darwin':
do_cmd('cp include/*.h ivy/include')
do_cmd('cp lib/*.dylib ivy/lib')
do_cmd('cp lib/*.dylib ivy/z3')
else:
do_cmd('cp include/*.h ivy/include')
do_cmd('cp lib/*.so ivy/lib')
do_cmd('cp lib/*.so ivy/z3')
def build_picotls():
if not os.path.exists('submodules/picotls'):
print("submodules/picotls not found. try 'git submodule update; git submodule update'")
exit(1)
cwd = os.getcwd()
os.chdir('submodules/picotls')
# do_cmd('git submodule init')
# do_cmd('git submodule update')
if platform.system() == 'Windows':
do_cmd('"{}" & msbuild /p:OPENSSL64DIR=c:\\OpenSSL-Win64 picotlsvs\\picotls\\picotls.vcxproj'.format(find_vs()))
else:
if platform.system() == 'Darwin':
do_cmd('PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig" cmake . -DOPENSSL_CRYPTO_LIBRARY=/usr/local/opt/openssl/lib/libcrypto.dylib -DOPENSSL_SSL_LIBRARY=/usr/local/opt/openssl/lib/libssl.dylib')
else:
do_cmd('cmake .')
do_cmd('make')
os.chdir(cwd)
def install_picotls():
make_dir_exist('ivy/lib')
cwd = os.getcwd()
os.chdir('submodules/picotls')
if platform.system() == 'Windows':
do_cmd('copy include\\*.h ..\\..\\ivy\\include\\')
if not os.path.exists('../../ivy/include/picotls'):
do_cmd('mkdir ..\\..\\ivy\\include\\picotls')
do_cmd('copy include\\picotls\\*.h ..\\..\\ivy\\include\\picotls\\')
do_cmd('copy picotlsvs\\picotls\\*.h ..\\..\\ivy\\include\\picotls\\')
do_cmd('copy picotlsvs\\picotls\\x64\\Debug\\picotls.lib ..\\..\\ivy\\lib\\')
else:
do_cmd('cp -a include/*.h include/picotls ../../ivy/include/')
do_cmd('cp -a *.a ../../ivy/lib/')
os.chdir(cwd)
def build_v2_compiler():
cwd = os.getcwd()
os.chdir('ivy/ivy2/s1')
do_cmd('python3.10 ../../ivy_to_cpp.py target=repl ivyc_s1.ivy')
do_cmd('g++ -O2 -o ivyc_s1 ivyc_s1.cpp -pthread')
os.chdir('../s2')
do_cmd('IVY_INCLUDE_PATH=../s1/include ../s1/ivyc_s1 ivyc_s2.ivy')
do_cmd('g++ -I../s1/include -O2 -o ivyc_s2 -std=c++17 ivyc_s2.cpp')
os.chdir('../s3')
do_cmd('IVY_INCLUDE_PATH=../s2/include ../s2/ivyc_s2 ivyc_s3.ivy')
os.chdir(cwd)
def build_aiger():
cwd = os.getcwd()
os.chdir('submodules/aiger')
do_cmd('./configure.sh && make')
os.chdir(cwd)
def install_aiger():
make_dir_exist('ivy/bin')
cwd = os.getcwd()
os.chdir('submodules/aiger')
do_cmd('cp -a aigtoaig ../../ivy/bin/')
os.chdir(cwd)
def build_abc():
cwd = os.getcwd()
os.chdir('submodules/abc')
do_cmd('make')
os.chdir(cwd)
def install_abc():
make_dir_exist('ivy/bin')
cwd = os.getcwd()
os.chdir('submodules/abc')
do_cmd('cp -a abc ../../ivy/bin/')
os.chdir(cwd)
if __name__ == "__main__":
build_z3()
install_z3()
build_picotls()
install_picotls()
if platform.system() == 'Windows':
print("*******************************************")
print("Model checking not supported on Windows")
print("*******************************************")
else:
build_aiger()
install_aiger()
build_abc()
install_abc()