mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2994 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			28 lines
		
	
	
		
			922 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			922 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.
 | |
| 
 | |
| //  Kai C++ compiler setup:
 | |
| 
 | |
| #include "boost/config/compiler/common_edg.hpp"
 | |
| 
 | |
| #   if (__KCC_VERSION <= 4001) || !defined(BOOST_STRICT_CONFIG)
 | |
|       // at least on Sun, the contents of <cwchar> is not in namespace std
 | |
| #     define BOOST_NO_STDC_NAMESPACE
 | |
| #   endif
 | |
| 
 | |
| #define BOOST_COMPILER "Kai C++ version " BOOST_STRINGIZE(__KCC_VERSION)
 | |
| 
 | |
| //
 | |
| // last known and checked version is 4001:
 | |
| #if (__KCC_VERSION > 4001)
 | |
| #  if defined(BOOST_ASSERT_CONFIG)
 | |
| #     error "Unknown compiler version - please run the configure tests and report the results"
 | |
| #  endif
 | |
| #endif
 | |
| 
 | |
| 
 |