549d734da9
Add support for vendoring in containers/storage and ran dep ensure Need to get default storage for containers to include and default to overlay2. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
27 lines
614 B
Bash
27 lines
614 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
BINARY_NAME="oci-storage-$VERSION"
|
|
BINARY_EXTENSION="$(binary_extension)"
|
|
BINARY_FULLNAME="$BINARY_NAME$BINARY_EXTENSION"
|
|
|
|
source "${MAKEDIR}/.go-autogen"
|
|
|
|
export GCCGO=${SCRIPTDIR}/../vagrant/gccgo-wrapper.sh
|
|
# gccgo require explicit flag -pthread to allow goroutines to work.
|
|
go build -compiler=gccgo \
|
|
-o "$DEST/$BINARY_FULLNAME" \
|
|
"${BUILDFLAGS[@]}" \
|
|
-gccgoflags "
|
|
-g
|
|
-Wl,--no-export-dynamic
|
|
-ldl
|
|
-pthread
|
|
" \
|
|
./cmd/oci-storage
|
|
|
|
echo "Created binary: $DEST/$BINARY_FULLNAME"
|
|
ln -sf "$BINARY_FULLNAME" "$DEST/oci-storage$BINARY_EXTENSION"
|
|
|
|
hash_files "$DEST/$BINARY_FULLNAME"
|
|
|