riscv64 arch does not support -buildmode=pie

Signed-off-by: Lucas Kanashiro <lucas.kanashiro@canonical.com>
This commit is contained in:
Lucas Kanashiro 2020-05-20 16:28:10 -03:00
parent 7ef3c0f47d
commit e34bf08e58

View File

@ -20,7 +20,7 @@ COMMANDS += containerd-shim containerd-shim-runc-v1 containerd-shim-runc-v2
# check GOOS for cross compile builds
ifeq ($(GOOS),linux)
ifneq ($(GOARCH),$(filter $(GOARCH),mips mipsle mips64 mips64le ppc64))
ifneq ($(GOARCH),$(filter $(GOARCH),mips mipsle mips64 mips64le ppc64 riscv64))
GO_GCFLAGS += -buildmode=pie
endif
endif