Merge pull request #2507 from XiaodongLoong/master
-buildmode=pie is not supported for the mips arch
This commit is contained in:
commit
5bf109154f
@ -9,6 +9,16 @@ source ./scripts/build/.variables
|
|||||||
|
|
||||||
echo "Building dynamically linked $TARGET"
|
echo "Building dynamically linked $TARGET"
|
||||||
export CGO_ENABLED=1
|
export CGO_ENABLED=1
|
||||||
go build -o "${TARGET}" -tags pkcs11 --ldflags "${LDFLAGS}" -buildmode=pie "${SOURCE}"
|
case "$(go env GOARCH)" in
|
||||||
|
mips*|ppc64)
|
||||||
|
# pie build mode is not supported on mips architectures
|
||||||
|
GO_BUILDMODE=""
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
GO_BUILDMODE="-buildmode=pie"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
go build -o "${TARGET}" -tags pkcs11 --ldflags "${LDFLAGS}" ${GO_BUILDMODE} "${SOURCE}"
|
||||||
|
|
||||||
ln -sf "$(basename "${TARGET}")" build/docker
|
ln -sf "$(basename "${TARGET}")" build/docker
|
||||||
|
Loading…
x
Reference in New Issue
Block a user