[libcxx-commits] [PATCH] D110938: [libcxx][utils] Note read only mount and ptrace permission in container script

Louis Dionne via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed Oct 6 08:51:26 PDT 2021


ldionne added inline comments.


================
Comment at: libcxx/utils/ci/run-buildbot-container:16-20
+# You will not be able to write to the mount from within the container
+# unless the user that created the monorepo matches "libcxx-builder".
+# If you need to do this, give that user permission to do so after running
+# the container. Or add this flag to run the container as your local user IDs:
+# --user $(id -u):$(id -g)
----------------
This actually doesn't match my experience. I'm able to modify the mount from within the docker container, and the user that created the monorepo on my mac (`ldionne`) isn't called `libcxx-builder`. I'm a bit confused. Is it possible that this is only on Linux?

I don't have push back against this change, except I would like to make sure the comment above is accurate.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D110938/new/

https://reviews.llvm.org/D110938



More information about the libcxx-commits mailing list