-
Notifications
You must be signed in to change notification settings - Fork 2.3k
libcontainer: fix compilation on GOARCH=arm GOARM=6 (32 bits) #1819
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
Conversation
I think we can just add runc/libcontainer/user/user.go Line 113 in 0e56164
|
377c69b to
6c937ad
Compare
This fixes the following compilation error on 32bit ARM: ``` $ GOARCH=arm GOARCH=6 go build ./libcontainer/system/ libcontainer/system/linux.go:119:89: constant 4294967295 overflows int ``` Signed-off-by: Tibor Vass <[email protected]>
AkihiroSuda
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM(IANAM) if green, thanks!
seemethere
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
Thank you very much! |
For opencontainers/runc#1819 Signed-off-by: Akihiro Suda <[email protected]>
This fixes the following compilation error on 32bit ARM:
Signed-off-by: Tibor Vass [email protected]
Related to #1688
Fixes #1818