- 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)
20 lines
472 B
Diff
20 lines
472 B
Diff
Add LDFLAGS variable to Makefile, make sure the extra linker flags can be passed.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
|
|
|
|
diff --git a/makefile b/makefile
|
|
index 98008da..c328ba7 100644
|
|
--- a/makefile
|
|
+++ b/makefile
|
|
@@ -11,7 +11,7 @@ mandir = ${sharedir}/man
|
|
O=aoe.o bpf.o ${PLATFORM}.o ata.o dat.o
|
|
|
|
vblade: $O
|
|
- ${CC} -o vblade $O
|
|
+ ${CC} ${LDFLAGS} -o vblade $O
|
|
|
|
aoe.o : aoe.c config.h dat.h fns.h makefile
|
|
${CC} ${CFLAGS} -c $<
|