mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 13:47:39 +03:00
Compile ARM binaries for ARMv5
Not sure what's going on here. GOARM=6 is supposed to be the default when cross-compiling, but some people reported that executables had illegal instructions without GOARM=6. After executables available for download were updated with GOARM=6, people kept reporting "it doesn't load", even though we presumably never shipped binaries for ARMv5. Anyway, try that as a last move.
This commit is contained in:
parent
6a608565bf
commit
79c8fa30d0
1 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ script:
|
|||
- tar czpvf dnscrypt-proxy-freebsd_amd64-${TRAVIS_TAG:-dev}.tar.gz freebsd-amd64
|
||||
|
||||
- go clean
|
||||
- env GOOS=freebsd GOARCH=arm go GOARM=6 build -mod vendor -ldflags="-s -w"
|
||||
- env GOOS=freebsd GOARCH=arm go GOARM=5 build -mod vendor -ldflags="-s -w"
|
||||
- mkdir freebsd-arm
|
||||
- ln dnscrypt-proxy freebsd-arm/
|
||||
- ln ../LICENSE example-dnscrypt-proxy.toml localhost.pem example-*.txt freebsd-arm/
|
||||
|
@ -118,7 +118,7 @@ script:
|
|||
- tar czpvf dnscrypt-proxy-linux_x86_64-${TRAVIS_TAG:-dev}.tar.gz linux-x86_64
|
||||
|
||||
- go clean
|
||||
- env CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=6 go build -mod vendor -ldflags="-s -w"
|
||||
- env CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=5 go build -mod vendor -ldflags="-s -w"
|
||||
- mkdir linux-arm
|
||||
- ln dnscrypt-proxy linux-arm/
|
||||
- ln ../LICENSE example-dnscrypt-proxy.toml localhost.pem example-*.txt linux-arm/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue