2021-03-03 02:03:02 -05:00
|
|
|
#!/usr/bin/env sh
|
2017-05-11 18:52:17 -04:00
|
|
|
#
|
|
|
|
# Build a static binary for the host OS/ARCH
|
|
|
|
#
|
2017-05-09 12:38:23 -04:00
|
|
|
|
2021-03-03 02:03:02 -05:00
|
|
|
set -eu
|
2017-05-09 12:38:23 -04:00
|
|
|
|
2021-03-03 02:03:02 -05:00
|
|
|
: "${CGO_ENABLED=}"
|
|
|
|
: "${GO_LINKMODE=static}"
|
|
|
|
: "${GO_BUILDMODE=}"
|
|
|
|
: "${GO_BUILDTAGS=}"
|
|
|
|
: "${GO_STRIP=}"
|
2017-05-11 18:52:17 -04:00
|
|
|
|
2021-03-03 02:03:02 -05:00
|
|
|
. ./scripts/build/.variables
|
2017-05-11 18:52:17 -04:00
|
|
|
|
2021-03-03 02:03:02 -05:00
|
|
|
if [ -z "$CGO_ENABLED" ]; then
|
|
|
|
case "$(go env GOOS)" in
|
|
|
|
linux)
|
|
|
|
case "$(go env GOARCH)" in
|
|
|
|
amd64|arm64|arm|s390x)
|
|
|
|
CGO_ENABLED=1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
CGO_ENABLED=0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
darwin|windows)
|
|
|
|
CGO_ENABLED=1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
CGO_ENABLED=0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
export CGO_ENABLED
|
|
|
|
if [ "$CGO_ENABLED" = "1" ] && [ "$(go env GOOS)" != "windows" ]; then
|
|
|
|
case "$(go env GOARCH)" in
|
|
|
|
mips*|ppc64)
|
|
|
|
# pie build mode is not supported on mips architectures
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
GO_BUILDMODE="-buildmode=pie"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
GO_BUILDTAGS="$GO_BUILDTAGS pkcs11"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$CGO_ENABLED" = "1" ] && [ "$GO_LINKMODE" = "static" ] && [ "$(go env GOOS)" = "linux" ]; then
|
|
|
|
LDFLAGS="$LDFLAGS -extldflags -static"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$GO_STRIP" ]; then
|
|
|
|
LDFLAGS="$LDFLAGS -s -w"
|
|
|
|
fi
|
|
|
|
|
2021-03-05 03:56:55 -05:00
|
|
|
if [ "$(go env GOOS)" = "windows" ]; then
|
2021-04-13 14:23:52 -04:00
|
|
|
: "${WINDRES=$($(go env CC) --print-prog-name=windres)}"
|
|
|
|
if [ -z "$WINDRES" ]; then
|
|
|
|
>&2 echo "Empty WINDRES detected, skipping manifesting binary"
|
|
|
|
else
|
|
|
|
# Generate a Windows file version of the form major,minor,patch,build
|
|
|
|
VERSION_QUAD=$(printf "%s" "$VERSION" | sed -re 's/^([0-9.]*).*$/\1/' | tr . , | sed -re 's/,$//' | sed -re 's/^[0-9]+$/\0,0/' | sed -re 's/^[0-9]+,[0-9]+$/\0,0/' | sed -re 's/^[0-9]+,[0-9]+,[0-9]+$/\0,0/')
|
2021-03-05 03:56:55 -05:00
|
|
|
|
2021-04-13 14:23:52 -04:00
|
|
|
set --
|
|
|
|
[ -n "$VERSION" ] && set -- "$@" -D "DOCKER_VERSION=\"$VERSION\""
|
|
|
|
[ -n "$VERSION_QUAD" ] && set -- "$@" -D "DOCKER_VERSION_QUAD=$VERSION_QUAD"
|
|
|
|
[ -n "$GITCOMMIT" ] && set -- "$@" -D "DOCKER_COMMIT=\"$GITCOMMIT\""
|
2021-03-05 03:56:55 -05:00
|
|
|
|
2021-04-13 14:23:52 -04:00
|
|
|
target="$(dirname "$0")/../../cli/winresources/rsrc_$(go env GOARCH).syso"
|
|
|
|
mkdir -p "$(dirname "${target}")"
|
|
|
|
"$WINDRES" -i "$(dirname "$0")/../winresources/docker.rc" -o "$target" --use-temp-file "$@"
|
|
|
|
echo "package winresources" > "$(dirname "${target}")/stub_windows.go"
|
|
|
|
fi
|
2021-03-05 03:56:55 -05:00
|
|
|
fi
|
|
|
|
|
2021-03-03 02:03:02 -05:00
|
|
|
echo "Building $GO_LINKMODE $(basename "${TARGET}")"
|
|
|
|
|
|
|
|
export GO111MODULE=auto
|
|
|
|
|
|
|
|
go build -o "${TARGET}" -tags "${GO_BUILDTAGS}" --ldflags "${LDFLAGS}" ${GO_BUILDMODE} "${SOURCE}"
|
|
|
|
|
|
|
|
ln -sf "$(basename "${TARGET}")" "$(dirname "${TARGET}")/docker"
|