diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2001-08-30 09:02:55 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2001-08-30 09:02:55 +0000 |
commit | e11cb7a39b204656e6a8a73d9501bece8d6e7c08 (patch) | |
tree | 7c132a9c4a68cd60bd258d6e8d984678e0587239 /asmcomp | |
parent | 8133cdf5c31528307a47411ea0eb5ed3d44f2b02 (diff) | |
download | ocaml-e11cb7a39b204656e6a8a73d9501bece8d6e7c08.tar.gz |
Decoupage de Dll en Dllpath + Dll, facilite la construction de ocamlc.opt et ocamlopt.opt
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3681 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'asmcomp')
-rw-r--r-- | asmcomp/asmlink.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asmcomp/asmlink.ml b/asmcomp/asmlink.ml index fff54f955b..20e0e6983d 100644 --- a/asmcomp/asmlink.ml +++ b/asmcomp/asmlink.ml @@ -248,8 +248,8 @@ let call_linker file_list startup_file = (List.map (fun dir -> if dir = "" then "" else Config.native_c_rpath ^ dir) (!Clflags.dllpaths @ - Dll.ld_library_path_contents() @ - Dll.ld_conf_contents()))) + Dllpath.ld_library_path_contents() @ + Dllpath.ld_conf_contents()))) (String.concat " " (List.rev !Clflags.ccobjs)) runtime_lib c_lib |