3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 00:55:31 +00:00

ML API build fix

This commit is contained in:
Christoph M. Wintersteiger 2015-12-14 14:55:38 +00:00
parent ced6809cd8
commit edb1f4d896

View file

@ -1776,8 +1776,9 @@ class MLComponent(Component):
for m in self.modules:
ff = os.path.join(src_dir, m + '.mli')
ft = os.path.join(self.sub_dir, m + '.cmi')
out.write('%s: %s %s\n' % (ft, mlis, cmis))
out.write('%s: %s\n' % (ft, cmis))
out.write('\t%s -I %s -o %s -c %s\n' % (OCAMLC, self.sub_dir, ft, ff))
cmis = cmis + ' ' + ft
cmos = ''
for m in self.modules: