5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-19 00:59:37 +00:00

Update build script to strip by default, allow debug -d and UPX -u flags

This commit is contained in:
Neil Alexander 2018-06-21 09:53:35 +01:00
parent 10a66a4edc
commit 2c3074a979
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

20
build
View File

@ -1,11 +1,25 @@
#!/bin/sh
while getopts ud option
do
case "${option}"
in
u) UPX=true;;
d) DEBUG=true;;
esac
done
export GOPATH=$PWD
echo "Downloading..."
go get -d -v
go get -d -v yggdrasil
for file in *.go ; do
echo "Building: $file"
go build $@ $file
#go build -ldflags="-s -w" -v $file
#upx --brute ${file/.go/}
#go build $@ $file
if [ $DEBUG ]; then
go build -tags debug -v $file
else
go build -ldflags="-s -w" -v $file
fi
if [ $UPX ]; then
upx --brute ${file/.go/}
fi
done