mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From 7e07ff7120f2c5ed1030ed603f9bd2714c709ed6 Mon Sep 17 00:00:00 2001
|
|
From: Jan Chaloupka <jchaloup@redhat.com>
|
|
Date: Mon, 31 Oct 2016 09:02:37 +0100
|
|
Subject: [PATCH] build with debug info
|
|
|
|
---
|
|
hack/lib/golang.sh | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh
|
|
index ccd6c0a..c29bf85 100755
|
|
--- a/hack/lib/golang.sh
|
|
+++ b/hack/lib/golang.sh
|
|
@@ -484,7 +484,7 @@ kube::golang::build_binaries_for_platform() {
|
|
CGO_ENABLED=0 go build -o "${outfile}" \
|
|
"${goflags[@]:+${goflags[@]}}" \
|
|
-gcflags "${gogcflags}" \
|
|
- -ldflags "${goldflags}" \
|
|
+ -ldflags "-B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \n') ${goldflags}" \
|
|
"${binary}"
|
|
kube::log::progress "*"
|
|
done
|
|
@@ -493,7 +493,7 @@ kube::golang::build_binaries_for_platform() {
|
|
go build -o "${outfile}" \
|
|
"${goflags[@]:+${goflags[@]}}" \
|
|
-gcflags "${gogcflags}" \
|
|
- -ldflags "${goldflags}" \
|
|
+ -ldflags "-B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \n') ${goldflags}" \
|
|
"${binary}"
|
|
kube::log::progress "*"
|
|
done
|
|
--
|
|
1.9.3
|
|
|