* [Buildroot] [PATCH] boost: add an option to run cmds in parallel
@ 2012-04-18 8:19 yegorslists at googlemail.com
2012-05-01 19:57 ` Peter Korsgaard
0 siblings, 1 reply; 2+ messages in thread
From: yegorslists at googlemail.com @ 2012-04-18 8:19 UTC (permalink / raw)
To: buildroot
From: Yegor Yefremov <yegorslists@googlemail.com>
Add the same -jN parameter as used for make.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
package/boost/boost.mk | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/boost/boost.mk b/package/boost/boost.mk
index 9da427a..3667964 100644
--- a/package/boost/boost.mk
+++ b/package/boost/boost.mk
@@ -70,7 +70,7 @@ define BOOST_CONFIGURE_CMDS
endef
define BOOST_INSTALL_TARGET_CMDS
- (cd $(@D) && ./b2 -q -d+2 \
+ (cd $(@D) && ./b2 -j$(BR2_JLEVEL) -q -d+2 \
--user-config=$(@D)/user-config.jam \
$(BOOST_OPT) \
--prefix=$(TARGET_DIR)/usr \
@@ -78,7 +78,7 @@ define BOOST_INSTALL_TARGET_CMDS
endef
define BOOST_INSTALL_STAGING_CMDS
- (cd $(@D) && ./bjam -d+2 \
+ (cd $(@D) && ./bjam -j$(BR2_JLEVEL) -d+2 \
--user-config=$(@D)/user-config.jam \
$(BOOST_OPT) \
--prefix=$(STAGING_DIR)/usr \
--
1.7.7
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-05-01 19:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-18 8:19 [Buildroot] [PATCH] boost: add an option to run cmds in parallel yegorslists at googlemail.com
2012-05-01 19:57 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox