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

Peter Korsgaard peter at korsgaard.com
Thu Feb 11 22:17:24 UTC 2021


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

Fix build of guile 3.0.4 with Bootlin SPARC uclibc toolchain added with
commit 1348c569d0cb7f67eca30f170b782aa8b51cc259

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

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

diff --git a/package/guile/guile.mk b/package/guile/guile.mk
index 0e7328f199..44f4d1c85e 100644
--- a/package/guile/guile.mk
+++ b/package/guile/guile.mk
@@ -29,6 +29,10 @@ GUILE_CFLAGS = \
 	-DHAVE_GC_GET_FREE_SPACE_DIVISOR \
 	-DHAVE_GC_SET_FINALIZE_ON_DEMAND
 
+ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
+GUILE_CONF_ENV += LIBS=-latomic
+endif
+
 ifeq ($(BR2_STATIC_LIBS),y)
 GUILE_CFLAGS += -DGC_NO_DLOPEN
 endif


More information about the buildroot mailing list