STINNER Victor <vstin...@redhat.com> added the comment:

> I searched at <stdatomic.h> atomic_uintptr_t and found nothing.

That's not good. I expectd std to stand for standard. I expected that 
atomic_uintptr_t would always be available on <stdatomic.h>.

GCC defines the type as:

typedef _Atomic __UINTPTR_TYPE__ atomic_uintptr_t;

Maybe you should try:

typedef struct _Py_atomic_address {
    _Atomic Py_uintptr_t _value;
} _Py_atomic_address;

----------
title: Error build Python with Intel compiler -> Error build Python with Intel 
compiler: <stdatomic.h> doesn't provide atomic_uintptr_t

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

Reply via email to