mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-14 01:45:46 -04:00
MSBuild: Purge 32-bit targets
This has never been supported.
This commit is contained in:
@ -153,12 +153,12 @@ elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64" OR "${CMAKE_SYSTEM_PROCESSO
|
||||
else()
|
||||
# Cross-compiling 32-bit build. 32-bit hosts are not supported.
|
||||
set(CPU_ARCH_X86 TRUE)
|
||||
message("Building x86_32 binaries [not supported].")
|
||||
message(FATAL_ERROR "Building x86_32 binaries is not supported.")
|
||||
endif()
|
||||
elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86" OR "${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "i386" OR
|
||||
"${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "i686")
|
||||
set(CPU_ARCH_X86 TRUE)
|
||||
message("Building x86_32 binaries [not supported].")
|
||||
message(FATAL_ERROR "Building x86_32 binaries is not supported.")
|
||||
elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "aarch64" OR "${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "arm64")
|
||||
if(CMAKE_SIZEOF_VOID_P EQUAL 8) # Might have an A64 kernel, e.g. Raspbian.
|
||||
set(CPU_ARCH_ARM64 TRUE)
|
||||
|
Reference in New Issue
Block a user