mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 23:39:40 +01:00
Drop lib-Makefile-fix-parallel-issue.patch as issue fixed upstream. (From OE-Core rev: 8af2874d47acfcb43ceb8cf16d3d732c1d8ac2cc) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
40 lines
1.1 KiB
Diff
40 lines
1.1 KiB
Diff
From f56ddb00a656af2e84f839738fad19909ac65047 Mon Sep 17 00:00:00 2001
|
|
From: Saul Wold <sgw@linux.intel.com>
|
|
Date: Sun, 9 Mar 2014 15:22:15 +0200
|
|
Subject: [PATCH] Fix parallel make failure for archives
|
|
|
|
Upstream-Status: Pending
|
|
|
|
The lib and gnuefi makefiles were using the lib.a() form which compiles
|
|
and ar's as a pair instead of compiling all and then ar'ing which can
|
|
parallelize better. This was resulting in build failures on larger values
|
|
of -j.
|
|
|
|
See http://www.chemie.fu-berlin.de/chemnet/use/info/make/make_toc.html#TOC105
|
|
for details.
|
|
|
|
Signed-off-by: Saul Wold <sgw@linux.intel.com>
|
|
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
|
|
[Rebased for 3.0.6]
|
|
Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
|
|
[Rebased for 3.0.8]
|
|
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
|
|
|
|
---
|
|
lib/Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/Makefile b/lib/Makefile
|
|
index 1fc6a47..54b0ca7 100644
|
|
--- a/lib/Makefile
|
|
+++ b/lib/Makefile
|
|
@@ -77,7 +77,7 @@ libsubdirs:
|
|
$(OBJS): libsubdirs
|
|
|
|
libefi.a: $(OBJS)
|
|
- $(AR) $(ARFLAGS) $@ $^
|
|
+ $(AR) $(ARFLAGS) $@ $(OBJS)
|
|
|
|
clean:
|
|
rm -f libefi.a *~ $(OBJS) */*.o
|