Generate version during compilation

This commit is contained in:
世界 2023-03-09 16:53:25 +08:00
parent 325f6c71ff
commit 1c8a9e91b7
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 83 additions and 33 deletions

View file

@ -2,7 +2,8 @@ NAME = sing-box
COMMIT = $(shell git rev-parse --short HEAD)
TAGS ?= with_gvisor,with_quic,with_wireguard,with_utls,with_reality_server,with_clash_api
TAGS_TEST ?= with_gvisor,with_quic,with_wireguard,with_grpc,with_ech,with_utls,with_reality_server,with_shadowsocksr
PARAMS = -v -trimpath -tags "$(TAGS)" -ldflags "-s -w -buildid="
VERSION=$(shell go run ./cmd/internal/read_tag)
PARAMS = -v -trimpath -tags "$(TAGS)" -ldflags "-X \"github.com/sagernet/sing-box/constant.Version=$(VERSION)\" -s -w -buildid="
MAIN = ./cmd/sing-box
.PHONY: test release