Merge pull request #9262 from rhatdan/debug
Allow developers to build docker with debuginfo included
This commit is contained in:
commit
93be7c0e52
1 changed files with 5 additions and 1 deletions
|
@ -96,10 +96,14 @@ fi
|
|||
|
||||
# Use these flags when compiling the tests and final binary
|
||||
LDFLAGS='
|
||||
-w
|
||||
-X '$DOCKER_PKG'/dockerversion.GITCOMMIT "'$GITCOMMIT'"
|
||||
-X '$DOCKER_PKG'/dockerversion.VERSION "'$VERSION'"
|
||||
'
|
||||
|
||||
if [ -z "$DEBUG" ]; then
|
||||
LDFLAGS="-w $LDFLAGS"
|
||||
fi
|
||||
|
||||
LDFLAGS_STATIC='-linkmode external'
|
||||
# Cgo -H windows is incompatible with -linkmode external.
|
||||
if [ "$(go env GOOS)" == 'windows' ]; then
|
||||
|
|
Loading…
Add table
Reference in a new issue