From c480006d732539cd9c994c634d8833c7d406c019 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Mon, 10 Nov 2025 10:42:59 +0100 Subject: [PATCH] Apply suggestion from @gballet --- build/ci.go | 1 + 1 file changed, 1 insertion(+) diff --git a/build/ci.go b/build/ci.go index b2749a79cf..e589cd2b40 100644 --- a/build/ci.go +++ b/build/ci.go @@ -343,6 +343,7 @@ func buildFlags(env build.Environment, staticLinking bool, buildTags []string) ( } ld = append(ld, "-extldflags", "'"+strings.Join(extld, " ")+"'") } + // TODO(gballet): revisit after the input api has been defined if runtime.GOARCH == "wasm" { ld = append(ld, "-gcflags=all=-d=softfloat") }