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 050afcf commit 86fb7efCopy full SHA for 86fb7ef
1 file changed
toolchain/internal/configure.bzl
@@ -251,7 +251,13 @@ def llvm_config_impl(rctx):
251
252
# Inner CC wrapper script (redirect used for shell compatibility on Linux
253
# platforms).
254
- if os != "darwin":
+ if os == "darwin":
255
+ rctx.file(
256
+ "bin/cc_wrapper_inner.sh",
257
+ content = "",
258
+ executable = False,
259
+ )
260
+ else:
261
rctx.template(
262
"bin/cc_wrapper_inner.sh",
263
rctx.attr._cc_wrapper_inner_sh_tpl,
0 commit comments