1
Fork 0

c++: fall back to cache dir in /tmp

rules_go is making calls that do `env - <...>` and are setting neither
TMPDIR nor HOME. So we should always fallback somewhere.
nix
Motiejus Jakštys 2022-08-12 09:25:37 +03:00
parent aaa50aad6d
commit db7beefbe4
1 changed files with 8 additions and 5 deletions

View File

@ -80,12 +80,15 @@ ZIG_TOOL_WRAPPER = """#!/usr/bin/env bash
set -e
if [[ -n "$TMPDIR" ]]; then
_cache_prefix=$TMPDIR
_cache_prefix=$TMPDIR
elif [[ -n "$HOME" ]]; then
if [[ "$(uname)" = Darwin ]]; then
_cache_prefix="$HOME/Library/Caches"
else
_cache_prefix="$HOME/.cache"
fi
else
_cache_prefix="$HOME/.cache"
if [[ "$(uname)" = Darwin ]]; then
_cache_prefix="$HOME/Library/Caches"
fi
_cache_prefix=/tmp
fi
export ZIG_LOCAL_CACHE_DIR="$_cache_prefix/bazel-zig-cc"