Update Android NDK llvm toolchains directory name (#2048)

The current setup uses:
```
PLATFORM_DIRS = {
    'Windows': 'windows-x86_64',
    'Linux': 'linux-x86_64',
    'Darwin': 'darwin-x86-64',
}
```
I think the Darwin config has been configured like this by mistake.
Trying to build the app fails because `nativeBuild` task fail because it
cannot locate the toolchain.
Maybe in the past `darwin-x86-64` worked but I see the toolchains under
`x86_64` directory now.
And with `x86_64` the build works of course 😄 .
This commit is contained in:
Adam Szewera 2024-02-02 20:26:21 +01:00 committed by GitHub
parent c2a08f61c4
commit 878f31a2aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import sys
PLATFORM_DIRS = { PLATFORM_DIRS = {
'Windows': 'windows-x86_64', 'Windows': 'windows-x86_64',
'Linux': 'linux-x86_64', 'Linux': 'linux-x86_64',
'Darwin': 'darwin-x86-64', 'Darwin': 'darwin-x86_64',
} }
# The values here must correspond with those in ../docker/prebuild.sh # The values here must correspond with those in ../docker/prebuild.sh