Merge pull request #3801 from jneuhauser/arch-mips

mips: -buildmode=pie is not supported for the mips arch
This commit is contained in:
Michael Crosby 2019-11-06 07:27:47 -05:00 committed by GitHub
commit c80fa7df17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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),ppc64)
ifneq ($(GOARCH),$(filter $(GOARCH),mips mipsle mips64 mips64le ppc64))
GO_GCFLAGS += -buildmode=pie
endif
endif