mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #2316 from endrift/macos-gcc
Common: Fix gcc build on macOS
This commit is contained in:
		
						commit
						a89471621b
					
				
					 1 changed files with 11 additions and 0 deletions
				
			
		|  | @ -40,9 +40,20 @@ | ||||||
| #endif | #endif | ||||||
| 
 | 
 | ||||||
| #if defined(__APPLE__) | #if defined(__APPLE__) | ||||||
|  | // CFURL contains __attribute__ directives that gcc does not know how to parse, so we need to just
 | ||||||
|  | // ignore them if we're not using clang. The macro is only used to prevent linking against
 | ||||||
|  | // functions that don't exist on older versions of macOS, and the worst case scenario is a linker
 | ||||||
|  | // error, so this is perfectly safe, just inconvenient.
 | ||||||
|  | #ifndef __clang__ | ||||||
|  | #define availability(...) | ||||||
|  | #endif | ||||||
| #include <CoreFoundation/CFBundle.h> | #include <CoreFoundation/CFBundle.h> | ||||||
| #include <CoreFoundation/CFString.h> | #include <CoreFoundation/CFString.h> | ||||||
| #include <CoreFoundation/CFURL.h> | #include <CoreFoundation/CFURL.h> | ||||||
|  | #ifdef availability | ||||||
|  | #undef availability | ||||||
|  | #endif | ||||||
|  | 
 | ||||||
| #endif | #endif | ||||||
| 
 | 
 | ||||||
| #include <algorithm> | #include <algorithm> | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue