From bbbab8d2ef551b693397e6c90965dff9f74f4011 Mon Sep 17 00:00:00 2001 From: Philipp Heckel Date: Sat, 20 Nov 2021 20:27:17 -0500 Subject: [PATCH] Properly statically compile, without warnings; netgo,osusergo --- .goreleaser.yml | 6 +++--- Makefile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 1972a6fd..c887f6e3 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -7,7 +7,7 @@ builds: binary: ntfy env: - CGO_ENABLED=1 # required for go-sqlite3 - tags: [sqlite_omit_load_extension] + tags: [sqlite_omit_load_extension,osusergo,netgo] ldflags: - "-linkmode=external -extldflags=-static -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}" goos: [linux] @@ -18,7 +18,7 @@ builds: env: - CGO_ENABLED=1 # required for go-sqlite3 - CC=arm-linux-gnueabi-gcc # apt install gcc-arm-linux-gnueabi - tags: [sqlite_omit_load_extension] + tags: [sqlite_omit_load_extension,osusergo,netgo] ldflags: - "-linkmode=external -extldflags=-static -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}" goos: [linux] @@ -32,7 +32,7 @@ builds: env: - CGO_ENABLED=1 # required for go-sqlite3 - CC=aarch64-linux-gnu-gcc # apt install gcc-aarch64-linux-gnu - tags: [sqlite_omit_load_extension] + tags: [sqlite_omit_load_extension,osusergo,netgo] ldflags: - "-linkmode=external -extldflags=-static -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}" goos: [linux] diff --git a/Makefile b/Makefile index 855eba04..3debf825 100644 --- a/Makefile +++ b/Makefile @@ -103,7 +103,7 @@ build-simple: clean export CGO_ENABLED=1 $(GO) build \ -o dist/ntfy_linux_amd64/ntfy \ - -tags sqlite_omit_load_extension \ + -tags sqlite_omit_load_extension,osusergo,netgo \ -ldflags \ "-linkmode=external -extldflags=-static -s -w -X main.version=$(VERSION) -X main.commit=$(shell git rev-parse --short HEAD) -X main.date=$(shell date +%s)"