We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e9db9a commit 128912cCopy full SHA for 128912c
.ci/scripts/setup-macos.sh
@@ -77,6 +77,13 @@ install_sccache() {
77
78
export PATH="${SCCACHE_PATH}:${PATH}"
79
80
+ # Create temp directory for sccache shims if TMP_DIR doesn't exist
81
+ if [ -z "${TMP_DIR:-}" ]; then
82
+ TMP_DIR=$(mktemp -d)
83
+ trap 'rm -rfv ${TMP_DIR}' EXIT
84
+ export PATH="${TMP_DIR}:$PATH"
85
+ fi
86
+
87
write_sccache_stub "${TMP_DIR}/c++"
88
write_sccache_stub "${TMP_DIR}/cc"
89
write_sccache_stub "${TMP_DIR}/clang++"
0 commit comments