mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
0a1144767a
Add LDFLAGS variable to Makefile so that extra linker flags can be sent via this variable. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
20 lines
460 B
Diff
20 lines
460 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 77f3364..c98083f 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -18,7 +18,7 @@ clean:
|
|
|
|
zeroconf: zeroconf.o delay.o
|
|
$(Q)echo "Creating $@"
|
|
- $(Q)$(CC) $(CFLAGS) -o $@ $^ $(LIBS)
|
|
+ $(Q)$(CC) $(CFLAGS) ${LDFLAGS} -o $@ $^ $(LIBS)
|
|
|
|
|
|
# Automatic dependency generation
|