mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-24 08:33:39 +00:00
28 lines
889 B
C++
28 lines
889 B
C++
|
// (C) Copyright Boost.org 2001. Permission to copy, use, modify, sell and
|
||
|
// distribute this software is granted provided this copyright notice appears
|
||
|
// in all copies. This software is provided "as is" without express or implied
|
||
|
// warranty, and with no claim as to its suitability for any purpose.
|
||
|
|
||
|
// See http://www.boost.org for most recent version.
|
||
|
|
||
|
// Greenhills C++ compiler setup:
|
||
|
|
||
|
#define BOOST_COMPILER "Greenhills C++ version " BOOST_STRINGIZE(__ghs)
|
||
|
|
||
|
#include "boost/config/compiler/common_edg.hpp"
|
||
|
|
||
|
//
|
||
|
// versions check:
|
||
|
// we don't support Greenhills prior to version 0:
|
||
|
#if __ghs < 0
|
||
|
# error "Compiler not supported or configured - please reconfigure"
|
||
|
#endif
|
||
|
//
|
||
|
// last known and checked version is 0:
|
||
|
#if (__ghs > 0)
|
||
|
# if defined(BOOST_ASSERT_CONFIG)
|
||
|
# error "Unknown compiler version - please run the configure tests and report the results"
|
||
|
# endif
|
||
|
#endif
|
||
|
|