fix freebsd build

This commit is contained in:
myfreeweb 2014-05-31 00:05:06 +04:00
parent 7b4c7f3f63
commit f5df562e2c
1 changed files with 9 additions and 2 deletions

View File

@ -26,14 +26,21 @@ if [ "$(go env GOOS)" = "windows" ]; then
GOPATHSINGLE=${GOPATH%%;*} GOPATHSINGLE=${GOPATH%%;*}
fi fi
if [ "$(go env GOOS)" = "freebsd" ]; then
export CC="clang"
export CGO_LDFLAGS="$CGO_LDFLAGS -extld clang" # Workaround for https://code.google.com/p/go/issues/detail?id=6845
fi
# Install dependencies # Install dependencies
echo "--> Installing dependencies to speed up builds..." echo "--> Installing dependencies to speed up builds..."
go get ./... go get \
-ldflags "${CGO_LDFLAGS}" \
./...
# Build! # Build!
echo "--> Building..." echo "--> Building..."
go build \ go build \
-ldflags "-X main.GitCommit ${GIT_COMMIT}${GIT_DIRTY}" \ -ldflags "${CGO_LDFLAGS} -X main.GitCommit ${GIT_COMMIT}${GIT_DIRTY}" \
-v \ -v \
-o bin/consul${EXTENSION} -o bin/consul${EXTENSION}
cp bin/consul${EXTENSION} ${GOPATHSINGLE}/bin cp bin/consul${EXTENSION} ${GOPATHSINGLE}/bin