mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-22 12:47:08 +00:00
* .tar -> .tar.gz: save a few more MB in distribution. * drop android armv7 without NEON support: there should be almost no devices around that do not support this. closes https://github.com/official-stockfish/Stockfish/pull/6850 No functional change
43 lines
886 B
JSON
43 lines
886 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.gz"
|
|
},
|
|
{
|
|
"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.gz"
|
|
}
|
|
],
|
|
"binaries": [
|
|
"armv8-universal",
|
|
"armv7-neon"
|
|
],
|
|
"exclude": [
|
|
{
|
|
"binaries": "armv8-universal",
|
|
"config": {
|
|
"compiler": "armv7a-linux-androideabi29-clang++"
|
|
}
|
|
},
|
|
{
|
|
"binaries": "armv7-neon",
|
|
"config": {
|
|
"compiler": "aarch64-linux-android29-clang++"
|
|
}
|
|
}
|
|
]
|
|
}
|