2011-07-30 23:11:14 -05:00
|
|
|
import std::option;
|
|
|
|
import std::generic_os::getenv;
|
2011-08-11 21:14:38 -05:00
|
|
|
import std::io;
|
2011-08-25 01:34:10 -05:00
|
|
|
import std::istr;
|
2011-07-30 23:11:14 -05:00
|
|
|
|
|
|
|
import common::config;
|
|
|
|
|
|
|
|
fn make_new_path(path: &str) -> str {
|
|
|
|
|
|
|
|
// Windows just uses PATH as the library search path, so we have to
|
|
|
|
// maintain the current value while adding our own
|
2011-08-25 01:34:10 -05:00
|
|
|
alt getenv(istr::from_estr(lib_path_env_var())) {
|
|
|
|
option::some(curr) { #fmt["%s:%s", path, istr::to_estr(curr)] }
|
2011-07-30 23:11:14 -05:00
|
|
|
option::none. { path }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
fn lib_path_env_var() -> str { "LD_LIBRARY_PATH" }
|
|
|
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
fn lib_path_env_var() -> str { "DYLD_LIBRARY_PATH" }
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn lib_path_env_var() -> str { "PATH" }
|
|
|
|
|
|
|
|
fn logv(config: &config, s: &str) {
|
|
|
|
log s;
|
2011-08-24 23:26:19 -05:00
|
|
|
if config.verbose {
|
|
|
|
io::stdout().write_line(std::istr::from_estr(s));
|
|
|
|
}
|
2011-07-30 23:11:14 -05:00
|
|
|
}
|