diff options
author | Nicolas Pouillard <np@nicolaspouillard.fr> | 2008-08-05 13:06:56 +0000 |
---|---|---|
committer | Nicolas Pouillard <np@nicolaspouillard.fr> | 2008-08-05 13:06:56 +0000 |
commit | 5b3cdba5df796c87f730b24b691675b70a8490b7 (patch) | |
tree | 5432dd15024b6dd60e2569c85b524d5b16677174 | |
parent | 7088b4e0c9666986547a8961b998fa2b89674378 (diff) |
ocamlbuild: dynlink is now supported in native too.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@8980 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | ocamlbuild/ocaml_specific.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ocamlbuild/ocaml_specific.ml b/ocamlbuild/ocaml_specific.ml index 87694e432..41e441540 100644 --- a/ocamlbuild/ocaml_specific.ml +++ b/ocamlbuild/ocaml_specific.ml @@ -373,7 +373,7 @@ camlp4_flags' ["camlp4orr", S[A"camlp4of"; A"-parser"; A"reloaded"]; flag ["ocaml"; "pp"; "camlp4:no_quot"] (A"-no_quot");; -ocaml_lib ~extern:true ~native:false "dynlink";; +ocaml_lib ~extern:true "dynlink";; ocaml_lib ~extern:true "unix";; ocaml_lib ~extern:true "str";; ocaml_lib ~extern:true "bigarray";; |