From: Denys Vlasenko Date: Sun, 3 Apr 2016 13:38:53 +0000 (+0200) Subject: trylink: on failure, print a hint about CONFIG_EXTRA_LDLIBS X-Git-Tag: 1_25_0~62 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=056e1f558cc8bc22f221b49bf4571aed59cdae09;p=oweals%2Fbusybox.git trylink: on failure, print a hint about CONFIG_EXTRA_LDLIBS Signed-off-by: Denys Vlasenko --- diff --git a/scripts/trylink b/scripts/trylink index 3c431edc3..15435f009 100755 --- a/scripts/trylink +++ b/scripts/trylink @@ -140,6 +140,8 @@ try $CC $CFLAGS $LDFLAGS \ || { echo "Failed: $l_list" cat $EXE.out + echo 'Note: if build needs additional libraries, put them in CONFIG_EXTRA_LDLIBS.' + echo 'Example: CONFIG_EXTRA_LDLIBS="pthread dl tirpc audit pam"' exit 1 }