diff options
author | Victor Stinner <vstinner@python.org> | 2019-10-22 19:53:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-22 19:53:50 (GMT) |
commit | 028f7349a0f6eaea0fec31becb587fcdf6e3cb28 (patch) | |
tree | 50ed359f27bb7e79c69cd8bff947b2e83e90e4bc /Misc | |
parent | c987090c731a363c58a02d0efcb3c2d49ccf61ed (diff) | |
download | cpython-028f7349a0f6eaea0fec31becb587fcdf6e3cb28.zip cpython-028f7349a0f6eaea0fec31becb587fcdf6e3cb28.tar.gz cpython-028f7349a0f6eaea0fec31becb587fcdf6e3cb28.tar.bz2 |
bpo-37415: Fix stdatomic.h header check for ICC compiler (GH-16717)
Fix stdatomic.h header check for ICC compiler: the ICC implementation
lacks atomic_uintptr_t type which is needed by Python.
Test:
* atomic_int and atomic_uintptr_t types
* atomic_load_explicit() and atomic_store_explicit()
* memory_order_relaxed and memory_order_seq_cst constants
But don't test ATOMIC_VAR_INIT(): it's not used in Python.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2019-10-11-15-32-58.bpo-37415.D9RXrq.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2019-10-11-15-32-58.bpo-37415.D9RXrq.rst b/Misc/NEWS.d/next/Build/2019-10-11-15-32-58.bpo-37415.D9RXrq.rst new file mode 100644 index 0000000..98f4a3b --- /dev/null +++ b/Misc/NEWS.d/next/Build/2019-10-11-15-32-58.bpo-37415.D9RXrq.rst @@ -0,0 +1,2 @@ +Fix stdatomic.h header check for ICC compiler: the ICC implementation lacks +atomic_uintptr_t type which is needed by Python. |