
* use bazel commit in #13112, and add version 0.24.1, and corresponding cc_env patch * undo preferred java version by dodo47 * patch for v0.26 * Update install steps * Add patches for more versions * Add unit tests * Update patches for new Spack env vars * env is already defined, use spackEnv
25 lines
753 B
Diff
25 lines
753 B
Diff
--- a/tools/cpp/cc_configure.bzl
|
|
+++ b/tools/cpp/cc_configure.bzl
|
|
@@ -173,8 +173,19 @@
|
|
else:
|
|
inc_dirs = result.stderr[index1 + 1:index2].strip()
|
|
|
|
- return [repository_ctx.path(_cxx_inc_convert(p))
|
|
- for p in inc_dirs.split("\n")]
|
|
+ default_inc_directories = [
|
|
+ repository_ctx.path(_cxx_inc_convert(p))
|
|
+ for p in inc_dirs.split("\n")
|
|
+ ]
|
|
+
|
|
+ env = repository_ctx.os.environ
|
|
+ if "SPACK_INCLUDE_DIRS" in env:
|
|
+ for path in env["SPACK_INCLUDE_DIRS"].split(":"):
|
|
+ default_inc_directories.append(
|
|
+ repository_ctx.path(_cxx_inc_convert(path))
|
|
+ )
|
|
+
|
|
+ return default_inc_directories
|
|
|
|
def _add_option_if_supported(repository_ctx, cc, option):
|
|
"""Checks that `option` is supported by the C compiler."""
|