We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 193e1ef + d669b09 commit b0be723Copy full SHA for b0be723
ml-proto/runtests.py
@@ -51,7 +51,7 @@ def find_interpreter(path):
51
def rebuild_interpreter(path):
52
print("// building %s" % path)
53
sys.stdout.flush()
54
- exitCode = subprocess.call(["ocamlbuild", "-libs", "bigarray, nums, str", "-Is", "given, spec, host", "host/main.native"], cwd=os.path.abspath("src"))
+ exitCode = subprocess.call(["ocamlbuild", "-libs", "bigarray, nums, str", "-Is", "given, spec, host", "-cflags", "-g", "host/main.native"], cwd=os.path.abspath("src"))
55
if (exitCode != 0):
56
raise Exception("ocamlbuild failed with exit code %i" % exitCode)
57
if not os.path.exists(path):
0 commit comments