diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2019-02-15 23:01:10 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2019-02-24 22:06:15 +0100 |
commit | ae7ba64501a7f2bb80dd5b2ea99fae747cc8b1eb (patch) | |
tree | d681ceeb107fa690606c74442fe1dfe77c3ce07c | |
parent | cd70bde797a3580b27566b302d601ddd7459e910 (diff) | |
download | buildroot-ae7ba64501a7f2bb80dd5b2ea99fae747cc8b1eb.tar.gz buildroot-ae7ba64501a7f2bb80dd5b2ea99fae747cc8b1eb.zip |
package/botan: link with libatomic when needed
On some architectures, atomic built-ins are provided by the libatomic
library from gcc. Linking with libatomic is therefore necessary,
otherwise the build fails with:
sparc-buildroot-linux-uclibc/sysroot/lib/libatomic.so.1: error adding symbols: DSO missing from command line
This is often for example the case on sparcv8 32 bit.
Fixes:
- http://autobuild.buildroot.org/results/a442734c570e4a02854014d831ba3aab9f592430
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/botan/botan.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/botan/botan.mk b/package/botan/botan.mk index e07b786c85..a96a12178b 100644 --- a/package/botan/botan.mk +++ b/package/botan/botan.mk @@ -17,9 +17,16 @@ BOTAN_CONF_OPTS = \ --os=linux \ --cc=gcc \ --cc-bin="$(TARGET_CXX)" \ + --ldflags="$(BOTAN_LDFLAGS)" \ --prefix=/usr \ --without-documentation +BOTAN_LDFLAGS = $(TARGET_LDFLAGS) + +ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y) +BOTAN_LDFLAGS += -latomic +endif + ifeq ($(BR2_SHARED_LIBS),y) BOTAN_CONF_OPTS += \ --disable-static-library \ |