All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] erlang: selectively enable libatomic_ops
@ 2014-12-22  9:04 Frank Hunleth
  2014-12-22 17:13 ` Yann E. MORIN
  0 siblings, 1 reply; 5+ messages in thread
From: Frank Hunleth @ 2014-12-22  9:04 UTC (permalink / raw)
  To: buildroot

Erlang can use either the system libatomic_ops or its own version.
However, if using the system version, it must find implementations for
AO_compare_and_swap() and other calls.  Since these are not available on
all platforms, selectively enable the use of the system libatomic_ops.

Fixes:
http://autobuild.buildroot.net/results/eba/eba5bf85e9ff98916cd3638b5f13ab5bd54564d8/
http://autobuild.buildroot.net/results/c74/c743cfca629fb332bbb1327cf4ea360f0a4e4bfe/
http://autobuild.buildroot.net/results/095/095348d4d309c2a408a3b297b4325348ed1dd7e8/

Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com>
---
 package/erlang/Config.in | 10 ++++++++++
 package/erlang/erlang.mk |  4 +++-
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/package/erlang/Config.in b/package/erlang/Config.in
index 56830da..9caf1ec 100644
--- a/package/erlang/Config.in
+++ b/package/erlang/Config.in
@@ -26,6 +26,16 @@ config BR2_PACKAGE_ERLANG_SMP
 	  If you do not need SMP support, turning this option off reduces
 	  compile time and the size of the Erlang installation.
 
+config BR2_PACKAGE_ERLANG_USE_LIBATOMIC_OPS
+	bool
+	select BR2_PACKAGE_LIBATOMIC_OPS
+	default y if BR2_ARM_CPU_ARMV7A || BR2_x86_64
+	help
+	  Use the system libatomic_ops on platforms that provide
+	  implementations for AO_store(), AO_load(), and AO_compare_and_swap().
+	  Platforms without support for those functions must still use the
+	  Erlang-provided implementation.
+
 config BR2_PACKAGE_ERLANG_MEGACO
 	bool "install megaco application"
 	help
diff --git a/package/erlang/erlang.mk b/package/erlang/erlang.mk
index 0b8619e..007053a 100644
--- a/package/erlang/erlang.mk
+++ b/package/erlang/erlang.mk
@@ -22,9 +22,11 @@ ERLANG_CONF_ENV += erl_xcomp_sysroot=$(STAGING_DIR)
 
 ERLANG_CONF_OPTS = --without-javac
 
-ifeq ($(BR2_PACKAGE_LIBATOMIC_OPS),y)
+ifeq ($(BR2_PACKAGE_ERLANG_USE_LIBATOMIC_OPS),y)
 ERLANG_DEPENDENCIES += libatomic_ops
 ERLANG_CONF_OPTS += --with-libatomic_ops=$(STAGING_DIR)/usr
+else
+ERLANG_CONF_OPTS += --without-libatomic_ops
 endif
 
 # erlang uses openssl for all things crypto. Since the host tools (such as
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-12-23  0:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-22  9:04 [Buildroot] [PATCH] erlang: selectively enable libatomic_ops Frank Hunleth
2014-12-22 17:13 ` Yann E. MORIN
2014-12-22 17:49   ` Frank Hunleth
2014-12-22 21:24     ` Yann E. MORIN
2014-12-23  0:57       ` Frank Hunleth

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.