gcc_xml.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. Copyright Rene Rivera 2008-2015
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. #ifndef BOOST_PREDEF_COMPILER_GCC_XML_H
  8. #define BOOST_PREDEF_COMPILER_GCC_XML_H
  9. #include <boost/predef/version_number.h>
  10. #include <boost/predef/make.h>
  11. /* tag::reference[]
  12. = `BOOST_COMP_GCCXML`
  13. http://www.gccxml.org/[GCC XML] compiler.
  14. [options="header"]
  15. |===
  16. | {predef_symbol} | {predef_version}
  17. | `+__GCCXML__+` | {predef_detection}
  18. |===
  19. */ // end::reference[]
  20. #define BOOST_COMP_GCCXML BOOST_VERSION_NUMBER_NOT_AVAILABLE
  21. #if defined(__GCCXML__)
  22. # define BOOST_COMP_GCCXML_DETECTION BOOST_VERSION_NUMBER_AVAILABLE
  23. #endif
  24. #ifdef BOOST_COMP_GCCXML_DETECTION
  25. # if defined(BOOST_PREDEF_DETAIL_COMP_DETECTED)
  26. # define BOOST_COMP_GCCXML_EMULATED BOOST_COMP_GCCXML_DETECTION
  27. # else
  28. # undef BOOST_COMP_GCCXML
  29. # define BOOST_COMP_GCCXML BOOST_COMP_GCCXML_DETECTION
  30. # endif
  31. # define BOOST_COMP_GCCXML_AVAILABLE
  32. # include <boost/predef/detail/comp_detected.h>
  33. #endif
  34. #define BOOST_COMP_GCCXML_NAME "GCC XML"
  35. #endif
  36. #include <boost/predef/detail/test.h>
  37. BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_GCCXML,BOOST_COMP_GCCXML_NAME)
  38. #ifdef BOOST_COMP_GCCXML_EMULATED
  39. #include <boost/predef/detail/test.h>
  40. BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_GCCXML_EMULATED,BOOST_COMP_GCCXML_NAME)
  41. #endif