mirror of
https://github.com/Z3Prover/z3
synced 2025-06-09 15:43:25 +00:00
Include *.cmx files during installation of OCaml bindings.
The *.cmx files are now installed using ocamlfind. They contain information from the compiler that can be used during optimization (the upcoming OCaml 4.03.0 issues warning 58 if those files are missing from a package).
This commit is contained in:
parent
0870b4a5a0
commit
28f9c61d76
1 changed files with 6 additions and 6 deletions
|
@ -1913,6 +1913,7 @@ class MLComponent(Component):
|
||||||
for m in self.modules:
|
for m in self.modules:
|
||||||
out.write(' ' + os.path.join(self.to_src_dir, m) + '.mli')
|
out.write(' ' + os.path.join(self.to_src_dir, m) + '.mli')
|
||||||
out.write(' ' + os.path.join(self.sub_dir, m) + '.cmi')
|
out.write(' ' + os.path.join(self.sub_dir, m) + '.cmi')
|
||||||
|
out.write(' ' + os.path.join(self.sub_dir, m) + '.cmx')
|
||||||
out.write(' %s' % ((os.path.join(self.sub_dir, 'libz3ml$(LIB_EXT)'))))
|
out.write(' %s' % ((os.path.join(self.sub_dir, 'libz3ml$(LIB_EXT)'))))
|
||||||
out.write(' %s' % ((os.path.join(self.sub_dir, 'z3ml$(LIB_EXT)'))))
|
out.write(' %s' % ((os.path.join(self.sub_dir, 'z3ml$(LIB_EXT)'))))
|
||||||
out.write(' %s' % ((os.path.join(self.sub_dir, 'z3ml.cma'))))
|
out.write(' %s' % ((os.path.join(self.sub_dir, 'z3ml.cma'))))
|
||||||
|
@ -3517,4 +3518,3 @@ def configure_file(template_file_path, output_file_path, substitutions):
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
import doctest
|
import doctest
|
||||||
doctest.testmod()
|
doctest.testmod()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue