mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 04:11:14 +00:00
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:
parent
c2a08f61c4
commit
878f31a2aa
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ import sys
|
|||
PLATFORM_DIRS = {
|
||||
'Windows': 'windows-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
|
||||
|
|
Loading…
Reference in a new issue