We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70782c7 commit cc974a0Copy full SHA for cc974a0
cmake/godotcpp.cmake
@@ -78,22 +78,9 @@ function(godot_arch_name OUTVAR)
78
endif()
79
80
81
- # Special case for GNU -m32 builds
82
- if(CMAKE_CXX_FLAGS MATCHES "-m32")
83
- set(${OUTVAR} "x86_32" PARENT_SCOPE)
84
- return()
85
- endif()
86
-
87
- # Direct match early out.
88
- string(TOLOWER "${CMAKE_SYSTEM_PROCESSOR}" ARCH)
89
- if(ARCH IN_LIST ARCH_LIST)
90
- set(${OUTVAR} "${ARCH}" PARENT_SCOPE)
91
92
93
94
# Known aliases
95
set(x86_64 "w64;amd64;x86-64")
96
- set(arm32 "armv7;armv7-a;arm")
+ set(arm32 "armv7;armv7-a")
97
set(arm64 "armv8;arm64v8;aarch64;armv8-a")
98
set(rv64 "rv;riscv;riscv64")
99
set(ppc32 "ppcle;ppc")
0 commit comments