]> granicus.if.org Git - python/commit
bpo-37415: Fix stdatomic.h header check for ICC compiler (GH-16717)
authorVictor Stinner <vstinner@python.org>
Tue, 22 Oct 2019 19:53:50 +0000 (21:53 +0200)
committerGitHub <noreply@github.com>
Tue, 22 Oct 2019 19:53:50 +0000 (21:53 +0200)
commit028f7349a0f6eaea0fec31becb587fcdf6e3cb28
tree50ed359f27bb7e79c69cd8bff947b2e83e90e4bc
parentc987090c731a363c58a02d0efcb3c2d49ccf61ed
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.
Misc/NEWS.d/next/Build/2019-10-11-15-32-58.bpo-37415.D9RXrq.rst [new file with mode: 0644]
configure
configure.ac
pyconfig.h.in