If your application or library uses atomics and it needs to interoperate with executables and libraries which use the GCC version of libatomic, then you must link your Oracle Developer Studio program with the GCC version of libatomic. You must be careful to have only one version of the atomics runtime library in your program.
To link your Oracle Developer Studio C and C++ programs with the GCC version of libatomic, use the complier option –xatomic=gcc.
If you are linking and running on an older system that does not have the GCC version of libatomic in /usr/lib, then you do not have to worry about incompatible atomic support. In that circumstance, you can use libstatomic in combination with GCC binaries on that system, because no other atomics library will be in use.
The Oracle Developer Studio compiler works best with the libstatomic library, but is compatible with GCC's libatomic version 1.1, with the known issues listed below:
GCC 4.8 includes libatomic 1.0.0. - This version of libatomic supports C 11 and C++ 11 atomics, if you avoid using floating point atomics in C 11 programs. The GCC 4.8 compiler itself does not support C 11 until a later release.
GCC 4.9 and 5.1 include libatomic 1.1. - This version includes the floating-point atomics for C 11, and the GCC compilers with these versions support the C 11 atomics keyword.
Oracle Linux 7.x and Oracle Solaris 11.3 include GCC 4.8 with libatomic 1.0.0.