2013-06-15 15:40:56 -05:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 18:48:01 -06:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-05-17 17:28:44 -05:00
|
|
|
|
2014-05-29 21:03:06 -05:00
|
|
|
use std::collections::HashSet;
|
2014-04-08 12:15:46 -05:00
|
|
|
use std::os;
|
2015-01-22 18:31:00 -06:00
|
|
|
use std::old_io::IoError;
|
2014-07-06 16:08:09 -05:00
|
|
|
use syntax::ast;
|
|
|
|
|
2014-12-08 17:35:22 -06:00
|
|
|
pub struct RPathConfig<F, G> where
|
|
|
|
F: FnOnce() -> Path,
|
|
|
|
G: FnMut(&Path) -> Result<Path, IoError>,
|
|
|
|
{
|
2014-07-06 16:08:09 -05:00
|
|
|
pub used_crates: Vec<(ast::CrateNum, Option<Path>)>,
|
|
|
|
pub out_filename: Path,
|
2014-07-23 13:56:36 -05:00
|
|
|
pub is_like_osx: bool,
|
|
|
|
pub has_rpath: bool,
|
2014-12-08 17:35:22 -06:00
|
|
|
pub get_install_prefix_lib_path: F,
|
|
|
|
pub realpath: G,
|
2012-01-30 23:00:57 -06:00
|
|
|
}
|
|
|
|
|
2014-12-08 17:35:22 -06:00
|
|
|
pub fn get_rpath_flags<F, G>(config: RPathConfig<F, G>) -> Vec<String> where
|
|
|
|
F: FnOnce() -> Path,
|
|
|
|
G: FnMut(&Path) -> Result<Path, IoError>,
|
|
|
|
{
|
2011-10-06 15:11:56 -05:00
|
|
|
// No rpath on windows
|
2014-07-23 13:56:36 -05:00
|
|
|
if !config.has_rpath {
|
2014-03-04 12:02:49 -06:00
|
|
|
return Vec::new();
|
2011-10-06 15:11:56 -05:00
|
|
|
}
|
|
|
|
|
2014-03-04 12:02:49 -06:00
|
|
|
let mut flags = Vec::new();
|
Add generation of static libraries to rustc
This commit implements the support necessary for generating both intermediate
and result static rust libraries. This is an implementation of my thoughts in
https://mail.mozilla.org/pipermail/rust-dev/2013-November/006686.html.
When compiling a library, we still retain the "lib" option, although now there
are "rlib", "staticlib", and "dylib" as options for crate_type (and these are
stackable). The idea of "lib" is to generate the "compiler default" instead of
having too choose (although all are interchangeable). For now I have left the
"complier default" to be a dynamic library for size reasons.
Of the rust libraries, lib{std,extra,rustuv} will bootstrap with an
rlib/dylib pair, but lib{rustc,syntax,rustdoc,rustpkg} will only be built as a
dynamic object. I chose this for size reasons, but also because you're probably
not going to be embedding the rustc compiler anywhere any time soon.
Other than the options outlined above, there are a few defaults/preferences that
are now opinionated in the compiler:
* If both a .dylib and .rlib are found for a rust library, the compiler will
prefer the .rlib variant. This is overridable via the -Z prefer-dynamic option
* If generating a "lib", the compiler will generate a dynamic library. This is
overridable by explicitly saying what flavor you'd like (rlib, staticlib,
dylib).
* If no options are passed to the command line, and no crate_type is found in
the destination crate, then an executable is generated
With this change, you can successfully build a rust program with 0 dynamic
dependencies on rust libraries. There is still a dynamic dependency on
librustrt, but I plan on removing that in a subsequent commit.
This change includes no tests just yet. Our current testing
infrastructure/harnesses aren't very amenable to doing flavorful things with
linking, so I'm planning on adding a new mode of testing which I believe belongs
as a separate commit.
Closes #552
2013-11-15 16:03:29 -06:00
|
|
|
|
2013-10-21 15:08:31 -05:00
|
|
|
debug!("preparing the RPATH!");
|
2011-10-04 17:23:32 -05:00
|
|
|
|
2014-07-06 16:08:09 -05:00
|
|
|
let libs = config.used_crates.clone();
|
2014-09-14 22:27:36 -05:00
|
|
|
let libs = libs.into_iter().filter_map(|(_, l)| {
|
2014-04-08 12:05:18 -05:00
|
|
|
l.map(|p| p.clone())
|
2014-05-04 01:43:38 -05:00
|
|
|
}).collect::<Vec<_>>();
|
2011-10-05 01:12:46 -05:00
|
|
|
|
2015-01-07 10:58:31 -06:00
|
|
|
let rpaths = get_rpaths(config, &libs[]);
|
|
|
|
flags.push_all(&rpaths_to_flags(&rpaths[])[]);
|
Add generation of static libraries to rustc
This commit implements the support necessary for generating both intermediate
and result static rust libraries. This is an implementation of my thoughts in
https://mail.mozilla.org/pipermail/rust-dev/2013-November/006686.html.
When compiling a library, we still retain the "lib" option, although now there
are "rlib", "staticlib", and "dylib" as options for crate_type (and these are
stackable). The idea of "lib" is to generate the "compiler default" instead of
having too choose (although all are interchangeable). For now I have left the
"complier default" to be a dynamic library for size reasons.
Of the rust libraries, lib{std,extra,rustuv} will bootstrap with an
rlib/dylib pair, but lib{rustc,syntax,rustdoc,rustpkg} will only be built as a
dynamic object. I chose this for size reasons, but also because you're probably
not going to be embedding the rustc compiler anywhere any time soon.
Other than the options outlined above, there are a few defaults/preferences that
are now opinionated in the compiler:
* If both a .dylib and .rlib are found for a rust library, the compiler will
prefer the .rlib variant. This is overridable via the -Z prefer-dynamic option
* If generating a "lib", the compiler will generate a dynamic library. This is
overridable by explicitly saying what flavor you'd like (rlib, staticlib,
dylib).
* If no options are passed to the command line, and no crate_type is found in
the destination crate, then an executable is generated
With this change, you can successfully build a rust program with 0 dynamic
dependencies on rust libraries. There is still a dynamic dependency on
librustrt, but I plan on removing that in a subsequent commit.
This change includes no tests just yet. Our current testing
infrastructure/harnesses aren't very amenable to doing flavorful things with
linking, so I'm planning on adding a new mode of testing which I believe belongs
as a separate commit.
Closes #552
2013-11-15 16:03:29 -06:00
|
|
|
flags
|
2011-10-04 17:23:32 -05:00
|
|
|
}
|
|
|
|
|
2014-07-06 16:08:09 -05:00
|
|
|
fn rpaths_to_flags(rpaths: &[String]) -> Vec<String> {
|
2014-03-04 12:02:49 -06:00
|
|
|
let mut ret = Vec::new();
|
Add generation of static libraries to rustc
This commit implements the support necessary for generating both intermediate
and result static rust libraries. This is an implementation of my thoughts in
https://mail.mozilla.org/pipermail/rust-dev/2013-November/006686.html.
When compiling a library, we still retain the "lib" option, although now there
are "rlib", "staticlib", and "dylib" as options for crate_type (and these are
stackable). The idea of "lib" is to generate the "compiler default" instead of
having too choose (although all are interchangeable). For now I have left the
"complier default" to be a dynamic library for size reasons.
Of the rust libraries, lib{std,extra,rustuv} will bootstrap with an
rlib/dylib pair, but lib{rustc,syntax,rustdoc,rustpkg} will only be built as a
dynamic object. I chose this for size reasons, but also because you're probably
not going to be embedding the rustc compiler anywhere any time soon.
Other than the options outlined above, there are a few defaults/preferences that
are now opinionated in the compiler:
* If both a .dylib and .rlib are found for a rust library, the compiler will
prefer the .rlib variant. This is overridable via the -Z prefer-dynamic option
* If generating a "lib", the compiler will generate a dynamic library. This is
overridable by explicitly saying what flavor you'd like (rlib, staticlib,
dylib).
* If no options are passed to the command line, and no crate_type is found in
the destination crate, then an executable is generated
With this change, you can successfully build a rust program with 0 dynamic
dependencies on rust libraries. There is still a dynamic dependency on
librustrt, but I plan on removing that in a subsequent commit.
This change includes no tests just yet. Our current testing
infrastructure/harnesses aren't very amenable to doing flavorful things with
linking, so I'm planning on adding a new mode of testing which I believe belongs
as a separate commit.
Closes #552
2013-11-15 16:03:29 -06:00
|
|
|
for rpath in rpaths.iter() {
|
2015-01-07 10:58:31 -06:00
|
|
|
ret.push(format!("-Wl,-rpath,{}", &(*rpath)[]));
|
Add generation of static libraries to rustc
This commit implements the support necessary for generating both intermediate
and result static rust libraries. This is an implementation of my thoughts in
https://mail.mozilla.org/pipermail/rust-dev/2013-November/006686.html.
When compiling a library, we still retain the "lib" option, although now there
are "rlib", "staticlib", and "dylib" as options for crate_type (and these are
stackable). The idea of "lib" is to generate the "compiler default" instead of
having too choose (although all are interchangeable). For now I have left the
"complier default" to be a dynamic library for size reasons.
Of the rust libraries, lib{std,extra,rustuv} will bootstrap with an
rlib/dylib pair, but lib{rustc,syntax,rustdoc,rustpkg} will only be built as a
dynamic object. I chose this for size reasons, but also because you're probably
not going to be embedding the rustc compiler anywhere any time soon.
Other than the options outlined above, there are a few defaults/preferences that
are now opinionated in the compiler:
* If both a .dylib and .rlib are found for a rust library, the compiler will
prefer the .rlib variant. This is overridable via the -Z prefer-dynamic option
* If generating a "lib", the compiler will generate a dynamic library. This is
overridable by explicitly saying what flavor you'd like (rlib, staticlib,
dylib).
* If no options are passed to the command line, and no crate_type is found in
the destination crate, then an executable is generated
With this change, you can successfully build a rust program with 0 dynamic
dependencies on rust libraries. There is still a dynamic dependency on
librustrt, but I plan on removing that in a subsequent commit.
This change includes no tests just yet. Our current testing
infrastructure/harnesses aren't very amenable to doing flavorful things with
linking, so I'm planning on adding a new mode of testing which I believe belongs
as a separate commit.
Closes #552
2013-11-15 16:03:29 -06:00
|
|
|
}
|
|
|
|
return ret;
|
2011-10-04 17:23:32 -05:00
|
|
|
}
|
|
|
|
|
2014-12-08 17:35:22 -06:00
|
|
|
fn get_rpaths<F, G>(mut config: RPathConfig<F, G>, libs: &[Path]) -> Vec<String> where
|
|
|
|
F: FnOnce() -> Path,
|
|
|
|
G: FnMut(&Path) -> Result<Path, IoError>,
|
|
|
|
{
|
2014-12-20 02:09:35 -06:00
|
|
|
debug!("output: {:?}", config.out_filename.display());
|
2013-10-21 15:08:31 -05:00
|
|
|
debug!("libs:");
|
2013-08-03 11:45:23 -05:00
|
|
|
for libpath in libs.iter() {
|
2014-12-20 02:09:35 -06:00
|
|
|
debug!(" {:?}", libpath.display());
|
2011-10-04 17:23:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Use relative paths to the libraries. Binaries can be moved
|
|
|
|
// as long as they maintain the relative relationship to the
|
|
|
|
// crates they depend on.
|
2014-07-06 16:08:09 -05:00
|
|
|
let rel_rpaths = get_rpaths_relative_to_output(&mut config, libs);
|
2011-10-04 17:23:32 -05:00
|
|
|
|
|
|
|
// And a final backup rpath to the global library location.
|
2014-07-06 16:08:09 -05:00
|
|
|
let fallback_rpaths = vec!(get_install_prefix_rpath(config));
|
2011-10-05 00:40:38 -05:00
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
fn log_rpaths(desc: &str, rpaths: &[String]) {
|
2013-10-21 15:08:31 -05:00
|
|
|
debug!("{} rpaths:", desc);
|
2013-08-03 11:45:23 -05:00
|
|
|
for rpath in rpaths.iter() {
|
2013-10-21 15:08:31 -05:00
|
|
|
debug!(" {}", *rpath);
|
2011-10-05 00:40:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-07 10:58:31 -06:00
|
|
|
log_rpaths("relative", &rel_rpaths[]);
|
|
|
|
log_rpaths("fallback", &fallback_rpaths[]);
|
2011-10-05 00:40:38 -05:00
|
|
|
|
2012-06-28 17:00:03 -05:00
|
|
|
let mut rpaths = rel_rpaths;
|
2015-01-07 10:58:31 -06:00
|
|
|
rpaths.push_all(&fallback_rpaths[]);
|
2011-10-04 17:23:32 -05:00
|
|
|
|
|
|
|
// Remove duplicates
|
2015-01-07 10:58:31 -06:00
|
|
|
let rpaths = minimize_rpaths(&rpaths[]);
|
2012-08-01 19:30:05 -05:00
|
|
|
return rpaths;
|
2011-10-04 17:23:32 -05:00
|
|
|
}
|
|
|
|
|
2014-12-08 17:35:22 -06:00
|
|
|
fn get_rpaths_relative_to_output<F, G>(config: &mut RPathConfig<F, G>,
|
|
|
|
libs: &[Path]) -> Vec<String> where
|
|
|
|
F: FnOnce() -> Path,
|
|
|
|
G: FnMut(&Path) -> Result<Path, IoError>,
|
|
|
|
{
|
2014-07-06 16:08:09 -05:00
|
|
|
libs.iter().map(|a| get_rpath_relative_to_output(config, a)).collect()
|
2011-10-04 17:23:32 -05:00
|
|
|
}
|
|
|
|
|
2014-12-08 17:35:22 -06:00
|
|
|
fn get_rpath_relative_to_output<F, G>(config: &mut RPathConfig<F, G>, lib: &Path) -> String where
|
|
|
|
F: FnOnce() -> Path,
|
|
|
|
G: FnMut(&Path) -> Result<Path, IoError>,
|
|
|
|
{
|
2013-06-28 17:32:26 -05:00
|
|
|
use std::os;
|
2012-12-27 17:49:26 -06:00
|
|
|
|
2011-10-06 16:28:52 -05:00
|
|
|
// Mac doesn't appear to support $ORIGIN
|
2014-07-23 13:56:36 -05:00
|
|
|
let prefix = if config.is_like_osx {
|
|
|
|
"@loader_path"
|
|
|
|
} else {
|
|
|
|
"$ORIGIN"
|
2011-10-06 16:28:52 -05:00
|
|
|
};
|
|
|
|
|
2014-11-10 23:38:20 -06:00
|
|
|
let mut lib = (config.realpath)(&os::make_absolute(lib).unwrap()).unwrap();
|
2013-09-26 19:21:59 -05:00
|
|
|
lib.pop();
|
2014-11-10 23:38:20 -06:00
|
|
|
let mut output = (config.realpath)(&os::make_absolute(&config.out_filename).unwrap()).unwrap();
|
2013-09-26 19:21:59 -05:00
|
|
|
output.pop();
|
|
|
|
let relative = lib.path_relative_from(&output);
|
|
|
|
let relative = relative.expect("could not create rpath relative to output");
|
|
|
|
// FIXME (#9639): This needs to handle non-utf8 paths
|
2014-05-20 01:19:56 -05:00
|
|
|
format!("{}/{}",
|
|
|
|
prefix,
|
|
|
|
relative.as_str().expect("non-utf8 component in path"))
|
2011-10-04 17:23:32 -05:00
|
|
|
}
|
|
|
|
|
2014-12-08 17:35:22 -06:00
|
|
|
fn get_install_prefix_rpath<F, G>(config: RPathConfig<F, G>) -> String where
|
|
|
|
F: FnOnce() -> Path,
|
|
|
|
G: FnMut(&Path) -> Result<Path, IoError>,
|
|
|
|
{
|
2014-07-06 16:08:09 -05:00
|
|
|
let path = (config.get_install_prefix_lib_path)();
|
2014-11-10 23:38:20 -06:00
|
|
|
let path = os::make_absolute(&path).unwrap();
|
2013-09-26 19:21:59 -05:00
|
|
|
// FIXME (#9639): This needs to handle non-utf8 paths
|
2014-05-25 05:17:19 -05:00
|
|
|
path.as_str().expect("non-utf8 component in rpath").to_string()
|
2013-08-06 23:50:23 -05:00
|
|
|
}
|
|
|
|
|
2014-07-06 16:08:09 -05:00
|
|
|
fn minimize_rpaths(rpaths: &[String]) -> Vec<String> {
|
2013-04-03 08:28:36 -05:00
|
|
|
let mut set = HashSet::new();
|
2014-03-04 12:02:49 -06:00
|
|
|
let mut minimized = Vec::new();
|
2013-08-03 11:45:23 -05:00
|
|
|
for rpath in rpaths.iter() {
|
2015-01-07 10:58:31 -06:00
|
|
|
if set.insert(&rpath[]) {
|
2013-07-02 14:47:32 -05:00
|
|
|
minimized.push(rpath.clone());
|
2011-10-05 00:40:38 -05:00
|
|
|
}
|
|
|
|
}
|
2013-02-08 20:04:28 -06:00
|
|
|
minimized
|
2011-10-04 17:23:32 -05:00
|
|
|
}
|
|
|
|
|
2014-09-29 01:38:54 -05:00
|
|
|
#[cfg(all(unix, test))]
|
2011-10-04 17:23:32 -05:00
|
|
|
mod test {
|
2014-07-06 16:08:09 -05:00
|
|
|
use super::{RPathConfig};
|
|
|
|
use super::{minimize_rpaths, rpaths_to_flags, get_rpath_relative_to_output};
|
2012-12-27 17:49:26 -06:00
|
|
|
|
2011-10-04 17:23:32 -05:00
|
|
|
#[test]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_rpaths_to_flags() {
|
2014-11-17 02:39:01 -06:00
|
|
|
let flags = rpaths_to_flags(&[
|
2014-05-25 05:17:19 -05:00
|
|
|
"path1".to_string(),
|
|
|
|
"path2".to_string()
|
2014-05-09 20:45:36 -05:00
|
|
|
]);
|
|
|
|
assert_eq!(flags,
|
2014-11-27 18:23:53 -06:00
|
|
|
["-Wl,-rpath,path1",
|
|
|
|
"-Wl,-rpath,path2"]);
|
2011-10-04 17:23:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_minimize1() {
|
2014-11-17 02:39:01 -06:00
|
|
|
let res = minimize_rpaths(&[
|
2014-05-25 05:17:19 -05:00
|
|
|
"rpath1".to_string(),
|
|
|
|
"rpath2".to_string(),
|
|
|
|
"rpath1".to_string()
|
2014-05-09 20:45:36 -05:00
|
|
|
]);
|
2014-11-27 12:57:31 -06:00
|
|
|
assert!(res == [
|
|
|
|
"rpath1",
|
|
|
|
"rpath2",
|
2014-05-09 20:45:36 -05:00
|
|
|
]);
|
2011-10-04 17:23:32 -05:00
|
|
|
}
|
|
|
|
|
2011-10-05 00:40:38 -05:00
|
|
|
#[test]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_minimize2() {
|
2014-11-17 02:39:01 -06:00
|
|
|
let res = minimize_rpaths(&[
|
2014-05-25 05:17:19 -05:00
|
|
|
"1a".to_string(),
|
|
|
|
"2".to_string(),
|
|
|
|
"2".to_string(),
|
|
|
|
"1a".to_string(),
|
|
|
|
"4a".to_string(),
|
|
|
|
"1a".to_string(),
|
|
|
|
"2".to_string(),
|
|
|
|
"3".to_string(),
|
|
|
|
"4a".to_string(),
|
|
|
|
"3".to_string()
|
2014-05-09 20:45:36 -05:00
|
|
|
]);
|
2014-11-27 12:57:31 -06:00
|
|
|
assert!(res == [
|
|
|
|
"1a",
|
|
|
|
"2",
|
|
|
|
"4a",
|
|
|
|
"3",
|
2014-05-09 20:45:36 -05:00
|
|
|
]);
|
2011-10-05 00:40:38 -05:00
|
|
|
}
|
|
|
|
|
2011-10-04 22:07:18 -05:00
|
|
|
#[test]
|
2014-10-11 11:32:57 -05:00
|
|
|
#[cfg(any(target_os = "linux", target_os = "android"))]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_rpath_relative() {
|
2014-07-06 16:08:09 -05:00
|
|
|
let config = &mut RPathConfig {
|
|
|
|
used_crates: Vec::new(),
|
|
|
|
out_filename: Path::new("bin/rustc"),
|
2014-10-09 14:17:22 -05:00
|
|
|
get_install_prefix_lib_path: || panic!(),
|
2014-07-23 13:56:36 -05:00
|
|
|
has_rpath: true,
|
|
|
|
is_like_osx: false,
|
2014-07-06 16:08:09 -05:00
|
|
|
realpath: |p| Ok(p.clone())
|
|
|
|
};
|
|
|
|
let res = get_rpath_relative_to_output(config, &Path::new("lib/libstd.so"));
|
2014-11-27 12:57:31 -06:00
|
|
|
assert_eq!(res, "$ORIGIN/../lib");
|
2011-10-04 17:23:32 -05:00
|
|
|
}
|
2011-10-05 00:40:38 -05:00
|
|
|
|
2011-12-30 02:18:55 -06:00
|
|
|
#[test]
|
2014-12-19 06:05:06 -06:00
|
|
|
#[cfg(any(target_os = "freebsd", target_os = "dragonfly"))]
|
2014-07-29 09:44:39 -05:00
|
|
|
fn test_rpath_relative() {
|
|
|
|
let config = &mut RPathConfig {
|
|
|
|
used_crates: Vec::new(),
|
2014-07-23 13:56:36 -05:00
|
|
|
has_rpath: true,
|
|
|
|
is_like_osx: false,
|
2014-07-29 09:44:39 -05:00
|
|
|
out_filename: Path::new("bin/rustc"),
|
2014-10-09 14:17:22 -05:00
|
|
|
get_install_prefix_lib_path: || panic!(),
|
2014-07-29 09:44:39 -05:00
|
|
|
realpath: |p| Ok(p.clone())
|
|
|
|
};
|
|
|
|
let res = get_rpath_relative_to_output(config, &Path::new("lib/libstd.so"));
|
2014-11-27 12:57:31 -06:00
|
|
|
assert_eq!(res, "$ORIGIN/../lib");
|
2014-07-29 09:44:39 -05:00
|
|
|
}
|
|
|
|
|
2011-10-06 16:28:52 -05:00
|
|
|
#[test]
|
|
|
|
#[cfg(target_os = "macos")]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_rpath_relative() {
|
2014-07-06 16:08:09 -05:00
|
|
|
let config = &mut RPathConfig {
|
|
|
|
used_crates: Vec::new(),
|
2014-07-23 13:56:36 -05:00
|
|
|
has_rpath: true,
|
|
|
|
is_like_osx: true,
|
2014-07-06 16:08:09 -05:00
|
|
|
out_filename: Path::new("bin/rustc"),
|
2014-10-09 14:17:22 -05:00
|
|
|
get_install_prefix_lib_path: || panic!(),
|
2014-07-11 19:57:45 -05:00
|
|
|
realpath: |p| Ok(p.clone())
|
2014-07-06 16:08:09 -05:00
|
|
|
};
|
|
|
|
let res = get_rpath_relative_to_output(config, &Path::new("lib/libstd.so"));
|
2014-11-27 12:57:31 -06:00
|
|
|
assert_eq!(res, "@loader_path/../lib");
|
2011-10-06 16:28:52 -05:00
|
|
|
}
|
2011-10-04 17:23:32 -05:00
|
|
|
}
|