diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-06-14 20:23:19 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-06-17 22:51:13 +0200 |
commit | b1da7a8aed6a12eeb9ad7f3870a79be859e137f0 (patch) | |
tree | 8619c02798534da14dd7cb7cceb695d266d1a477 | |
parent | 4a03a66f405fa5142f3f1fe5f91f0d4d7c097771 (diff) | |
download | buildroot-b1da7a8aed6a12eeb9ad7f3870a79be859e137f0.tar.gz buildroot-b1da7a8aed6a12eeb9ad7f3870a79be859e137f0.zip |
tor: link with libatomic when needed
The following error occurs on architectures required to use gcc
libatomic for atomic intrinsics:
sparc-buildroot-linux-uclibc/sysroot/lib/libatomic.so.1: error adding symbols: DSO missing from command line
This is for example the case on sparcv8 32 bit.
Fixes:
http://autobuild.buildroot.net/results/0f7107d0b703223f567c6749722bc82c81a04d54
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Thomas: use LIBS instead of LDFLAGS.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/tor/tor.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/tor/tor.mk b/package/tor/tor.mk index 39006e7caf..fe22633bf6 100644 --- a/package/tor/tor.mk +++ b/package/tor/tor.mk @@ -47,6 +47,10 @@ endif # uses gnu extensions TOR_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99' +ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y) +TOR_CONF_ENV += LIBS=-latomic +endif + define TOR_INSTALL_CONF $(INSTALL) -D -m 644 $(@D)/src/config/torrc.minimal \ $(TARGET_DIR)/etc/tor/torrc |