summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortechknowlogick <techknowlogick@gitea.io>2021-01-01 10:22:32 -0500
committerGitHub <noreply@github.com>2021-01-01 23:22:32 +0800
commit4f2f08bd804a6b900e9e7e7bd7f6e7f073581966 (patch)
tree48c43cf341002fb12778b562e3fd5571b709edbd
parentc9b9b462d224b953441760bea5fe27adfd435143 (diff)
downloadgitea-4f2f08bd804a6b900e9e7e7bd7f6e7f073581966.tar.gz
gitea-4f2f08bd804a6b900e9e7e7bd7f6e7f073581966.zip
deprecate building for mips (#14174)
Co-authored-by: zeripath <art27@cantab.net>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dabd100e5f..dc8faf817d 100644
--- a/Makefile
+++ b/Makefile
@@ -584,7 +584,7 @@ release-linux: | $(DIST_DIRS)
@hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
GO111MODULE=off $(GO) get -u src.techknowlogick.com/xgo; \
fi
- CGO_CFLAGS="$(CGO_CFLAGS)" GO111MODULE=off xgo -go $(XGO_VERSION) -dest $(DIST)/binaries -tags 'netgo osusergo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'linux/amd64,linux/386,linux/arm-5,linux/arm-6,linux/arm64,linux/mips64le,linux/mips,linux/mipsle' -out gitea-$(VERSION) .
+ CGO_CFLAGS="$(CGO_CFLAGS)" GO111MODULE=off xgo -go $(XGO_VERSION) -dest $(DIST)/binaries -tags 'netgo osusergo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'linux/amd64,linux/386,linux/arm-5,linux/arm-6,linux/arm64' -out gitea-$(VERSION) .
ifeq ($(CI),drone)
cp /build/* $(DIST)/binaries
endif