mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2994 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			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
 | |
| 
 |