Makefile: set GOOS,GOARCH defaults to kill warning
This commit is contained in:
parent
cbedbc0ca5
commit
20ed7df894
4
Makefile
4
Makefile
|
|
@ -24,6 +24,10 @@ VERSION ?= $(shell git describe --tags --always --dirty)
|
||||||
# This version-strategy uses a manual value to set the version string
|
# This version-strategy uses a manual value to set the version string
|
||||||
#VERSION ?= 1.2.3
|
#VERSION ?= 1.2.3
|
||||||
|
|
||||||
|
# Set these to cross-compile.
|
||||||
|
GOOS ?=
|
||||||
|
GOARCH ?=
|
||||||
|
|
||||||
# Set this to 1 to build a debugger-friendly binary.
|
# Set this to 1 to build a debugger-friendly binary.
|
||||||
DBG ?=
|
DBG ?=
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue