aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authornotin2006-09-01 13:47:00 +0000
committernotin2006-09-01 13:47:00 +0000
commitced086814dcb43f53f2a4e413515685d744a7993 (patch)
tree7b48e3acdd53a605c49a73cd601ec479de4fa220 /scripts
parent9a9a2c9c330189a677d99d1e71890dcb238c53b3 (diff)
Suite ajout option -ocamlib à configure
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9115 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'scripts')
-rw-r--r--scripts/coqmktop.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/coqmktop.ml b/scripts/coqmktop.ml
index 0e465a9f70..d63cec1f61 100644
--- a/scripts/coqmktop.ml
+++ b/scripts/coqmktop.ml
@@ -279,11 +279,11 @@ let main () =
if !opt then begin
(* native code *)
if !top then failwith "no custom toplevel in native code !";
- "ocamlopt -linkall"
+ Coq_config.camldir^"/ocamlopt -linkall"
end else
(* bytecode (we shunt ocamlmktop script which fails on win32) *)
let ocamlmktoplib = " toplevellib.cma" in
- let ocamlccustom = "ocamlc -custom -linkall" in
+ let ocamlccustom = Coq_config.camldir^"/ocamlc -custom -linkall" in
(if !top then ocamlccustom^ocamlmktoplib else ocamlccustom)
in
(* files to link *)