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
After upgrading my Golang toolchain to 1.23 on my Ubuntu running in WSL the compilation of bigquery-emulator fails:
link: github.com/segmentio/parquet-go/hashprobe/aeshash: invalid reference to runtime.aeskeysched
What did you expect to happen?
Successful compilation.
How can we reproduce it (as minimally and precisely as possible)?
$ go version
go version go1.23.0 linux/amd64
$ CGO_ENABLED=1 CXX="clang++" go install github.com/goccy/bigquery-emulator/cmd/bigquery-emulator@v0.6.4
# github.com/goccy/bigquery-emulator/cmd/bigquery-emulator
link: github.com/segmentio/parquet-go/hashprobe/aeshash: invalid reference to runtime.aeskeysched
The linker now disallows using a //go:linkname directive to refer to internal symbols in the standard library (including the runtime) that are not marked with //go:linkname on their definitions. Similarly, the linker disallows references to such symbols from assembly code. For backward compatibility, existing usages of //go:linkname found in a large open-source code corpus remain supported. Any new references to standard library internal symbols will be disallowed.
According to grafana/pyroscope#3485 this can be fixed by upgrading parquet-go to v0.23.0
The text was updated successfully, but these errors were encountered:
What happened?
After upgrading my Golang toolchain to 1.23 on my Ubuntu running in WSL the compilation of bigquery-emulator fails:
What did you expect to happen?
Successful compilation.
How can we reproduce it (as minimally and precisely as possible)?
Anything else we need to know?
According to parquet-go/parquet-go#142 the root cause probably is this change from Go 1.23:
According to grafana/pyroscope#3485 this can be fixed by upgrading
parquet-go
tov0.23.0
The text was updated successfully, but these errors were encountered: