mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-22 12:47:08 +00:00
- We add a new path for supporting universal builds without #embed . `xxd` causes the compiler to run out of memory, so instead we embed it as a string literal created at compile time.
- This file is created in `net.sh`, and only if `--embed-dir` isn't supported + we are doing a universal build.
- This was necessary because Android NDK seems to not support embed, idk why
- A couple other Makefile tweaks were necessary for the Android path.
- While we're at it, remove the non-universal arm64 windows and android binaries.
closes https://github.com/official-stockfish/Stockfish/pull/6827
No functional change
46 lines
997 B
JSON
46 lines
997 B
JSON
{
|
|
"config": [
|
|
{
|
|
"name": "Android NDK aarch64",
|
|
"os": "ubuntu-22.04",
|
|
"simple_name": "android",
|
|
"compiler": "aarch64-linux-android29-clang++",
|
|
"emu": "qemu-aarch64",
|
|
"comp": "ndk",
|
|
"shell": "bash",
|
|
"archive_ext": "tar"
|
|
},
|
|
{
|
|
"name": "Android NDK arm",
|
|
"os": "ubuntu-22.04",
|
|
"simple_name": "android",
|
|
"compiler": "armv7a-linux-androideabi29-clang++",
|
|
"emu": "qemu-arm",
|
|
"comp": "ndk",
|
|
"shell": "bash",
|
|
"archive_ext": "tar"
|
|
}
|
|
],
|
|
"binaries": ["armv8-universal", "armv7", "armv7-neon"],
|
|
"exclude": [
|
|
{
|
|
"binaries": "armv8-universal",
|
|
"config": {
|
|
"compiler": "armv7a-linux-androideabi29-clang++"
|
|
}
|
|
},
|
|
{
|
|
"binaries": "armv7",
|
|
"config": {
|
|
"compiler": "aarch64-linux-android29-clang++"
|
|
}
|
|
},
|
|
{
|
|
"binaries": "armv7-neon",
|
|
"config": {
|
|
"compiler": "aarch64-linux-android29-clang++"
|
|
}
|
|
}
|
|
]
|
|
}
|