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

54 lines
1.5 KiB
Plaintext
Raw Normal View History

2018-02-18 22:07:27 +00:00
#!/bin/sh
set -ef
PKGSRC=${PKGSRC:-github.com/yggdrasil-network/yggdrasil-go/src/yggdrasil}
PKGNAME=${PKGNAME:-$(sh contrib/semver/name.sh)}
PKGVER=${PKGVER:-$(sh contrib/semver/version.sh --bare)}
LDFLAGS="-X $PKGSRC.buildName=$PKGNAME -X $PKGSRC.buildVersion=$PKGVER"
2019-07-29 22:45:47 +00:00
ARGS="-v"
2019-07-29 22:45:47 +00:00
while getopts "uaitc:l:dro:" option
do
2019-07-29 22:45:47 +00:00
case "$option"
in
u) UPX=true;;
2019-01-10 17:44:52 +00:00
i) IOS=true;;
a) ANDROID=true;;
t) TABLES=true;;
c) GCFLAGS="$GCFLAGS $OPTARG";;
l) LDFLAGS="$LDFLAGS $OPTARG";;
2019-07-29 23:03:17 +00:00
d) ARGS="$ARGS -tags debug" DEBUG=true;;
2019-07-29 22:45:47 +00:00
r) ARGS="$ARGS -race";;
o) ARGS="$ARGS -o $OPTARG";;
esac
done
2019-07-29 23:03:17 +00:00
if [ -z $TABLES ] && [ -z $DEBUG ]; then
LDFLAGS="$LDFLAGS -s -w"
fi
2019-01-10 17:44:52 +00:00
if [ $IOS ]; then
echo "Building framework for iOS"
gomobile bind -target ios -tags mobile -ldflags="$LDFLAGS $STRIP" -gcflags="$GCFLAGS" \
github.com/yggdrasil-network/yggdrasil-go/src/yggdrasil \
2019-07-28 12:51:22 +00:00
github.com/yggdrasil-network/yggdrasil-go/src/config \
github.com/yggdrasil-network/yggdrasil-extras/src/mobile
2019-01-10 17:44:52 +00:00
elif [ $ANDROID ]; then
echo "Building aar for Android"
gomobile bind -target android -tags mobile -ldflags="$LDFLAGS $STRIP" -gcflags="$GCFLAGS" \
github.com/yggdrasil-network/yggdrasil-go/src/yggdrasil \
2019-07-28 12:51:22 +00:00
github.com/yggdrasil-network/yggdrasil-go/src/config \
github.com/yggdrasil-network/yggdrasil-extras/src/mobile
2019-01-10 17:44:52 +00:00
else
for CMD in `ls cmd/` ; do
echo "Building: $CMD"
2019-07-29 22:45:47 +00:00
go build $ARGS -ldflags="$LDFLAGS" -gcflags="$GCFLAGS" ./cmd/$CMD
2019-01-10 17:44:52 +00:00
if [ $UPX ]; then
upx --brute $CMD
fi
done
fi