Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd/go,cmd/link: "go build" doesn't rebuild the binary after build flags changed #63760

Closed
sandy-lcq opened this issue Oct 27, 2023 · 6 comments
Labels
compiler/runtime Issues related to the Go compiler and/or runtime. GoCommand cmd/go WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided.

Comments

@sandy-lcq
Copy link

I am doing cross compile with go, version 1.20.6.

Reproduce steps:

  1. go build -p 48 -v -ldflags="-r /usr/lib/go/pkg/linux_arm64_dynlink -I /lib64/ld-linux-aarch64.so.1 ..." ...
    this command will generate an binary under builds/plugins/bin/brigde
  2. Don't delete builds/plugins/bin/brigde, Don't change any code or others, only change dynamic link path in ldflags, dynamic linker changed from " /lib64/ld-linux-aarch64.so.1" to " /usr/lib/ld-linux-aarch64.so.1".
    Run go build -p 48 -v -ldflags="-r /usr/lib/go/pkg/linux_arm64_dynlink -I /usr/lib/ld-linux-aarch64.so.1 ..." ...
  3. readelf -a builds/plugins/bin/brigde | grep interpre
    we can see the binary brigde still have the old dynamic linker, this will make bridge cannot run on target.

It seems like that "go build" only checks if the cached packagefile is changed, since we don't change any code in step 2, cached packagefile not changed, and bridge is still there, so it did not relink with the new dynamic linker. I think it should relink.

@bcmills bcmills changed the title "go build" don't rebuild the binary after build flags changed cmd/go,cmd/link: "go build" doesn't rebuild the binary after build flags changed Oct 27, 2023
@gopherbot gopherbot added the compiler/runtime Issues related to the Go compiler and/or runtime. label Oct 27, 2023
@bcmills
Copy link
Contributor

bcmills commented Oct 27, 2023

Please fill out the complete issue template, including the requested output from go version and go env and the complete command lines used to build the binaries.

@bcmills bcmills added WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided. GoCommand cmd/go labels Oct 27, 2023
@sandy-lcq
Copy link
Author

sandy-lcq commented Oct 30, 2023

Hi,

$aarch64-wrs-linux-go version
go version go1.20.6 linux/amd64

$aarch64-wrs-linux-go env
see in env.log
env.log

GO111MODULE=''
GOARCH='arm64'
GOBIN=''
GOCACHE='/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build/.cache'
GOENV=''
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='amd64'
GOHOSTOS='linux'
GOINSECURE=''
GOMODCACHE='/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build/pkg/mod'
GONOPROXY=''
GONOSUMDB=''
GOOS='linux'
GOPATH='/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build'
GOPRIVATE=''
GOPROXY='https://proxy.golang.org,direct'
GOROOT='/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot/usr/lib/go'
GOSUMDB='sum.golang.org'
GOTMPDIR='/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build-tmp'
GOTOOLDIR='/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot-native/usr/lib/aarch64-wrs-linux/go/pkg/tool/linux_amd64'
GOVCS=''
GOVERSION='go1.20.6'
GCCGO='gccgo'
AR='aarch64-wrs-linux-gcc-ar'
CC='aarch64-wrs-linux-gcc  -mcpu=cortex-a72 -march=armv8-a+crc -mbranch-protection=standard -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot'
CXX='aarch64-wrs-linux-g++  -mcpu=cortex-a72 -march=armv8-a+crc -mbranch-protection=standard -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot'
CGO_ENABLED='1'
GOMOD='/dev/null'
GOWORK=''
CGO_CFLAGS='-O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fmacro-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot= -fmacro-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot= -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot-native='
CGO_CPPFLAGS=''
CGO_CXXFLAGS='-O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fmacro-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot= -fmacro-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot= -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot-native= -fvisibility-inlines-hidden'
CGO_FFLAGS='-O2 -g'
CGO_LDFLAGS='-Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -fmacro-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fmacro-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot= -fmacro-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot= -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot-native= -Wl,-z,relro,-z,now'
PKG_CONFIG='pkg-config'
GOGCCFLAGS='-mbranch-protection=standard -fstack-protector-strong -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot -I . -fPIC -pthread -Wl,--no-gc-sections -fmessage-length=0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build-tmp/go-build748140811=/tmp/go-build -gno-record-gcc-switches'


HASH[gccCompilerID]
HASH[gccCompilerID]: "go1.20.6"
HASH[gccCompilerID]: "gccCompilerID \"/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot-native/usr/bin/aarch64-wrs-linux/aarch64-wrs-linux-gcc\""
HASH[gccCompilerID]: 57aead5f4bce466be06cbecef3a82f90f90c34fe4ee132cfe8e49bedcddba3ce
HASH[gccCompilerID]: "gccCompilerID [\"/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot-native/usr/bin/aarch64-wrs-linux/aarch64-wrs-linux-gcc\" \"\"] \"gcc version 12.3.0 (GCC) \"\n"
HASH[gccCompilerID]: 6d889135b5e2cfd1d136ca75ba2be2febb7e11340f87d0c90f0eb0cc8a74e7ee
HASH subkey 6d889135b5e2cfd1d136ca75ba2be2febb7e11340f87d0c90f0eb0cc8a74e7ee "gccSupportsFlag -fno-caret-diagnostics" = 1cd84bb014fed24a15d1afe3556ce47c195237c1cce6ebde950970dcfbd7c022
HASH subkey 6d889135b5e2cfd1d136ca75ba2be2febb7e11340f87d0c90f0eb0cc8a74e7ee "gccSupportsFlag -Qunused-arguments" = ec121adb29c2b5bd57c80734f689279cf86bd40ecfc5c16c3dc5a86ed4827f0b
HASH subkey 6d889135b5e2cfd1d136ca75ba2be2febb7e11340f87d0c90f0eb0cc8a74e7ee "gccSupportsFlag -Wl,--no-gc-sections" = 18eee5bb7f7c4b007541244a64f2472c82b2426346ad14c166ddce375052bf5a
HASH subkey 6d889135b5e2cfd1d136ca75ba2be2febb7e11340f87d0c90f0eb0cc8a74e7ee "gccSupportsFlag -fdebug-prefix-map=a=b" = 252424c6ec759b4f3ec6f52746eff2567d78d26f897bbeda320443acc980c9f8
HASH subkey 6d889135b5e2cfd1d136ca75ba2be2febb7e11340f87d0c90f0eb0cc8a74e7ee "gccSupportsFlag -gno-record-gcc-switches" = 6d0743d0adde977de6102ea7e386c603fd1bf3a3867d73c19ffee05594653e

$Complete build command line

aarch64-wrs-linux-go build -p 48 -v -ldflags="-r /usr/lib/go/pkg/linux_arm64_dynlink -I /usr/lib/ld-linux-aarch64.so.1 -extldflags ' -mcpu=cortex-a72 -march=armv8-a+crc -mbranch-protection=standard -fstack-protector-strong -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot -Wl,-rpath-link=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot/usr/lib/go/pkg/linux_arm64_dynlink -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -fmacro-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fmacro-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0 -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot= -fmacro-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot= -fdebug-prefix-map=/build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot-native= -Wl,-z,relro,-z,now'" -trimpath -buildmode=pie -o /build/bcm/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build/plugins/bin/$plugin github.com/containernetworking/plugins/bridge

NOTE:

  1. The bold part in above cmd is the only changed part in step 2.
  2. aarch64-wrs-linux-go is a wrapper of go.

@bcmills bcmills removed the WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided. label Jan 25, 2024
@bcmills
Copy link
Contributor

bcmills commented Jan 25, 2024

The linker flags are supposed to be recorded in the cache key here:
https://cs.opensource.google/go/go/+/master:src/cmd/go/internal/work/exec.go;l=1393-1396;drc=b3acaa8230e95c232a6f5c30eb7619a0c859ab16

@sandy-lcq, can you set GODEBUG=gocachehash=1 in your environment during both builds and check the link and linkflags lines in the resulting output?

@bcmills bcmills added the WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided. label Jan 25, 2024
@sandy-lcq
Copy link
Author

sandy-lcq commented Jan 29, 2024

Hi, Here is reproduce steps and corresponding log:

  1. $aarch64-wrs-linux-go env
    env.log
  2. $env | grep GO
    goenv.log
  3. Clean build with dynamic linker /lib64/ld-linux-aarch64.so.1
$rm /build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build/plugins/bin/bridge
$aarch64-wrs-linux-go build -p 48 -v -ldflags="-r /usr/lib64/go/pkg/linux_arm64_dynlink  -I /lib64/ld-linux-aarch64.so.1 -extldflags ' -mcpu=cortex-a72 -march=armv8-a+crc -mbranch-protection=standard -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot -Wl,-rpath-link=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot/usr/lib64/go/pkg/linux_arm64_dynlink -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -fmacro-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0  -fdebug-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0  -fmacro-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0  -fdebug-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0  -fdebug-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot=  -fmacro-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot=  -fdebug-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot-native=  -Wl,-z,relro,-z,now'" -trimpath -buildmode=pie -o /build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build/plugins/bin/bridge github.com/containernetworking/plugins/plugins/main/bridge
$ readelf -a bridge | grep interpre
[Requesting program interpreter: /lib64/ld-linux-aarch64.so.1]

first_build.log

  1. Rebuild with /usr/lib64/ld-linux-aarch64.so.1
 $aarch64-wrs-linux-go build -p 48 -v -ldflags="-r /usr/lib64/go/pkg/linux_arm64_dynlink  -I /usr/lib64/ld-linux-aarch64.so.1 -extldflags ' -mcpu=cortex-a72 -march=armv8-a+crc -mbranch-protection=standard -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot -Wl,-rpath-link=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot/usr/lib64/go/pkg/linux_arm64_dynlink -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -fmacro-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0  -fdebug-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0  -fmacro-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0  -fdebug-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0  -fdebug-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot=  -fmacro-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot=  -fdebug-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot-native=  -Wl,-z,relro,-z,now'" -trimpath -buildmode=pie -o /build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build/plugins/bin/bridge github.com/containernetworking/plugins/plugins/main/bridge
$ readelf -a bridge | grep interpre
 [Requesting program interpreter: /lib64/ld-linux-aarch64.so.1]

second_build.log

  1. Clean build with /usr/lib64/ld-linux-aarch64.so.1
$rm /build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build/plugins/bin/bridge
$aarch64-wrs-linux-go build -p 48 -v -ldflags="-r /usr/lib64/go/pkg/linux_arm64_dynlink  -I /usr/lib64/ld-linux-aarch64.so.1  -extldflags ' -mcpu=cortex-a72 -march=armv8-a+crc -mbranch-protection=standard -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot -Wl,-rpath-link=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot/usr/lib64/go/pkg/linux_arm64_dynlink -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -fmacro-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0  -fdebug-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/cni-v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0  -fmacro-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0  -fdebug-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build=/usr/src/debug/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0  -fdebug-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot=  -fmacro-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot=  -fdebug-prefix-map=/build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/recipe-sysroot-native=  -Wl,-z,relro,-z,now'" -trimpath -buildmode=pie -o /build/tmp-glibc/work/cortexa72-wrs-linux/cni/v1.1.2+gitf024754da8d49bdac31d99d04355ddfe0340f8eb-r0/build/plugins/bin/bridge github.com/containernetworking/plugins/plugins/main/bridge
$ readelf -a bridge | grep interpre
[Requesting program interpreter: /usr/lib64/ld-linux-aarch64.so.1]

third_build.log

NOTE:

  1. The only change in command "aarch64-wrs-linux-go build xxx" in step3/4/5 is bold part thesame as previous discussion.
  2. I don't find linkflags in the output, maybe becasue my toolchainName matched gccgo in below line:
    https://cs.opensource.google/go/go/+/master:src/cmd/go/internal/work/exec.go;drc=b3acaa8230e95c232a6f5c30eb7619a0c859ab16;l=1420
    and in second_build.log, There is no output like below, but other 2 logs have it.
    HASH subkey 5914338cba0fbdac08ce1ac733694989411fa0d387485b4d0369503a6cbb036a "link-stdout" = 04ebc72aa9e5cbcf71c575d9225139a74c12bde9f96f7d97e57123036b739af

@bcmills bcmills removed the WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided. label Jan 29, 2024
@bcmills
Copy link
Contributor

bcmills commented Jan 29, 2024

Huh. I see the link\n lines from here in the build logs.

The output from b.printLinkerConfig should be in between the trimpath link and the first packagefile line in the logs, but it is missing.

b.printLinkerConfig unconditionally writes a link line with additional linker details:

And in the default case, it calls base.Fatalf.

So the only possibilities I can see are:

  1. Your build of the go toolchain has been modified with a third case that does not print anything, or
  2. the compiler is somehow miscompiling printLinkerConfig so that it is not taking any of the defined branches in the switch.

@sandy-lcq, can you confirm that the source code used to build your go command exactly matches the contents tagged at go1.20.6 in https://go.googlesource.com/go?

@bcmills bcmills added the WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided. label Jan 29, 2024
@sandy-lcq
Copy link
Author

halstead pushed a commit to yoctoproject/poky that referenced this issue Feb 29, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 7cd3a9019a38cc38496955ddffad886afe68e837)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to openembedded/openembedded-core that referenced this issue Feb 29, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Feb 29, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 7cd3a9019a38cc38496955ddffad886afe68e837)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Feb 29, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 7cd3a9019a38cc38496955ddffad886afe68e837)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Feb 29, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 7cd3a9019a38cc38496955ddffad886afe68e837)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 1, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 7cd3a9019a38cc38496955ddffad886afe68e837)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 1, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: b440fc4b08bb6bfd78a6494fce2684ce113cd524)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to openembedded/openembedded-core that referenced this issue Mar 1, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 1, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 6d3db7abce1d4a55299b4c64ef1301a0d37a64fb)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to openembedded/openembedded-core that referenced this issue Mar 1, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 1, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 03665a7ef3d932fa1845ad7815d4643fc4038767)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to openembedded/openembedded-core that referenced this issue Mar 1, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 1, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 03665a7ef3d932fa1845ad7815d4643fc4038767)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 1, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 03665a7ef3d932fa1845ad7815d4643fc4038767)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 2, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 03665a7ef3d932fa1845ad7815d4643fc4038767)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 3, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 5c978d1b93ea9dcbd2c3571bd21656808ab4029e)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 3, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 5c978d1b93ea9dcbd2c3571bd21656808ab4029e)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to openembedded/openembedded-core that referenced this issue Mar 3, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 3, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 5c978d1b93ea9dcbd2c3571bd21656808ab4029e)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 7, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 73f67564c83ddb18fd11bbb10f5a3733d0d9bb63)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to openembedded/openembedded-core that referenced this issue Mar 7, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 7, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 6873c6cb000b24c1badd0fb8b5cd2d0a31a63096)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to openembedded/openembedded-core that referenced this issue Mar 7, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 7, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 6873c6cb000b24c1badd0fb8b5cd2d0a31a63096)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
halstead pushed a commit to yoctoproject/poky that referenced this issue Mar 7, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

(From OE-Core rev: 6873c6cb000b24c1badd0fb8b5cd2d0a31a63096)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
quaresmajose pushed a commit to quaresmajose/meta-lts-mixins that referenced this issue Mar 18, 2024
patch 0007-exec.go-do-not-write-linker-flags-into-buildids.patch
removes linker flags from buildids for not breaking reproducibility,
but it seems that this will make go not rebuild when linker flag
changes, Refer [1]. So remove this oe-specific patch, and change to
filter out build specific path from the linker flags

[1] golang/go#63760

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
compiler/runtime Issues related to the Go compiler and/or runtime. GoCommand cmd/go WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided.
Projects
None yet
Development

No branches or pull requests

3 participants