summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Brodkin <Alexey.Brodkin@synopsys.com>2014-06-27 20:26:00 +0400
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-06-29 13:20:07 +0200
commit8862ca3bc8974dfff3f48e9901811427b67a4ebe (patch)
treedbdb30ebd0028d668a870202dafddfc639faa343
parentffa73248c6e1405f5bbd2e7a1c78e21c55fb9f68 (diff)
downloadbuildroot-8862ca3bc8974dfff3f48e9901811427b67a4ebe.tar.gz
buildroot-8862ca3bc8974dfff3f48e9901811427b67a4ebe.zip
uclibc: enable parallel building of libraries
The use of MAKE1 for uClibc dates back 10 years: commit 8e5fb3fb4ab09b4dc04fe7cb3f7becce6514117b Author: Eric Andersen <andersen@codepoet.org> Date: Sat Dec 11 13:01:10 2004 +0000 Add initial BR2_JLEVEL support, with some exceptions for apps that have broken 'make -j' support Since that time there were lots of improvements in uClibc that seem to allow parallel building of libs finally. Unfortunately uClibc tests have dependences on previously built files, that's why tests left with MAKE1. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Anton Kolesov <akolesov@synopsys.com> Cc: Peter Korsgaard <peter@korsgaard.com> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/uclibc/uclibc.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/uclibc/uclibc.mk b/package/uclibc/uclibc.mk
index 70705a2001..8337bb6f84 100644
--- a/package/uclibc/uclibc.mk
+++ b/package/uclibc/uclibc.mk
@@ -482,13 +482,13 @@ endef
endif
define UCLIBC_BUILD_CMDS
- $(MAKE1) -C $(@D) \
+ $(MAKE) -C $(@D) \
$(UCLIBC_MAKE_FLAGS) \
PREFIX= \
DEVEL_PREFIX=/ \
RUNTIME_PREFIX=/ \
all
- $(MAKE1) -C $(@D)/utils \
+ $(MAKE) -C $(@D)/utils \
PREFIX=$(HOST_DIR) \
HOSTCC="$(HOSTCC)" hostutils
$(UCLIBC_BUILD_TEST_SUITE)
OpenPOWER on IntegriCloud