sys390.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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_ARCHITECTURE_SYS390_H
  8. #define BOOST_PREDEF_ARCHITECTURE_SYS390_H
  9. #include <boost/predef/version_number.h>
  10. #include <boost/predef/make.h>
  11. /*`
  12. [heading `BOOST_ARCH_SYS390`]
  13. [@http://en.wikipedia.org/wiki/System/390 System/390] architecture.
  14. [table
  15. [[__predef_symbol__] [__predef_version__]]
  16. [[`__s390__`] [__predef_detection__]]
  17. [[`__s390x__`] [__predef_detection__]]
  18. ]
  19. */
  20. #define BOOST_ARCH_SYS390 BOOST_VERSION_NUMBER_NOT_AVAILABLE
  21. #if defined(__s390__) || defined(__s390x__)
  22. # undef BOOST_ARCH_SYS390
  23. # define BOOST_ARCH_SYS390 BOOST_VERSION_NUMBER_AVAILABLE
  24. #endif
  25. #if BOOST_ARCH_SYS390
  26. # define BOOST_ARCH_SYS390_AVAILABLE
  27. #endif
  28. #define BOOST_ARCH_SYS390_NAME "System/390"
  29. #endif
  30. #include <boost/predef/detail/test.h>
  31. BOOST_PREDEF_DECLARE_TEST(BOOST_ARCH_SYS390,BOOST_ARCH_SYS390_NAME)