-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the rustc and rustdoc wrapper not depend on libbootstrap
This slightly improves compilation time by reducing linking time (saving about a 1/10 of the the total compilation time after changing rustbuild) and slightly reduces disk usage (from 16MB for the rustc wrapper to 4MB).
- Loading branch information
Showing
4 changed files
with
39 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Various utilities for working with dylib paths. | ||
// | ||
// This file is meant to be included directly to avoid a dependency on the bootstrap library from | ||
// the rustc and rustdoc wrappers. This improves compilation time by reducing the linking time. | ||
|
||
/// Returns the environment variable which the dynamic library lookup path | ||
/// resides in for this platform. | ||
pub fn dylib_path_var() -> &'static str { | ||
if cfg!(target_os = "windows") { | ||
"PATH" | ||
} else if cfg!(target_os = "macos") { | ||
"DYLD_LIBRARY_PATH" | ||
} else if cfg!(target_os = "haiku") { | ||
"LIBRARY_PATH" | ||
} else { | ||
"LD_LIBRARY_PATH" | ||
} | ||
} | ||
|
||
/// Parses the `dylib_path_var()` environment variable, returning a list of | ||
/// paths that are members of this lookup path. | ||
pub fn dylib_path() -> Vec<PathBuf> { | ||
let var = match env::var_os(dylib_path_var()) { | ||
Some(v) => v, | ||
None => return vec![], | ||
}; | ||
env::split_paths(&var).collect() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters