2017-02-13 14:01:54 -05:00
|
|
|
#!/usr/bin/env bash
|
2016-02-19 17:42:51 -05:00
|
|
|
set -e
|
|
|
|
|
2017-07-05 15:38:23 -04:00
|
|
|
# a helper to provide ".exe" when it's appropriate
|
|
|
|
binary_extension() {
|
|
|
|
if [ "$(go env GOOS)" = 'windows' ]; then
|
|
|
|
echo -n '.exe'
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-06-20 16:55:40 -04:00
|
|
|
GO_PACKAGE='github.com/docker/docker/cmd/dockerd'
|
|
|
|
BINARY_SHORT_NAME='dockerd'
|
2016-02-19 17:42:51 -05:00
|
|
|
BINARY_NAME="$BINARY_SHORT_NAME-$VERSION"
|
|
|
|
BINARY_EXTENSION="$(binary_extension)"
|
|
|
|
BINARY_FULLNAME="$BINARY_NAME$BINARY_EXTENSION"
|
|
|
|
|
|
|
|
source "${MAKEDIR}/.go-autogen"
|
|
|
|
|
2017-07-05 15:38:23 -04:00
|
|
|
hash_files() {
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
f="$1"
|
|
|
|
shift
|
|
|
|
dir="$(dirname "$f")"
|
|
|
|
base="$(basename "$f")"
|
|
|
|
for hashAlgo in md5 sha256; do
|
|
|
|
if command -v "${hashAlgo}sum" &> /dev/null; then
|
|
|
|
(
|
|
|
|
# subshell and cd so that we get output files like:
|
|
|
|
# $HASH docker-$VERSION
|
|
|
|
# instead of:
|
|
|
|
# $HASH /go/src/github.com/.../$VERSION/binary/docker-$VERSION
|
|
|
|
cd "$dir"
|
|
|
|
"${hashAlgo}sum" "$base" > "$base.$hashAlgo"
|
|
|
|
)
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2016-02-19 17:42:51 -05:00
|
|
|
(
|
|
|
|
export GOGC=${DOCKER_BUILD_GOGC:-1000}
|
|
|
|
|
|
|
|
if [ "$(go env GOOS)/$(go env GOARCH)" != "$(go env GOHOSTOS)/$(go env GOHOSTARCH)" ]; then
|
|
|
|
# must be cross-compiling!
|
|
|
|
case "$(go env GOOS)/$(go env GOARCH)" in
|
|
|
|
windows/amd64)
|
|
|
|
export CC=x86_64-w64-mingw32-gcc
|
|
|
|
export CGO_ENABLED=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2017-08-02 09:07:36 -04:00
|
|
|
# -buildmode=pie is not supported on Windows.
|
|
|
|
if [ "$(go env GOOS)" != "windows" ]; then
|
|
|
|
BUILDFLAGS+=( "-buildmode=pie" )
|
|
|
|
fi
|
|
|
|
|
2016-02-19 17:42:51 -05:00
|
|
|
echo "Building: $DEST/$BINARY_FULLNAME"
|
|
|
|
go build \
|
|
|
|
-o "$DEST/$BINARY_FULLNAME" \
|
|
|
|
"${BUILDFLAGS[@]}" \
|
|
|
|
-ldflags "
|
|
|
|
$LDFLAGS
|
|
|
|
$LDFLAGS_STATIC_DOCKER
|
2017-11-15 16:54:56 -05:00
|
|
|
$DOCKER_LDFLAGS
|
2016-02-19 17:42:51 -05:00
|
|
|
" \
|
2016-10-31 14:22:28 -04:00
|
|
|
$GO_PACKAGE
|
2016-02-19 17:42:51 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
echo "Created binary: $DEST/$BINARY_FULLNAME"
|
|
|
|
ln -sf "$BINARY_FULLNAME" "$DEST/$BINARY_SHORT_NAME$BINARY_EXTENSION"
|
|
|
|
|
|
|
|
hash_files "$DEST/$BINARY_FULLNAME"
|