Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
### Unreleased

* Fix typo in English description of "Keep Syncthing alive" setting ([PR #67])
* Fix reproducible builds issue caused by overridden ldflags ([PR #69])

### Version 1.16

Expand Down Expand Up @@ -177,3 +178,4 @@
[PR #63]: https://github.com/chenxiaolong/BasicSync/pull/63
[PR #66]: https://github.com/chenxiaolong/BasicSync/pull/66
[PR #67]: https://github.com/chenxiaolong/BasicSync/pull/67
[PR #69]: https://github.com/chenxiaolong/BasicSync/pull/69
4 changes: 4 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,10 @@ val stbridge = tasks.register("stbridge") {
"-X github.com/syncthing/syncthing/lib/build.Tags=${tags.joinToString(",")}",
// https://github.com/wlynxg/anet#how-to-build-with-go-1230-or-later
"-checklinkname=0",
// We need to repeat the ldflags from the goenv task. There is currently no way to
// extend the existing value provided via an environment variable.
// https://github.com/golang/go/issues/38522
"-buildid=",
)

executable(gomobileExecutable)
Expand Down