f84711702d
Some checks failed
android / build (push) Successful in 1m32s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Failing after 1m35s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Failing after 1m49s
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Failing after 1m44s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Failing after 2m1s
linux-arm-gcc / linux-gcc-arm (Release) (push) Failing after 1m55s
linux-x64-gcc / linux-gcc (Debug) (push) Failing after 29s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Failing after 1m23s
linux-x64-gcc / linux-gcc (Release) (push) Failing after 28s
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Failing after 1m25s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Failing after 1m49s
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Failing after 2m26s
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Failing after 2m28s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Failing after 5m6s
linux-x86-gcc / linux-gcc (Release) (push) Failing after 3m29s
linux-x86-gcc / linux-gcc (Debug) (push) Failing after 5m54s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Failing after 9m46s
13 lines
444 B
CMake
13 lines
444 B
CMake
# Find the armasm assembler, armasm or armasm64
|
|
set(ASM_DIALECT "_ARMASM")
|
|
|
|
# If we are using the 64bit cl compiler, assume we also want the 64bit assembler
|
|
if (";${CMAKE_VS_PLATFORM_NAME};${MSVC_C_ARCHITECTURE_ID};${MSVC_CXX_ARCHITECTURE_ID};" MATCHES ";ARM64;")
|
|
set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT armasm64)
|
|
else ()
|
|
set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT armasm)
|
|
endif ()
|
|
|
|
include(CMakeDetermineASMCompiler)
|
|
set(ASM_DIALECT)
|