aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/loadpath.ml
diff options
context:
space:
mode:
authorGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2014-05-22 10:48:11 +0200
committerGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2014-05-22 10:48:11 +0200
commit4d6a5677f0f4af0193bb42f5d2938287efaaf91b (patch)
treedf73ba2913e000fd809a7ae81e4b6cd82926a765 /library/loadpath.ml
parentcc63a961f846e6e00f56d4c1e98d80fafbfb17b8 (diff)
Fix native_compute for systems with a limited size for the command line.
The call to the native compiler can fail due to the sheer amounts of -I options passed to it. Indeed, it is easy to get the command line to exceed 512KB, thus causing various operating systems to reject it. This commit avoids the issue by only passing the -I options that matter for the currently compiled code. Note that, in the worst case, this commit is still not sufficient on Windows (32KB max), but this worst case should be rather uncommon and thus can be ignored for now. For the record, the command-line size mandated by Posix is 4KB.
Diffstat (limited to 'library/loadpath.ml')
-rw-r--r--library/loadpath.ml10
1 files changed, 1 insertions, 9 deletions
diff --git a/library/loadpath.ml b/library/loadpath.ml
index 2a548fcb6..bc6ea8910 100644
--- a/library/loadpath.ml
+++ b/library/loadpath.ml
@@ -24,9 +24,6 @@ type t = {
let load_paths = Summary.ref ([] : t list) ~name:"LOADPATHS"
-let accessible_paths =
- Summary.ref ([] : CUnix.physical_path list) ~name:"ACCPATHS"
-
let logical p = p.path_logical
let physical p = p.path_physical
@@ -35,8 +32,6 @@ let get_load_paths () = !load_paths
let get_paths () = List.map physical !load_paths
-let get_accessible_paths () = !accessible_paths
-
let anomaly_too_many_paths path =
anomaly (str "Several logical paths are associated to" ++ spc () ++ str path)
@@ -69,10 +64,7 @@ let add_load_path phys_path path_type coq_path =
} in
match List.filter filter !load_paths with
| [] ->
- load_paths := binding :: !load_paths;
- if path_type <> ImplicitPath then
- accessible_paths := List.fold_left (fun acc v -> (fst v) :: acc)
- (phys_path :: !accessible_paths) (System.all_subdirs phys_path)
+ load_paths := binding :: !load_paths
| [p] ->
let dir = p.path_logical in
if not (DirPath.equal coq_path dir)