I've just compiled GCC 4.7 to work with stdatomic.h, but I can't seem to -I it. stdatomic.h seems to live in /usr/include/c++/4.4.3, but then the linker tells me it needs a bunch of other files in dirs nearby. If I -I all of them, I still get the error undefined reference to atomic_flag_clear_explicit. Any ideas how I'm supposed to link this right?
|
|
||||
| show 2 more comments |
|
First, if you are compiling with GCC 4.7 you should not be including or linking anything from a directory from GCC 4.4. Second, |
|||
|
|
|
The <stdatomic.h> header in GCC 4.4 and 4.5 was from an early draft of C++0x atomics, but is not part of the final standard, so it was removed from libstdc++. The C++ compiler supports C++11 atomics via the C++11 <atomic> header, so you should use that header in C++ code. When the C compiler supports C11 atomics, the <stdatomic.h> header will be provided again. |
||||
|
|
<stdatomic.h>is standard C, not C++. – Joachim Pileborg Mar 29 '12 at 5:43gcc --versionto see what version you are using. You might want to usegcc-4.7instead to make sure you get the correct compiler, which will have all correct paths built in. – Joachim Pileborg Mar 29 '12 at 5:45