mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-11-03 20:24:43 +01:00 
			
		
		
		
	CMakeLists: Add architecture detection for AArch64
We already have an equivalent in place for the 32-bit ARM architecture, so we should also have one for the newer 64-bit ARM architecture as well.
This commit is contained in:
		
							parent
							
								
									d1520410a3
								
							
						
					
					
						commit
						319dbc5843
					
				@ -66,10 +66,12 @@ if (NOT ENABLE_GENERIC)
 | 
			
		||||
        detect_architecture("_M_AMD64" x86_64)
 | 
			
		||||
        detect_architecture("_M_IX86" x86)
 | 
			
		||||
        detect_architecture("_M_ARM" ARM)
 | 
			
		||||
        detect_architecture("_M_ARM64" ARM64)
 | 
			
		||||
    else()
 | 
			
		||||
        detect_architecture("__x86_64__" x86_64)
 | 
			
		||||
        detect_architecture("__i386__" x86)
 | 
			
		||||
        detect_architecture("__arm__" ARM)
 | 
			
		||||
        detect_architecture("__aarch64__" ARM64)
 | 
			
		||||
    endif()
 | 
			
		||||
endif()
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user