-buildmode=pie is not supported for the mips arch

reference: 4c99c81326

Signed-off-by: Xiaodong Liu <liuxiaodong@loongson.cn>
This commit is contained in:
Xiaodong Liu 2020-05-12 09:14:36 +08:00
parent f7185d27e1
commit eeafa40154
1 changed files with 11 additions and 1 deletions

View File

@ -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