[issue35473] Intel compiler (icc) does not fully support C11 Features, including atomics

2019-10-21 Thread STINNER Victor
STINNER Victor added the comment: I mark this issue as a duplicate of bpo-37415. -- nosy: +vstinner resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Error build Python with Intel compiler: doesn't provide atomic_uintptr_t

[issue35473] Intel compiler (icc) does not fully support C11 Features, including atomics

2019-03-25 Thread Josh Rosenberg
Josh Rosenberg added the comment: Perhaps an alternative solution would be to provide conditional definitions for the stuff ICC leaves out? I'm assuming ICC can actually handle _Atomic uintptr_t if you type it out, it's just missing the typedef for it for whatever reason? -- nosy:

[issue35473] Intel compiler (icc) does not fully support C11 Features, including atomics

2019-03-25 Thread David Chin
Change by David Chin : -- nosy: +hairygristle ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35473] Intel compiler (icc) does not fully support C11 Features, including atomics

2018-12-12 Thread jamie schnaitter
New submission from jamie schnaitter : I am currently trying to build 3.6.7 and 3.7.1 using Intel 2019 and it is failing because Intel's implementation of C11, in particular stdatomic, is incomplete. I receive many errors similar to the following, when it cannot find 'atomic_uintptr_t',