New submission from Benjamin Peterson <benja...@python.org>:

clang supports C11 atomic APIs just fine but Python's configure fails to detect 
it:

configure:16529: checking for stdatomic.h
configure:16545: clang -pthread -o conftest    conftest.c -lpthread -ldl  
-lutil >&5
conftest.c:389:5: error: _Atomic cannot be applied to incomplete type 'void' 
    _Atomic void *py_atomic_address = (void*) &value;
    ^
1 error generated.

Indeed, the atomic uninhabited type is not very useful. If we wanted an atomic 
pointer, we should write _Atomic(void *).

----------
components: Interpreter Core
messages: 321697
nosy: benjamin.peterson
priority: normal
severity: normal
status: open
title: configure fails to detect C11 atomic support on clang
versions: Python 3.6, Python 3.7, Python 3.8

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue34121>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to