[Buildroot] [git commit] package/suricata: link with libatomic if needed

Peter Korsgaard peter at korsgaard.com
Fri Nov 13 13:52:12 UTC 2020


commit: https://git.buildroot.net/buildroot/commit/?id=f452490b930882038f57ec3ac5e7f2e5400c2316
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Fix build of suricata 6.0.0 with mips32r6

app-layer-ftp.o: In function `FTPCheckMemcap':
app-layer-ftp.c:(.text+0x284): undefined reference to `__atomic_load_8'
app-layer-ftp.c:(.text+0x2d8): undefined reference to `__atomic_fetch_add_8'

Fixes:
 - http://autobuild.buildroot.org/results/f574005204905250702df32b61c85d427ab4feda

Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/suricata/suricata.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/suricata/suricata.mk b/package/suricata/suricata.mk
index f131fad1be..94c4784dd4 100644
--- a/package/suricata/suricata.mk
+++ b/package/suricata/suricata.mk
@@ -43,6 +43,10 @@ SURICATA_CONF_OPTS = \
 #               download through wget/curl)
 SURICATA_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) install install-conf
 
+ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
+SURICATA_CONF_ENV += LIBS=-latomic
+endif
+
 ifeq ($(BR2_PACKAGE_FILE),y)
 SURICATA_DEPENDENCIES += file
 SURICATA_CONF_OPTS += --enable-libmagic


More information about the buildroot mailing list