File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -219,11 +219,17 @@ os::build::internal::build_binaries() {
219
219
local platform_gotags_envvar=OS_GOFLAGS_TAGS_$( echo ${platform} | tr ' [:lower:]/' ' [:upper:]_' )
220
220
local platform_gotags_test_envvar=OS_GOFLAGS_TAGS_TEST_$( echo ${platform} | tr ' [:lower:]/' ' [:upper:]_' )
221
221
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
+
222
228
if [[ ${# nonstatics[@]} -gt 0 ]]; then
223
229
GOOS=${platform%/* } GOARCH=${platform##*/ } go install \
224
230
-pkgdir " ${OS_OUTPUT_PKGDIR} /${platform} " \
225
231
-tags " ${OS_GOFLAGS_TAGS-} ${! platform_gotags_envvar:- } " \
226
- -ldflags " ${version_ldflags } " \
232
+ -ldflags= " ${local_ldflags } " \
227
233
" ${goflags[@]: +${goflags[@]} } " \
228
234
" ${nonstatics[@]} "
229
235
@@ -240,7 +246,7 @@ os::build::internal::build_binaries() {
240
246
CGO_ENABLED=" ${OS_TEST_CGO_ENABLED:- } " GOOS=${platform%/* } GOARCH=${platform##*/ } go test \
241
247
-pkgdir " ${OS_OUTPUT_PKGDIR} /${platform} " \
242
248
-tags " ${OS_GOFLAGS_TAGS-} ${! platform_gotags_test_envvar:- } " \
243
- -ldflags " ${version_ldflags } " \
249
+ -ldflags " ${local_ldflags } " \
244
250
-i -c -o " ${outfile} " \
245
251
" ${goflags[@]: +${goflags[@]} } " \
246
252
" $( dirname ${test} ) "
You can’t perform that action at this time.
0 commit comments