diff options
| author | bors <bors@rust-lang.org> | 2013-11-16 23:46:37 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-11-16 23:46:37 -0800 |
| commit | 0a577f384e22b51bc7299ba9521a6054b3a1ddfc (patch) | |
| tree | 316b7bedfb42afb462bb8674819249cd7101f320 | |
| parent | b0e1318164f6b496c513a93fd745faabfd225ef5 (diff) | |
| parent | 57486994d56e57044a37144fa6f741a946ff295a (diff) | |
| download | rust-0a577f384e22b51bc7299ba9521a6054b3a1ddfc.tar.gz rust-0a577f384e22b51bc7299ba9521a6054b3a1ddfc.zip | |
auto merge of #10454 : z0w0/rust/issue-9944, r=cmr
Allows you to provide explicit `--cfg` flags when building certain packages through the rustpkg API.
| -rw-r--r-- | src/librustpkg/api.rs | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/librustpkg/api.rs b/src/librustpkg/api.rs index bb73882bde8..0d0d0b7c4c7 100644 --- a/src/librustpkg/api.rs +++ b/src/librustpkg/api.rs @@ -81,6 +81,11 @@ pub fn new_workcache_context(p: &Path) -> workcache::Context { pub fn build_lib(sysroot: Path, root: Path, name: ~str, version: Version, lib: Path) { + build_lib_with_cfgs(sysroot, root, name, version, lib, ~[]) +} + +pub fn build_lib_with_cfgs(sysroot: Path, root: Path, name: ~str, + version: Version, lib: Path, cfgs: ~[~str]) { let cx = default_context(sysroot, root.clone()); let pkg_src = PkgSrc { source_workspace: root.clone(), @@ -94,11 +99,16 @@ pub fn build_lib(sysroot: Path, root: Path, name: ~str, version: Version, tests: ~[], benchs: ~[] }; - pkg_src.build(&cx, ~[], []); + pkg_src.build(&cx, cfgs, []); } pub fn build_exe(sysroot: Path, root: Path, name: ~str, version: Version, main: Path) { + build_exe_with_cfgs(sysroot, root, name, version, main, ~[]) +} + +pub fn build_exe_with_cfgs(sysroot: Path, root: Path, name: ~str, + version: Version, main: Path, cfgs: ~[~str]) { let cx = default_context(sysroot, root.clone()); let pkg_src = PkgSrc { source_workspace: root.clone(), @@ -113,7 +123,7 @@ pub fn build_exe(sysroot: Path, root: Path, name: ~str, version: Version, benchs: ~[] }; - pkg_src.build(&cx, ~[], []); + pkg_src.build(&cx, cfgs, []); } pub fn install_pkg(cx: &BuildContext, |
