ocamltest: fix the ocamldebug test

When running ocamldebug, one needs to include the directory where the
standard library is built in the source tree.
master
Sébastien Hinderer 2019-06-07 11:11:57 +02:00
parent 1d544341d9
commit cc58f7a81a
1 changed files with 1 additions and 0 deletions

View File

@ -55,6 +55,7 @@ let toplevel_default_flags = "-noinit -no-version -noprompt"
let ocamldebug_default_flags ocamlsrcdir =
"-no-version -no-prompt -no-time -no-breakpoint-message " ^
("-I " ^ (Ocaml_directories.stdlib ocamlsrcdir) ^ " ") ^
("-topdirs-path " ^ (Ocaml_directories.toplevel ocamlsrcdir))
let ocamlobjinfo_default_flags = "-null-crc"