We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f2c34e commit 6e7f3c1Copy full SHA for 6e7f3c1
src/path.rs
@@ -37,6 +37,12 @@ fn collect_possible_directories() -> Vec<PathBuf> {
37
}
38
39
40
+ if let Ok(lib_paths) = env::var("DYLD_FALLBACK_LIBRARY_PATH") {
41
+ for item in lib_paths.split(':') {
42
+ paths.push(PathBuf::from(item));
43
+ }
44
45
+
46
if let Ok(bin_paths) = env::var("PATH") {
47
for item in bin_paths.split(':') {
48
let mut possible_path = PathBuf::from(item);
0 commit comments