summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKathy Gray2015-04-08 11:36:24 +0100
committerKathy Gray2015-04-08 11:36:24 +0100
commit0af8d6df5c183bc50faa39d04e6c312ba5bfb9c1 (patch)
treecb95f9dece66c6169c74687a62a3e4beef4f26dc /src
parent65143889fd90734e3bb8a490418c6800922bef61 (diff)
makefile changes to keep up with lem ocaml-lib changes
Diffstat (limited to 'src')
-rw-r--r--src/Makefile2
-rw-r--r--src/myocamlbuild.ml2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index de899586..34b58c6d 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -16,7 +16,7 @@ test: sail interpreter
./run_tests.native
LEM = ~/bitbucket/lem/lem
-LEMLIBOCAML = ~/bitbucket/lem/ocaml-lib/_build/
+LEMLIBOCAML = ~/bitbucket/lem/ocaml-lib/
install_elf:
cp -p ../../system-v-abi/src/*.lem elf_model/
diff --git a/src/myocamlbuild.ml b/src/myocamlbuild.ml
index f1fa7a88..e38dbb4d 100644
--- a/src/myocamlbuild.ml
+++ b/src/myocamlbuild.ml
@@ -19,7 +19,7 @@ let split ch s =
let lem_dir =
try Sys.getenv "LEM_DIR" (* LEM_DIR must contain an absolute path *)
with Not_found -> "../../../lem" ;;
-let lem_libdir = lem_dir / "ocaml-lib/_build" ;;
+let lem_libdir = lem_dir / "ocaml-lib" ;;
let lem_lib = lem_libdir / "extract" ;;
let lem = lem_dir / "lem" ;;