mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Merge pull request #4805 from FearlessTobi/port-2454
Port yuzu-emu/yuzu#2454 and yuzu-emu/yuzu#2460: Add build flags
This commit is contained in:
		
						commit
						41f1963b9a
					
				
					 1 changed files with 23 additions and 10 deletions
				
			
		|  | @ -21,13 +21,26 @@ if (MSVC) | ||||||
|     # /W3                 - Level 3 warnings |     # /W3                 - Level 3 warnings | ||||||
|     # /MP                 - Multi-threaded compilation |     # /MP                 - Multi-threaded compilation | ||||||
|     # /Zi                 - Output debugging information |     # /Zi                 - Output debugging information | ||||||
|     # /Zo - enhanced debug info for optimized builds |     # /Zo                 - Enhanced debug info for optimized builds | ||||||
|     # /permissive- - enables stricter C++ standards conformance checks |     # /permissive-        - Enables stricter C++ standards conformance checks | ||||||
|     # /EHsc               - C++-only exception handling semantics |     # /EHsc               - C++-only exception handling semantics | ||||||
|     # /std:c++latest - Latest available C++ standard |     # /volatile:iso       - Use strict standards-compliant volatile semantics. | ||||||
|     # /Zc:throwingNew - let codegen assume `operator new` will never return null |     # /Zc:externConstexpr - Allow extern constexpr variables to have external linkage, like the standard mandates | ||||||
|     # /Zc:inline - let codegen omit inline functions in object files |     # /Zc:inline          - Let codegen omit inline functions in object files | ||||||
|     add_compile_options(/W3 /MP /Zi /Zo /permissive- /EHsc /std:c++latest /Zc:throwingNew,inline) |     # /Zc:throwingNew     - Let codegen assume `operator new` (without std::nothrow) will never return null | ||||||
|  |     add_compile_options( | ||||||
|  |         /W3 | ||||||
|  |         /MP | ||||||
|  |         /Zi | ||||||
|  |         /Zo | ||||||
|  |         /permissive- | ||||||
|  |         /EHsc | ||||||
|  |         /std:c++latest | ||||||
|  |         /volatile:iso | ||||||
|  |         /Zc:externConstexpr | ||||||
|  |         /Zc:inline | ||||||
|  |         /Zc:throwingNew | ||||||
|  |     ) | ||||||
| 
 | 
 | ||||||
|     # /GS- - No stack buffer overflow checks |     # /GS- - No stack buffer overflow checks | ||||||
|     add_compile_options("$<$<CONFIG:Release>:/GS->") |     add_compile_options("$<$<CONFIG:Release>:/GS->") | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue