Building *app-containers/podman* with a cross-compiler toolchain fails. The build needs the `CC` and `LD` environment variables to be exported before running `go build`. I was able to work around this problem by creating `/etc/portage/env/app-containers/podman`: ``` function post_src_prepare() { tc-export CC LD } ``` Reproducible: Always
Hi, thanks for your report. Please attach a build.log and the output of emerge --info (and please do so for future bug reports, too). Can you test if just adding CC and LD to the other exported variables in line 100 is sufficient, i.e. 'export -n CC GOCACHE GOPATH LD XDG_CACHE_HOME'? Thanks, Nils