diff --git a/configure.in b/configure.in index e1fd88f4536d482ec429cd50f004752cbe09acef..85ad7fd8fef5c2b4b9e12e95a286ebe83f78cf98 100644 --- a/configure.in +++ b/configure.in @@ -416,6 +416,8 @@ if test "$OCAML_OS_TYPE" = "Win32"; then else OCAMLWIN32=no if test "$OCAML_OS_TYPE" = "Cygwin"; then + AC_MSG_WARN([Compilation using Cygwin is unsupported; + consider using a MinGW-based compiler.]) AC_MSG_RESULT(Cygwin) PLATFORM=Cygwin EXE=.exe diff --git a/src/kernel_services/plugin_entry_points/dynamic.ml b/src/kernel_services/plugin_entry_points/dynamic.ml index f686cd7684e27896afc96eae7409215a3f6d11be..3add51ed01b6ba846cadb8dffde1655bbbc03fd3 100644 --- a/src/kernel_services/plugin_entry_points/dynamic.ml +++ b/src/kernel_services/plugin_entry_points/dynamic.ml @@ -273,17 +273,27 @@ let load_script base = (* --- Command-Line Entry Points --- *) (* -------------------------------------------------------------------------- *) +(* See https://github.com/ocaml/dune/pull/636 about why the path separator for + ocamlfind is ';' on Cygwin. *) +let ocamlfind_path_separator = if Sys.cygwin || Sys.win32 then ";" else ":" + let set_module_load_path path = let add_dir ~user d ps = if is_dir d then d::ps else ( if user then Klog.warning "cannot load '%s' (not a directory)" d ; ps ) in - Klog.debug ~dkey "plugin_dir: %s" (String.concat ":" Config.plugin_dir); + Klog.debug ~dkey "plugin_dir: %s" + (String.concat ocamlfind_path_separator Config.plugin_dir); load_path := List.fold_right (add_dir ~user:true) path (List.fold_right (add_dir ~user:false) (Config.libdir::Config.plugin_dir) []); - let env_ocamlpath = try Str.split (Str.regexp ":") (Sys.getenv "OCAMLPATH") with Not_found -> [] in - let findlib_path = String.concat ":" (!load_path@env_ocamlpath) in + let env_ocamlpath = + try Str.split (Str.regexp ocamlfind_path_separator) (Sys.getenv "OCAMLPATH") + with Not_found -> [] + in + let findlib_path = + String.concat ocamlfind_path_separator (!load_path@env_ocamlpath) + in Klog.debug ~dkey "setting findlib path to %s" findlib_path; Findlib.init ~env_ocamlpath:findlib_path ()