-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Compiler doesn't work when using Docker #65662
Copy link
Copy link
Closed
Labels
C-bugCategory: This is a bug.Category: This is a bug.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.regression-from-stable-to-nightlyPerformance or correctness regression from stable to nightly.Performance or correctness regression from stable to nightly.
Metadata
Metadata
Assignees
Labels
C-bugCategory: This is a bug.Category: This is a bug.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.regression-from-stable-to-nightlyPerformance or correctness regression from stable to nightly.Performance or correctness regression from stable to nightly.
Type
Fields
Give feedbackNo fields configured for issues without a type.
When I run this sequence of commands:
I get this error:
This happens due to the
statxsyscall failing with EPERM. I believe Docker uses seccomp to limit which system calls may be made, and thestatxcall is too new, so it's not whitelisted. Because the syscall fails with EPERM instead of ENOSYS, the fallback to regularstatdoesn't work.Host kernel: 4.15.0-65-generic
docker version