Replies: 2 comments
-
Not quite sure why the compiling stage is ok on |
Beta Was this translation helpful? Give feedback.
0 replies
-
We are aware of this and have an upstream proposal to avoid the need for (For what it's worth, I don't really care about their "hall of shame". All of our |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
https://github.com/golang/go/blob/master/src/internal/poll/fd_poll_runtime.go#L165-L179 shows we use
IsPollDescriptor
as alinkname
, and we used here https://github.com/opencontainers/runc/blob/main/libcontainer/utils/utils_unix.go#L112-L119.So maybe we need a
-ldflags=-checklinkname=0
to make the compiling stage happy on Go 1.23. Or we can make a change to avoid usinglinkname
.UPD: Fortunately it's added at runc 1.2.0-rc1. We can eliminate it to avoid being on the hall of shame.
Beta Was this translation helpful? Give feedback.
All reactions