blob: b4e989154c510528ed5f6a151c44bc8eb967c28f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/build/ci.go b/build/ci.go
index 59c948a..752f440 100644
--- a/build/ci.go
+++ b/build/ci.go
@@ -322,7 +322,7 @@ func buildFlags(env build.Environment, staticLinking bool, buildTags []string) (
// regarding the options --build-id=none and --strip-all. It is needed for
// reproducible builds; removing references to temporary files in C-land, and
// making build-id reproducibly absent.
- extld := []string{"-Wl,-z,stack-size=0x800000,--build-id=none,--strip-all"}
+ extld := []string{"-Wl,-z,stack-size=0x800000,--build-id=none"}
if staticLinking {
extld = append(extld, "-static")
// Under static linking, use of certain glibc features must be
|