Skip to content
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

Append username to the default tmp directory #187

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions toolchain/defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,16 @@ def _zig_repository_impl(repository_ctx):

cache_prefix = repository_ctx.os.environ.get("HERMETIC_CC_TOOLCHAIN_CACHE_PREFIX", "")
if cache_prefix == "":
# Append the username when available to reduce risks of conflict.
username = repository_ctx.os.environ.get("USER", "")
if username:
username = "-" + username
if os == "windows":
cache_prefix = "C:\\\\Temp\\\\zig-cache"
cache_prefix = "C:\\\\Temp\\\\zig-cache" + username
elif os == "macos":
cache_prefix = "/var/tmp/zig-cache"
cache_prefix = "/var/tmp/zig-cache" + username
elif os == "linux":
cache_prefix = "/tmp/zig-cache"
cache_prefix = "/tmp/zig-cache" + username
else:
fail("unknown os: {}".format(os))

Expand Down