- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
It fails to produce common.o when system load is high:
|
|
|
|
| In file included from common.c:57:
|
|
| ../include/defs.h:49:10: fatal error: y.tab.h: No such file or directory
|
|
| 49 | #include "y.tab.h"
|
|
| | ^~~~~~~~~
|
|
| compilation terminated.
|
|
|
|
Make $(COMMONOBJS) which include common.o to depends on related header files
|
|
and y.tab.h to fix the parallel build failure.
|
|
|
|
Upstream-Status: Inappropriate [no upstream]
|
|
|
|
Signed-off-by: Kai Kang <kai.kang@windriver.com>
|
|
---
|
|
src/Makefile.real | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/Makefile.real b/src/Makefile.real
|
|
index e0f0dfc..53d4944 100644
|
|
--- a/src/Makefile.real
|
|
+++ b/src/Makefile.real
|
|
@@ -41,7 +41,7 @@ $(SERVER_BIN): $(SERVEROBJS) $(COMMONOBJS) $(MISSINGOBJS)
|
|
$(CLIENT_BIN): $(CLIENTOBJS) $(COMMONOBJS) $(MISSINGOBJS)
|
|
$(CC) -o $@ $(CLIENTOBJS) $(COMMONOBJS) $(MISSINGOBJS) $(LIBS) $(LDFLAGS)
|
|
|
|
-$(CLIENTOBJS) $(SERVEROBJS): $(HFILES) y.tab.h
|
|
+$(COMMONOBJS) $(CLIENTOBJS) $(SERVEROBJS): $(HFILES) y.tab.h
|
|
|
|
y.tab.h: gram.c
|
|
|