Added support for building garbled binaries (https://github.com/burrowers/garble.git)

This commit is contained in:
Russ Magee 2022-06-16 22:45:25 -07:00
parent a4af720280
commit ee19787b5e
7 changed files with 51 additions and 6 deletions

View File

@ -10,6 +10,14 @@ else
MTAG="-m" MTAG="-m"
endif endif
# If available, one may build 'garbled' binaries
# See https://github.com/burrowers/garble.git
ifeq ($(GARBLE),y)
GO=garble -literals -tiny -debugdir=garbled
else
GO=go
endif
ifneq ($(VENDOR),) ifneq ($(VENDOR),)
GOBUILDOPTS :=-v -mod vendor GOBUILDOPTS :=-v -mod vendor
VTAG = "-v" VTAG = "-v"
@ -63,7 +71,7 @@ tools:
common: common:
go build . $(GO) build .
go install . go install .

View File

@ -2,8 +2,14 @@
EXE = $(notdir $(shell pwd)) EXE = $(notdir $(shell pwd))
ifeq ($(GARBLE),y)
GO=garble -literals -tiny -debugdir=garbled
else
GO = go
endif
all: all:
go build . $(GO) build .
clean: clean:
$(RM) $(EXE) $(EXE).exe $(RM) $(EXE) $(EXE).exe

View File

@ -1,11 +1,18 @@
.PHONY: info clean lib .PHONY: info clean lib
ifeq ($(GARBLE),y)
GO = garble -literals -tiny -debugdir=garbled
else
GO = go
endif
all: lib all: lib
clean: clean:
go clean . go clean .
lib: info lib: info
$(GO) build .
go install . go install .
ifneq ($(MSYSTEM),) ifneq ($(MSYSTEM),)

View File

@ -1,11 +1,17 @@
.PHONY: clean all vis lint .PHONY: clean all vis lint
ifeq ($(GARBLE),y)
GO = garble -literals -tiny -debugdir=garbled
else
GO = go
endif
EXTPKGS = bytes,errors,flag,fmt,internal,io,log,net,os,path,runtime,time,strings,sync,syscall,binary,encoding EXTPKGS = bytes,errors,flag,fmt,internal,io,log,net,os,path,runtime,time,strings,sync,syscall,binary,encoding
EXE = $(notdir $(shell pwd)) EXE = $(notdir $(shell pwd))
all: all:
echo "BUILDOPTS:" $(BUILDOPTS) echo "BUILDOPTS:" $(BUILDOPTS)
go build $(BUILDOPTS) . $(GO) build $(BUILDOPTS) .
clean: clean:
$(RM) $(EXE) $(EXE).exe $(RM) $(EXE) $(EXE).exe

View File

@ -1,10 +1,16 @@
.PHONY: clean all vis lint .PHONY: clean all vis lint
ifeq ($(GARBLE),y)
GO = garble -literals -tiny -debugdir=garbled
else
GO = go
endif
EXTPKGS = binary,bytes,crypto,encoding,errors,flag,fmt,internal,io,log,net,os,path,runtime,time,strings,sync,syscall EXTPKGS = binary,bytes,crypto,encoding,errors,flag,fmt,internal,io,log,net,os,path,runtime,time,strings,sync,syscall
EXE = $(notdir $(shell pwd)) EXE = $(notdir $(shell pwd))
all: all:
go build $(BUILDOPTS) . $(GO) build $(BUILDOPTS) .
clean: clean:
$(RM) $(EXE) $(EXE).exe $(RM) $(EXE) $(EXE).exe

View File

@ -1,12 +1,18 @@
.PHONY: info clean lib .PHONY: info clean lib
ifeq ($(GARBLE),y)
GO = garble -tiny -literals -debugdir=garbled
else
GO = go
endif
all: lib all: lib
clean: clean:
go clean . go clean .
lib: info lib: info
go install . $(GO) install .
ifneq ($(MSYSTEM),) ifneq ($(MSYSTEM),)
info: info:

View File

@ -1,10 +1,16 @@
.PHONY: clean all vis lint .PHONY: clean all vis lint
ifeq ($(GARBLE),y)
GO = garble -tiny -literals -debugdir=garbled
else
GO = go
endif
EXTPKGS = bytes,errors,flag,fmt,internal,io,log,net,os,path,runtime,time,strings,sync,syscall,binary,encoding EXTPKGS = bytes,errors,flag,fmt,internal,io,log,net,os,path,runtime,time,strings,sync,syscall,binary,encoding
EXE = $(notdir $(shell pwd)) EXE = $(notdir $(shell pwd))
all: all:
go build $(BUILDOPTS) . $(GO) build $(BUILDOPTS) .
clean: clean:
$(RM) $(EXE) $(EXE).exe $(RM) $(EXE) $(EXE).exe