mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 06:11:19 +00:00
Make ARMv5 and 387 builds (fixes #333)
This commit is contained in:
parent
b3202cf0a3
commit
260fc9bc87
1 changed files with 2 additions and 2 deletions
|
@ -68,11 +68,11 @@ cd src/github.com/syncthing/syncthing
|
||||||
$GOROOT/bin/go run build.go clean
|
$GOROOT/bin/go run build.go clean
|
||||||
|
|
||||||
# X86
|
# X86
|
||||||
$GOROOT/bin/go run build.go -goos linux -goarch 386 -no-upgrade build
|
GO386=387 $GOROOT/bin/go run build.go -goos linux -goarch 386 -no-upgrade build
|
||||||
mv syncthing $ORIG/bin/syncthing-x86
|
mv syncthing $ORIG/bin/syncthing-x86
|
||||||
$GOROOT/bin/go run build.go clean
|
$GOROOT/bin/go run build.go clean
|
||||||
|
|
||||||
# ARM
|
# ARM
|
||||||
$GOROOT/bin/go run build.go -goos linux -goarch arm -no-upgrade build
|
GOARM=5 $GOROOT/bin/go run build.go -goos linux -goarch arm -no-upgrade build
|
||||||
mv syncthing $ORIG/bin/syncthing-armeabi
|
mv syncthing $ORIG/bin/syncthing-armeabi
|
||||||
$GOROOT/bin/go run build.go clean
|
$GOROOT/bin/go run build.go clean
|
||||||
|
|
Loading…
Reference in a new issue