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

Commit

Permalink
Update Android NDK llvm toolchains directory name (#2048)
Browse files Browse the repository at this point in the history
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 😄 .
  • Loading branch information
adamszewe authored Feb 2, 2024
1 parent c2a08f6 commit 878f31a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syncthing/build-syncthing.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
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
Expand Down

0 comments on commit 878f31a

Please sign in to comment.