diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-09-15 14:18:19 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-09-15 14:18:19 +0000 |
commit | ceab097ad9062383b9f46bf370e830f75e6f9ada (patch) | |
tree | 2f1f7e4e82e4f263b1aebe31210eafac2f69f2df /toolchain/gcc/initial | |
parent | 640986da6ee4fafebc020743351531233b1af54b (diff) | |
download | upstream-ceab097ad9062383b9f46bf370e830f75e6f9ada.tar.gz upstream-ceab097ad9062383b9f46bf370e830f75e6f9ada.tar.bz2 upstream-ceab097ad9062383b9f46bf370e830f75e6f9ada.zip |
gcc: enable parallel builds
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33444 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/gcc/initial')
-rw-r--r-- | toolchain/gcc/initial/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/gcc/initial/Makefile b/toolchain/gcc/initial/Makefile index 6b0536d83a..319a064cb1 100644 --- a/toolchain/gcc/initial/Makefile +++ b/toolchain/gcc/initial/Makefile @@ -11,7 +11,7 @@ GCC_CONFIGURE += \ define Host/Compile $(CP) $(BUILD_DIR_TOOLCHAIN)/linux-dev/* $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/ - $(GCC_MAKE) -C $(GCC_BUILD_DIR) \ + $(GCC_MAKE) $(HOST_JOBS) -C $(GCC_BUILD_DIR) \ all-build-libiberty \ all-gcc \ $(if $(GCC_BUILD_TARGET_LIBGCC),all-target-libgcc) |