mirror of
https://github.com/boostorg/config.git
synced 2025-07-31 21:04:28 +02:00
add conditionalization for VAJRA compiler on PA-RISC
[SVN r38095]
This commit is contained in:
@@ -12,7 +12,8 @@
|
|||||||
|
|
||||||
// HP aCC C++ compiler setup:
|
// HP aCC C++ compiler setup:
|
||||||
|
|
||||||
#if (__HP_aCC >= 61200) && defined(__EDG__)
|
#if (((__HP_aCC >= 61200) && defined(__EDG__)) ||\
|
||||||
|
((__HP_aCC >= 38000) && defined(__hpxstd98)))
|
||||||
#include "boost/config/compiler/common_edg.hpp"
|
#include "boost/config/compiler/common_edg.hpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -69,8 +70,9 @@
|
|||||||
# error "Compiler not supported or configured - please reconfigure"
|
# error "Compiler not supported or configured - please reconfigure"
|
||||||
#endif
|
#endif
|
||||||
//
|
//
|
||||||
// last known and checked version is 61300:
|
// last known and checked version for HP-UX/ia64 is 61300
|
||||||
#if (__HP_aCC > 61300)
|
// last known and checked version for PA-RISC is 38000
|
||||||
|
#if ((__HP_aCC > 61300) || ((__HP_aCC > 38000) && defined(__hpxstd98)))
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "Unknown compiler version - please run the configure tests and report the results"
|
||||||
# endif
|
# endif
|
||||||
|
Reference in New Issue
Block a user