We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f043a72 commit bc5b514Copy full SHA for bc5b514
1 file changed
src/codechecker.bzl
@@ -135,7 +135,14 @@ def _codechecker_impl(ctx):
135
# arguments = [ctx.outputs.codechecker_script.path],
136
mnemonic = "CodeChecker",
137
progress_message = "CodeChecker %s" % str(ctx.label),
138
- # use_default_shell_env = True,
+ # While this is not an ideal solution
139
+ # until we have better one (in the form of a toolchain)
140
+ # this is necessary to find binaries for analyzers
141
+ # installed in any place other than /bin
142
+ # e.g.: micromamba
143
+ # /bin is an exception due to it being forcefully added
144
+ # in codechecker_script.py
145
+ use_default_shell_env = True,
146
)
147
148
# List all files required at build and run (test) time
0 commit comments