Skip to content

Commit 031cbe4

Browse files
Work around an OSX xcode ld error temporarily
Can remove once upstream fixes
1 parent 1719327 commit 031cbe4

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

hack/common.sh

+8-2
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,17 @@ os::build::internal::build_binaries() {
219219
local platform_gotags_envvar=OS_GOFLAGS_TAGS_$(echo ${platform} | tr '[:lower:]/' '[:upper:]_')
220220
local platform_gotags_test_envvar=OS_GOFLAGS_TAGS_TEST_$(echo ${platform} | tr '[:lower:]/' '[:upper:]_')
221221

222+
# work around https://github.com/golang/go/issues/11887
223+
local local_ldflags="${version_ldflags}"
224+
if [[ "${platform}" == "darwin/amd64" ]]; then
225+
local_ldflags+=" -s"
226+
fi
227+
222228
if [[ ${#nonstatics[@]} -gt 0 ]]; then
223229
GOOS=${platform%/*} GOARCH=${platform##*/} go install \
224230
-pkgdir "${OS_OUTPUT_PKGDIR}/${platform}" \
225231
-tags "${OS_GOFLAGS_TAGS-} ${!platform_gotags_envvar:-}" \
226-
-ldflags "${version_ldflags}" \
232+
-ldflags="${local_ldflags}" \
227233
"${goflags[@]:+${goflags[@]}}" \
228234
"${nonstatics[@]}"
229235

@@ -240,7 +246,7 @@ os::build::internal::build_binaries() {
240246
CGO_ENABLED="${OS_TEST_CGO_ENABLED:-}" GOOS=${platform%/*} GOARCH=${platform##*/} go test \
241247
-pkgdir "${OS_OUTPUT_PKGDIR}/${platform}" \
242248
-tags "${OS_GOFLAGS_TAGS-} ${!platform_gotags_test_envvar:-}" \
243-
-ldflags "${version_ldflags}" \
249+
-ldflags "${local_ldflags}" \
244250
-i -c -o "${outfile}" \
245251
"${goflags[@]:+${goflags[@]}}" \
246252
"$(dirname ${test})"

0 commit comments

Comments
 (0)