mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-09 20:57:26 +01:00
Merge pull request #792 from pietrygamat/CMAKE_SYSTEM_NAME-windows-arm
Fix CMAKE_SYSTEM_NAME variable in windows-arm* toolchains to correctly indicate target platform
This commit is contained in:
commit
85db3452be
12
.github/workflows/main.yml
vendored
12
.github/workflows/main.yml
vendored
@ -860,17 +860,17 @@ jobs:
|
||||
image: "windows-armv7",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "ARCH=armv7-neon COMP=clang",
|
||||
ninja: "no",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "mingw no-asm",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus: "no",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: "",
|
||||
raylib: "no",
|
||||
raylib: "yes",
|
||||
raylib_arg: "",
|
||||
cpython: "no",
|
||||
cpython_arg: "",
|
||||
@ -879,17 +879,17 @@ jobs:
|
||||
image: "windows-arm64",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "ARCH=armv8 COMP=clang",
|
||||
ninja: "no",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "mingw64 no-asm",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus: "no",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: "",
|
||||
raylib: "no",
|
||||
raylib: "yes",
|
||||
raylib_arg: "",
|
||||
cpython: "no",
|
||||
cpython_arg: "",
|
||||
|
2
Makefile
2
Makefile
@ -63,6 +63,8 @@ windows-static-x64-posix.test_ARGS = --exe-suffix ".exe"
|
||||
windows-shared-x86.test_ARGS = --exe-suffix ".exe"
|
||||
windows-shared-x64.test_ARGS = --exe-suffix ".exe"
|
||||
windows-shared-x64-posix.test_ARGS = --exe-suffix ".exe"
|
||||
windows-armv7.test_ARGS = --exe-suffix ".exe"
|
||||
windows-arm64.test_ARGS = --exe-suffix ".exe"
|
||||
bare-armv7emhf-nano_newlib.test_ARGS = --linker-flags="--specs=nosys.specs"
|
||||
|
||||
# On CircleCI, do not attempt to delete container
|
||||
|
@ -1,4 +1,4 @@
|
||||
set(CMAKE_SYSTEM_NAME Linux)
|
||||
set(CMAKE_SYSTEM_NAME Windows)
|
||||
set(CMAKE_SYSTEM_VERSION 1)
|
||||
set(CMAKE_SYSTEM_PROCESSOR aarch64)
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
set(CMAKE_SYSTEM_NAME Linux)
|
||||
set(CMAKE_SYSTEM_NAME Windows)
|
||||
set(CMAKE_SYSTEM_VERSION 1)
|
||||
set(CMAKE_SYSTEM_PROCESSOR arm)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user