Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build.sh to work on FreeBSD #587

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,26 @@
#!/bin/sh

CGO_EXTRA_CPPFLAGS=""
CGO_EXTRA_LDFLAGS=""
if [ `uname` = "FreeBSD" ] ; then
CGO_EXTRA_CPPFLAGS="-I/usr/local/include"
CGO_EXTRA_LDFLAGS="-L/usr/local/lib"
fi

if [ -n "${CGO_EXTRA_CPPFLAGS}" ] ; then
if [ -z "${CGO_CPPFLAGS}" ] ; then
export CGO_CPPFLAGS="${CGO_EXTRA_CPPFLAGS}"
else
export CGO_CPPFLAGS="${CGO_CPPFLAGS} ${CGO_EXTRA_CPPFLAGS}"
fi
fi

if [ -n "${CGO_EXTRA_LDFLAGS}" ] ; then
if [ -z "${CGO_LDFLAGS}" ] ; then
export CGO_LDFLAGS="${CGO_EXTRA_LDFLAGS}"
else
export CGO_LDFLAGS="${CGO_LDFLAGS} ${CGO_EXTRA_LDFLAGS}"
fi
fi

go build -ldflags "-X main.Tag=$(git describe --exact-match --tags 2>/dev/null) -X main.Commit=$(git rev-parse HEAD) -X 'main.BuildTime=`date '+%b %_d %Y, %H:%M:%S'`'" "$@"