mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
Merge pull request #2227 from kit-ty-kate/fix-ocaml-parallel-build
Fix Makefile generation for the OCaml api
This commit is contained in:
commit
a9faf6c4ab
|
@ -2255,7 +2255,7 @@ class MLComponent(Component):
|
|||
for m in self.modules:
|
||||
ff = os.path.join(src_dir, m + '.ml')
|
||||
ft = os.path.join(self.sub_dir, m + '.cmx')
|
||||
out.write('%s: %s %s\n' % (ft, ff, cmos))
|
||||
out.write('%s: %s %s %s\n' % (ft, ff, cmos, cmxs))
|
||||
out.write('\t%s -I %s -o %s -c %s\n' % (OCAMLOPTF, self.sub_dir, ft, ff))
|
||||
cmxs = cmxs + ' ' + ft
|
||||
|
||||
|
|
Loading…
Reference in a new issue