Chris@16: // (C) Copyright John Maddock 2001. Chris@16: // Use, modification and distribution are subject to the Chris@16: // Boost Software License, Version 1.0. (See accompanying file Chris@16: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: // See http://www.boost.org for most recent version. Chris@16: Chris@16: // Greenhills C++ compiler setup: Chris@16: Chris@16: #define BOOST_COMPILER "Greenhills C++ version " BOOST_STRINGIZE(__ghs) Chris@16: Chris@16: #include "boost/config/compiler/common_edg.hpp" Chris@16: Chris@16: // Chris@16: // versions check: Chris@16: // we don't support Greenhills prior to version 0: Chris@16: #if __ghs < 0 Chris@16: # error "Compiler not supported or configured - please reconfigure" Chris@16: #endif Chris@16: // Chris@16: // last known and checked version is 0: Chris@16: #if (__ghs > 0) Chris@16: # if defined(BOOST_ASSERT_CONFIG) Chris@16: # error "Unknown compiler version - please run the configure tests and report the results" Chris@16: # endif Chris@16: #endif Chris@16: Chris@16: