RBIMPL_HAS_CPP_ATTRIBUTE: handle SunPro

Oracle Developer Studio's C++ preprocessor started to understand
__has_cpp_attribute since version 12.5, and is broken.  After looking
around for a while I found Boost and ICU also had this issue before.
Let me add workaround for it.
This commit is contained in:
卜部昌平 2020-08-19 16:18:59 +09:00
Родитель b6c7b94b1c
Коммит 01826b3fda
1 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -25,7 +25,16 @@
#include "ruby/internal/token_paste.h"
/** @cond INTERNAL_MACRO */
#if defined(__has_cpp_attribute)
#if RBIMPL_COMPILER_IS(SunPro)
# /* Oracle Developer Studio 12.5's C++ preprocessor is reportedly broken. We
# * could simulate __has_cpp_attribute like below, but don't know the exact
# * list of which version supported which attribute. Just kill everything for
# * now. If you can please :FIXME: */
# /* https://unicode-org.atlassian.net/browse/ICU-12893 */
# /* https://github.com/boostorg/config/pull/95 */
# define RBIMPL_HAS_CPP_ATTRIBUTE0(_) 0
#elif defined(__has_cpp_attribute)
# define RBIMPL_HAS_CPP_ATTRIBUTE0(_) __has_cpp_attribute(_)
#elif RBIMPL_COMPILER_IS(MSVC)
@ -60,7 +69,6 @@
# /* :FIXME:
# * Candidate compilers to list here:
# * - icpc: They have __INTEL_CXX11_MODE__.
# * - SunPro: Seems they support C++11.
# */
# define RBIMPL_HAS_CPP_ATTRIBUTE0(_) 0
#endif