You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This program runs successfully on Go 1.19 and older versions. While there were some cgo changes mentioned in https://tip.golang.org/doc/go1.20, it's not clear to me that those would impact this program.
The text was updated successfully, but these errors were encountered:
Yep! I can confirm that CL mentioned there (#57263 (comment)) causes the issue
go.dev/cl/451735
% git checkout 1f4394a0c92697896735a5c0135dfde1be9f42bd
...
% ./all.bash
...
% /Users/ericchiang/goroot/bin/go run ~/tmp/repro.go
0x8010001d
% git checkout 1f4394a0c92697896735a5c0135dfde1be9f42bd^1
Previous HEAD position was 1f4394a0c9 runtime: work around Apple libc bugs to make exec stop hanging
HEAD is now at 6e0e492e12 cmd/compile/internal/pgo: count only the last two frames as a call edge
% ./all.bash
...
% /Users/ericchiang/goroot/bin/go run ~/tmp/repro.go
0x00000000
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Ran the following program with Go 1.20rc1
What did you expect to see?
What did you see instead?
("SCARD_E_NO_SERVICE")
This was reported at go-piv/piv-go#113 and FiloSottile/yubikey-agent#135.
This program runs successfully on Go 1.19 and older versions. While there were some cgo changes mentioned in https://tip.golang.org/doc/go1.20, it's not clear to me that those would impact this program.
The text was updated successfully, but these errors were encountered: