12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #ifndef BHO_PREDEF_COMPILER_PGI_H
- #define BHO_PREDEF_COMPILER_PGI_H
- #include <asio2/bho/predef/version_number.h>
- #include <asio2/bho/predef/make.h>
-
- #define BHO_COMP_PGI BHO_VERSION_NUMBER_NOT_AVAILABLE
- #if defined(__PGI)
- # if !defined(BHO_COMP_PGI_DETECTION) && (defined(__PGIC__) && defined(__PGIC_MINOR__) && defined(__PGIC_PATCHLEVEL__))
- # define BHO_COMP_PGI_DETECTION BHO_VERSION_NUMBER(__PGIC__,__PGIC_MINOR__,__PGIC_PATCHLEVEL__)
- # endif
- # if !defined(BHO_COMP_PGI_DETECTION)
- # define BHO_COMP_PGI_DETECTION BHO_VERSION_NUMBER_AVAILABLE
- # endif
- #endif
- #ifdef BHO_COMP_PGI_DETECTION
- # if defined(BHO_PREDEF_DETAIL_COMP_DETECTED)
- # define BHO_COMP_PGI_EMULATED BHO_COMP_PGI_DETECTION
- # else
- # undef BHO_COMP_PGI
- # define BHO_COMP_PGI BHO_COMP_PGI_DETECTION
- # endif
- # define BHO_COMP_PGI_AVAILABLE
- # include <asio2/bho/predef/detail/comp_detected.h>
- #endif
- #define BHO_COMP_PGI_NAME "Portland Group C/C++"
- #endif
- #include <asio2/bho/predef/detail/test.h>
- BHO_PREDEF_DECLARE_TEST(BHO_COMP_PGI,BHO_COMP_PGI_NAME)
- #ifdef BHO_COMP_PGI_EMULATED
- #include <asio2/bho/predef/detail/test.h>
- BHO_PREDEF_DECLARE_TEST(BHO_COMP_PGI_EMULATED,BHO_COMP_PGI_NAME)
- #endif
|