Skip to content
This repository was archived by the owner on Dec 3, 2024. It is now read-only.

Commit 878f31a

Browse files
authored
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 😄 .
1 parent c2a08f6 commit 878f31a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

syncthing/build-syncthing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
PLATFORM_DIRS = {
1010
'Windows': 'windows-x86_64',
1111
'Linux': 'linux-x86_64',
12-
'Darwin': 'darwin-x86-64',
12+
'Darwin': 'darwin-x86_64',
1313
}
1414

1515
# The values here must correspond with those in ../docker/prebuild.sh

0 commit comments

Comments
 (0)