mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-22 20:57:10 +00:00
fix Makefile universal build selection
and remove armv8 left-over closes https://github.com/official-stockfish/Stockfish/pull/6876 No functional change
This commit is contained in:
committed by
Joost VandeVondele
parent
0c1001c93e
commit
8416ccafff
@@ -136,7 +136,7 @@ jobs:
|
|||||||
sudo apt-get install -y qemu-user
|
sudo apt-get install -y qemu-user
|
||||||
|
|
||||||
- name: Build universal binary
|
- name: Build universal binary
|
||||||
run: make -j4 -C src ARCH=armv8-universal profile-build
|
run: make -j4 -C src ARCH=arm64-universal profile-build
|
||||||
|
|
||||||
- name: Strip binary
|
- name: Strip binary
|
||||||
run: strip src/stockfish
|
run: strip src/stockfish
|
||||||
@@ -185,7 +185,7 @@ jobs:
|
|||||||
install: mingw-w64-clang-aarch64-clang make git zip
|
install: mingw-w64-clang-aarch64-clang make git zip
|
||||||
|
|
||||||
- name: Build universal binary
|
- name: Build universal binary
|
||||||
run: make -j4 -C src ARCH=armv8-universal profile-build COMP=clang COMPCXX=clang++
|
run: make -j4 -C src ARCH=arm64-universal profile-build COMP=clang COMPCXX=clang++
|
||||||
|
|
||||||
- name: Strip binary
|
- name: Strip binary
|
||||||
run: strip src/stockfish.exe
|
run: strip src/stockfish.exe
|
||||||
|
|||||||
@@ -181,6 +181,7 @@ Mira
|
|||||||
Miroslav Fontán (Hexik)
|
Miroslav Fontán (Hexik)
|
||||||
Moez Jellouli (MJZ1977)
|
Moez Jellouli (MJZ1977)
|
||||||
Mohammed Li (tthsqe12)
|
Mohammed Li (tthsqe12)
|
||||||
|
Mukhammedali Beriktassuly (Berektassuly)
|
||||||
Muzhen J (XInTheDark)
|
Muzhen J (XInTheDark)
|
||||||
Nathan Rugg (nmrugg)
|
Nathan Rugg (nmrugg)
|
||||||
Nguyen Pham (nguyenpham)
|
Nguyen Pham (nguyenpham)
|
||||||
|
|||||||
+1
-1
@@ -155,7 +155,7 @@ else
|
|||||||
SUPPORTED_ARCH=false
|
SUPPORTED_ARCH=false
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(findstring universal,$(ARCH)))
|
ifneq (,$(filter $(ARCH),x86-64-universal arm64-universal))
|
||||||
UNIVERSAL_BUILD=true
|
UNIVERSAL_BUILD=true
|
||||||
else
|
else
|
||||||
UNIVERSAL_BUILD=false
|
UNIVERSAL_BUILD=false
|
||||||
|
|||||||
Reference in New Issue
Block a user