mirror of
https://github.com/rancher/os.git
synced 2025-07-03 10:06:13 +00:00
Merge pull request #806 from imikushin/strip-bin
Use the correct strip binary
This commit is contained in:
commit
99eaf61978
@ -13,7 +13,7 @@ strip_bin=$(which strip)
|
||||
if [ "${TOOLCHAIN}" != "" ]; then
|
||||
export CC=/usr/bin/${TOOLCHAIN}-gcc
|
||||
export CGO_ENABLED=1
|
||||
strip_bin=/usr/${TOOLCHAIN}/bin/strip
|
||||
strip_bin=/usr/bin/${TOOLCHAIN}-strip
|
||||
fi
|
||||
GOARCH=${ARCH} go build -tags netgo -installsuffix netgo -ldflags "-X github.com/rancher/os/config.VERSION=${VERSION} -linkmode external -extldflags -static" -o ${ros}
|
||||
${strip_bin} --strip-all ${ros}
|
||||
|
7
scripts/shell.sh
Executable file
7
scripts/shell.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
cd $(dirname $0)/..
|
||||
. ./scripts/dapper-common
|
||||
|
||||
exec dapper -s
|
Loading…
Reference in New Issue
Block a user