Skip to content

Commit

Permalink
Merge pull request #1401 from ivg/fix-ocaml-plugin-build-flags
Browse files Browse the repository at this point in the history
fixes compilation flags for OCaml plugins
  • Loading branch information
wintersteiger committed Dec 14, 2017
2 parents 58c6cb8 + 4967806 commit 30a02ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mk_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -1990,7 +1990,7 @@ def mk_makefile(self, out):
out.write('%s.cmxa: %s %s %s %s.cma\n' % (z3mls, cmxs, stubso, z3dllso, z3mls))
out.write('\t%s -o %s -I %s %s %s %s\n' % (OCAMLMKLIB, z3mls, self.sub_dir, stubso, cmxs, LIBZ3))
out.write('%s.cmxs: %s.cmxa\n' % (z3mls, z3mls))
out.write('\t%s -shared -o %s.cmxs -I %s %s.cmxa\n' % (OCAMLOPTF, z3mls, self.sub_dir, z3mls))
out.write('\t%s -linkall -shared -o %s.cmxs -I %s %s.cmxa\n' % (OCAMLOPTF, z3mls, self.sub_dir, z3mls))

out.write('\n')
out.write('ml: %s.cma %s.cmxa %s.cmxs\n' % (z3mls, z3mls, z3mls))
Expand Down

0 comments on commit 30a02ff

Please sign in to comment.