summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Clerc <xavier.clerc@inria.fr>2010-01-14 14:34:26 +0000
committerXavier Clerc <xavier.clerc@inria.fr>2010-01-14 14:34:26 +0000
commit25baca6fb6a125c11928d5c0b9f744d565c86c02 (patch)
treef30b905d8ee8f5593db8b2308ce9c52dfdd32f00
parent826261b8b6f7f6164d8b5fec03b8ad07a48ed84b (diff)
downloadocaml-25baca6fb6a125c11928d5c0b9f744d565c86c02.tar.gz
invalid name for bytecode runtime library
git-svn-id: http://caml.inria.fr/svn/ocaml/version/3.11@9525 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--myocamlbuild.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/myocamlbuild.ml b/myocamlbuild.ml
index ad787517c6..52d4691226 100644
--- a/myocamlbuild.ml
+++ b/myocamlbuild.ml
@@ -643,7 +643,7 @@ rule "camlheader"
rule "ocaml C stubs on windows: dlib & d.o* -> dll"
~prod:"%.dll"
- ~deps:["%.dlib"(*; "byterun/ocamlrun"-.-C.a*)]
+ ~deps:["%.dlib"(*; "byterun/libcamlrun"-.-C.a*)]
~insert:`top
begin fun env build ->
let dlib = env "%.dlib" in
@@ -659,7 +659,7 @@ rule "ocaml C stubs on windows: dlib & d.o* -> dll"
| Outcome.Good d_o -> d_o
| Outcome.Bad exn -> raise exn
end resluts in
- mkdll dll (S[atomize objs; P("byterun/ocamlrun"-.-C.a)])
+ mkdll dll (S[atomize objs; P("byterun/libcamlrun"-.-C.a)])
(T(tags_of_pathname dll++"dll"++"link"++"c"))
end;;