summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-19 19:58:47 -0500
committermidipix <writeonce@midipix.org>2018-12-19 20:16:28 -0500
commit08042573a31d41f6af669babd9b911b3fd5d2433 (patch)
tree1301e4565c46d24d14e06e428679abd60771457d
parent5eb3ab3667560c57b3a38ff2daaa402510a0ee29 (diff)
downloadsbpython2-08042573a31d41f6af669babd9b911b3fd5d2433.tar.bz2
sbpython2-08042573a31d41f6af669babd9b911b3fd5d2433.tar.xz
custom config, modern.h: properly detect stdatomic.h and atomic built-ins.
-rw-r--r--profiles/osapi/modern.h9
-rw-r--r--project/config/cfgdefs.sh1
2 files changed, 10 insertions, 0 deletions
diff --git a/profiles/osapi/modern.h b/profiles/osapi/modern.h
index c756844..da13d99 100644
--- a/profiles/osapi/modern.h
+++ b/profiles/osapi/modern.h
@@ -1,6 +1,15 @@
#ifndef PY_OSAPI_MODERN_H
#define PY_OSAPI_MODERN_H
+/* atomics */
+#ifdef __ATOMIC_ACQUIRE
+#define HAVE_BUILTIN_ATOMIC 1
+#endif
+
+#ifdef HAVE_STDATOMIC_H
+#define HAVE_STD_ATOMIC 1
+#endif
+
/* stdc headers */
#define STDC_HEADERS 1
diff --git a/project/config/cfgdefs.sh b/project/config/cfgdefs.sh
index 567e6cf..750de3a 100644
--- a/project/config/cfgdefs.sh
+++ b/project/config/cfgdefs.sh
@@ -80,6 +80,7 @@ cfgdefs_perform_common_tests()
{
# headers
cfgtest_header_absence 'stropts.h'
+ cfgtest_header_presence 'stdatomic.h'
cfgtest_header_presence 'endian.h'
cfgtest_header_presence 'net/if.h'
cfgtest_header_presence 'sched.h'