mirror of
				https://github.com/notepad-plus-plus/notepad-plus-plus.git
				synced 2025-10-29 02:23:52 +01:00 
			
		
		
		
	1. Build Notepad++ with Scintilla static lib (libscintilla.lib) and Boost (v1.76) RegExpr. 2. ARM64 build is available. Fix #5158, close #9594
		
			
				
	
	
		
			24 lines
		
	
	
		
			770 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			770 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| //  (C) Copyright Noel Belcourt 2007.
 | |
| //  Copyright 2017, NVIDIA CORPORATION.
 | |
| //  Use, modification and distribution are subject to the
 | |
| //  Boost Software License, Version 1.0. (See accompanying file
 | |
| //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 | |
| 
 | |
| //  See http://www.boost.org for most recent version.
 | |
| 
 | |
| //  PGI C++ compiler setup:
 | |
| 
 | |
| #define BOOST_COMPILER_VERSION __PGIC__##__PGIC_MINOR__
 | |
| #define BOOST_COMPILER "PGI compiler version " BOOST_STRINGIZE(BOOST_COMPILER_VERSION)
 | |
| 
 | |
| // PGI is mostly GNU compatible.  So start with that.
 | |
| #include <boost/config/compiler/gcc.hpp>
 | |
| 
 | |
| // Now adjust for things that are different.
 | |
| 
 | |
| // __float128 is a typedef, not a distinct type.
 | |
| #undef BOOST_HAS_FLOAT128
 | |
| 
 | |
| // __int128 is not supported.
 | |
| #undef BOOST_HAS_INT128
 |