From 57486994d56e57044a37144fa6f741a946ff295a Mon Sep 17 00:00:00 2001 From: Zack Corr Date: Wed, 13 Nov 2013 14:54:17 +1000 Subject: [PATCH] Add build_lib_with_cfgs, build_bin_with_cfgs to rustpkg API. Closes #9944. --- src/librustpkg/api.rs | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/librustpkg/api.rs b/src/librustpkg/api.rs index bb73882bde8e7..0d0d0b7c4c79d 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,