We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7a83fc commit 1bd14ebCopy full SHA for 1bd14eb
Makefile.common-jst
@@ -273,7 +273,7 @@ install_for_test: _install
273
mkdir _runtest/tools
274
ln -s ../_install/bin/ocamlmklib.byte _runtest/tools/ocamlmklib
275
ln -s ../_install/bin/ocamlobjinfo.byte _runtest/tools/ocamlobjinfo
276
- ln -s ../../_build/main/ocaml/tools/dumpobj.bc _runtest/tools/dumpobj
+ ln -s ../_install/bin/dumpobj.byte _runtest/tools/dumpobj
277
# ocamldoc
278
rm _runtest/ocamldoc
279
mkdir _runtest/ocamldoc
tools/dune
@@ -60,6 +60,14 @@
60
(modules dumpobj)
61
(libraries ocamlcommon ocamlbytecomp opnames))
62
63
+(install
64
+ (files
65
+ (dumpobj.bc as dumpobj.byte)
66
+ (dumpobj.exe as dumpobj.opt)
67
+ )
68
+ (section bin)
69
+ (package ocaml))
70
+
71
(executable
72
(name cmpbyt)
73
(modes byte)
0 commit comments