1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-17 23:35:00 +02:00

this patch fixes toolchain parallel build, which reduces build time.

In order to enable parallel build, change line 21 of
include/host-build.mk from:

override MAKEFLAGS=

to:

override MAKEFLAGS=$(MAKE_JOBS)

-Raphael

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19995 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
thepeople 2010-03-05 20:15:12 +00:00
parent 9c8508de70
commit 2b2bbce391
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# #
# Copyright (C) 2006-2009 OpenWrt.org # Copyright (C) 2006-2010 OpenWrt.org
# #
# This is free software, licensed under the GNU General Public License v2. # This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information. # See /LICENSE for more information.
@ -80,7 +80,7 @@ define Host/Compile
endef endef
define Host/Install/Default define Host/Install/Default
$(MAKE) -C $(HOST_BUILD_DIR) install $(_SINGLE)$(MAKE) -C $(HOST_BUILD_DIR) install
endef endef
define Host/Install define Host/Install

View File

@ -250,7 +250,7 @@ define SetupExtraArch
endef endef
define Stage2/Install define Stage2/Install
$(GCC_MAKE) -C $(HOST_BUILD_DIR2) install $(_SINGLE)$(GCC_MAKE) -C $(HOST_BUILD_DIR2) install
# Set up the symlinks to enable lying about target name. # Set up the symlinks to enable lying about target name.
set -e; \ set -e; \
(cd $(TOOLCHAIN_DIR)/usr; \ (cd $(TOOLCHAIN_DIR)/usr; \