aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/library.mli
diff options
context:
space:
mode:
authorGravatar pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-04-12 20:49:01 +0000
committerGravatar pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-04-12 20:49:01 +0000
commit59c9403ceb09a35ed219b522e9f5abdb50615d76 (patch)
treef7d3e521f6a948defdce70e00c718c6bdc7b696e /library/library.mli
parent1b9428c4e4ce6f2dbe98d0f753b062ae8634a954 (diff)
lib directory is cut in 2 cma.
- Clib that does not depend on camlpX and is made to be shared by all coq tools/scripts/... - Lib that is Coqtop specific As a side effect for the build system : - Coq_config is in Clib and does not appears in makefiles - only the BEST version of coqc and coqmktop is made - ocamlbuild build system fails latter but is still broken (ocamldebug finds automatically Unix but not Str. I've probably done something wrong here.) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15144 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library/library.mli')
-rw-r--r--library/library.mli16
1 files changed, 8 insertions, 8 deletions
diff --git a/library/library.mli b/library/library.mli
index c569ff485..95e4a6eb0 100644
--- a/library/library.mli
+++ b/library/library.mli
@@ -26,7 +26,7 @@ open Libobject
val require_library : qualid located list -> bool option -> unit
val require_library_from_dirpath : (dir_path * string) list -> bool option -> unit
val require_library_from_file :
- identifier option -> System.physical_path -> bool option -> unit
+ identifier option -> CUnix.physical_path -> bool option -> unit
(** {6 ... } *)
(** Open a module (or a library); if the boolean is true then it's also
@@ -63,12 +63,12 @@ val set_xml_require : (dir_path -> unit) -> unit
system; to each load path is associated a Coq [dir_path] (the "logical"
path of the physical path) *)
-val get_load_paths : unit -> System.physical_path list
-val get_full_load_paths : unit -> (System.physical_path * dir_path) list
-val add_load_path : bool -> System.physical_path * dir_path -> unit
-val remove_load_path : System.physical_path -> unit
-val find_logical_path : System.physical_path -> dir_path
-val is_in_load_paths : System.physical_path -> bool
+val get_load_paths : unit -> CUnix.physical_path list
+val get_full_load_paths : unit -> (CUnix.physical_path * dir_path) list
+val add_load_path : bool -> CUnix.physical_path * dir_path -> unit
+val remove_load_path : CUnix.physical_path -> unit
+val find_logical_path : CUnix.physical_path -> dir_path
+val is_in_load_paths : CUnix.physical_path -> bool
(** {6 Locate a library in the load paths } *)
exception LibUnmappedDir
@@ -76,7 +76,7 @@ exception LibNotFound
type library_location = LibLoaded | LibInPath
val locate_qualified_library :
- bool -> qualid -> library_location * dir_path * System.physical_path
+ bool -> qualid -> library_location * dir_path * CUnix.physical_path
val try_locate_qualified_library : qualid located -> dir_path * string
(** {6 Statistics: display the memory use of a library. } *)