diff options
author | Rickard Green <[email protected]> | 2010-06-01 13:51:34 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-06-01 13:51:34 +0000 |
commit | c68f1802ce375c3425795671c74c6b3fd9c3a8ef (patch) | |
tree | b2fbb14797c866cc1470f85dbc6382cf586150d4 /erts/lib_src | |
parent | b53f8a67649a371a38dc6d97b0dfe52111236a3e (diff) | |
download | otp-c68f1802ce375c3425795671c74c6b3fd9c3a8ef.tar.gz otp-c68f1802ce375c3425795671c74c6b3fd9c3a8ef.tar.bz2 otp-c68f1802ce375c3425795671c74c6b3fd9c3a8ef.zip |
OTP-8659 Add ethread support for gcc atomics
Support for using gcc's built-in functions for atomic memory access has
been added. This functionallity will be used if available and no other
native atomic implementation in ERTS is available.
Diffstat (limited to 'erts/lib_src')
-rw-r--r-- | erts/lib_src/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/lib_src/Makefile.in b/erts/lib_src/Makefile.in index 49f5b1f048..e7caac8072 100644 --- a/erts/lib_src/Makefile.in +++ b/erts/lib_src/Makefile.in @@ -447,7 +447,7 @@ INTERNAL_RELEASE_INCLUDES= \ $(ERTS_INCL_INT)/erl_misc_utils.h \ $(ERTS_INCL_INT)/erl_errno.h -INTERNAL_X_RELEASE_INCLUDE_DIRS= i386 x86_64 ppc32 sparc32 sparc64 tile +INTERNAL_X_RELEASE_INCLUDE_DIRS= i386 x86_64 ppc32 sparc32 sparc64 tile gcc INTERNAL_RELEASE_LIBS= \ ../lib/internal/README \ |