mirror of
				https://github.com/yggdrasil-network/yggdrasil-go.git
				synced 2025-11-04 11:15:07 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			790 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			790 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
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"
 | 
						|
 | 
						|
while getopts "udtc:l:" option
 | 
						|
do
 | 
						|
  case "${option}"
 | 
						|
  in
 | 
						|
  u) UPX=true;;
 | 
						|
  d) DEBUG=true;;
 | 
						|
  t) TABLES=true;;
 | 
						|
  c) GCFLAGS="$GCFLAGS $OPTARG";;
 | 
						|
  l) LDFLAGS="$LDFLAGS $OPTARG";;
 | 
						|
  esac
 | 
						|
done
 | 
						|
 | 
						|
if [ -z $TABLES ]; then
 | 
						|
  STRIP="-s -w"
 | 
						|
fi
 | 
						|
 | 
						|
for CMD in `ls cmd/` ; do
 | 
						|
  echo "Building: $CMD"
 | 
						|
 | 
						|
  if [ $DEBUG ]; then
 | 
						|
    go build -ldflags="$LDFLAGS" -gcflags="$GCFLAGS" -tags debug -v ./cmd/$CMD
 | 
						|
  else
 | 
						|
    go build -ldflags="$LDFLAGS $STRIP" -gcflags="$GCFLAGS" -v ./cmd/$CMD
 | 
						|
  fi
 | 
						|
  if [ $UPX ]; then
 | 
						|
    upx --brute $CMD
 | 
						|
  fi
 | 
						|
done
 |