scripts: Ensure OSX build works on older versions. Fixes #147.

This commit is contained in:
Armon Dadgar 2014-06-11 10:07:38 -07:00
parent 938371ee40
commit c0bda92b34
1 changed files with 6 additions and 0 deletions

View File

@ -31,6 +31,12 @@ if [ "$(go env GOOS)" = "freebsd" ]; then
export CGO_LDFLAGS="$CGO_LDFLAGS -extld clang" # Workaround for https://code.google.com/p/go/issues/detail?id=6845
fi
# On OSX, we need to use an older target to ensure binaries are
# compatible with older linkers
if [ "$(go env GOOS)" = "darwin" ]; then
export MACOSX_DEPLOYMENT_TARGET=10.6
fi
# Install dependencies
echo "--> Installing dependencies to speed up builds..."
go get \