Skip to content

Commit

Permalink
Regenerate linux toolchains from f29d90f
Browse files Browse the repository at this point in the history
[skip ci]
build/image: Update llvm -> 16.0.0 (#342)

Signed-off-by: Ryan Northey <ryan@synca.io>
  • Loading branch information
update-envoy[bot] committed May 16, 2024
1 parent f29d90f commit 1f9b2b6
Show file tree
Hide file tree
Showing 11 changed files with 1,145 additions and 433 deletions.
6 changes: 3 additions & 3 deletions toolchains/configs/linux/clang/cc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ cc_toolchain_config(
target_libc = "local",
abi_version = "local",
abi_libc_version = "local",
cxx_builtin_include_directories = ["/opt/llvm/lib/clang/14.0.0/include",
cxx_builtin_include_directories = ["/opt/llvm/lib/clang/16/include",
"/usr/local/include",
"/usr/include/x86_64-linux-gnu",
"/usr/include",
"/opt/llvm/lib/clang/14.0.0/share",
"/opt/llvm/lib/clang/16/share",
"/usr/include/c++/11",
"/usr/include/x86_64-linux-gnu/c++/11",
"/usr/include/c++/11/backward",
Expand All @@ -114,7 +114,7 @@ cc_toolchain_config(
"llvm-cov": "/opt/llvm/bin/llvm-cov",
"llvm-profdata": "/opt/llvm/bin/llvm-profdata",
"cpp": "/usr/bin/cpp",
"gcc": "/opt/llvm/bin/clang-14",
"gcc": "/opt/llvm/bin/clang-16",
"dwp": "/usr/bin/dwp",
"gcov": "/opt/llvm/bin/llvm-profdata",
"nm": "/usr/bin/nm",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
This file is generated by cc_configure and contains builtin include directories
that /opt/llvm/bin/clang-14 reported. This file is a dependency of every compilation action and
that /opt/llvm/bin/clang-16 reported. This file is a dependency of every compilation action and
changes to it will be reflected in the action cache key. When some of these
paths change, Bazel will make sure to rerun the action, even though none of
declared action inputs or the action commandline changes.

/opt/llvm/lib/clang/14.0.0/include
/opt/llvm/lib/clang/16/include
/usr/local/include
/usr/include/x86_64-linux-gnu
/usr/include
/opt/llvm/lib/clang/14.0.0/share
/opt/llvm/lib/clang/16/share
/usr/include/c++/11
/usr/include/x86_64-linux-gnu/c++/11
/usr/include/c++/11/backward
Expand Down
2 changes: 1 addition & 1 deletion toolchains/configs/linux/clang/cc/cc_wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ set -eu


# Call the C++ compiler
/opt/llvm/bin/clang-14 "$@"
/opt/llvm/bin/clang-16 "$@"
772 changes: 564 additions & 208 deletions toolchains/configs/linux/clang/cc/module.modulemap

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion toolchains/configs/linux/clang/config/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ platform(
"@bazel_tools//tools/cpp:clang",
],
exec_properties = {
"container-image": "docker://gcr.io/envoy-ci/envoy-build@sha256:192225da768b1599121af5d317a524892f2f750b61903a8c4d7d751cc98938e7",
"container-image": "docker://gcr.io/envoy-ci/envoy-build@sha256:2c4007e490272813be9f0eca3bd5c289e24fe81e9d5e657e994b5ccc15403172",
"OSFamily": "Linux",
},
)
6 changes: 3 additions & 3 deletions toolchains/configs/linux/clang_libcxx/cc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ cc_toolchain_config(
target_libc = "local",
abi_version = "local",
abi_libc_version = "local",
cxx_builtin_include_directories = ["/opt/llvm/lib/clang/14.0.0/include",
cxx_builtin_include_directories = ["/opt/llvm/lib/clang/16/include",
"/usr/local/include",
"/usr/include/x86_64-linux-gnu",
"/usr/include",
"/opt/llvm/lib/clang/14.0.0/share",
"/opt/llvm/lib/clang/16/share",
"/opt/llvm/include/x86_64-unknown-linux-gnu/c++/v1",
"/opt/llvm/include/c++/v1",
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk"],
Expand All @@ -111,7 +111,7 @@ cc_toolchain_config(
"llvm-cov": "/opt/llvm/bin/llvm-cov",
"llvm-profdata": "/opt/llvm/bin/llvm-profdata",
"cpp": "/usr/bin/cpp",
"gcc": "/opt/llvm/bin/clang-14",
"gcc": "/opt/llvm/bin/clang-16",
"dwp": "/usr/bin/dwp",
"gcov": "/opt/llvm/bin/llvm-profdata",
"nm": "/usr/bin/nm",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
This file is generated by cc_configure and contains builtin include directories
that /opt/llvm/bin/clang-14 reported. This file is a dependency of every compilation action and
that /opt/llvm/bin/clang-16 reported. This file is a dependency of every compilation action and
changes to it will be reflected in the action cache key. When some of these
paths change, Bazel will make sure to rerun the action, even though none of
declared action inputs or the action commandline changes.

/opt/llvm/lib/clang/14.0.0/include
/opt/llvm/lib/clang/16/include
/usr/local/include
/usr/include/x86_64-linux-gnu
/usr/include
/opt/llvm/lib/clang/14.0.0/share
/opt/llvm/lib/clang/16/share
/opt/llvm/include/x86_64-unknown-linux-gnu/c++/v1
/opt/llvm/include/c++/v1
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk
2 changes: 1 addition & 1 deletion toolchains/configs/linux/clang_libcxx/cc/cc_wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ set -eu


# Call the C++ compiler
/opt/llvm/bin/clang-14 "$@"
/opt/llvm/bin/clang-16 "$@"
772 changes: 564 additions & 208 deletions toolchains/configs/linux/clang_libcxx/cc/module.modulemap

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion toolchains/configs/linux/clang_libcxx/config/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ platform(
"@bazel_tools//tools/cpp:clang",
],
exec_properties = {
"container-image": "docker://gcr.io/envoy-ci/envoy-build@sha256:192225da768b1599121af5d317a524892f2f750b61903a8c4d7d751cc98938e7",
"container-image": "docker://gcr.io/envoy-ci/envoy-build@sha256:2c4007e490272813be9f0eca3bd5c289e24fe81e9d5e657e994b5ccc15403172",
"OSFamily": "Linux",
},
)
2 changes: 1 addition & 1 deletion toolchains/configs/linux/gcc/config/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ platform(
"@bazel_tools//tools/cpp:clang",
],
exec_properties = {
"container-image": "docker://gcr.io/envoy-ci/envoy-build@sha256:192225da768b1599121af5d317a524892f2f750b61903a8c4d7d751cc98938e7",
"container-image": "docker://gcr.io/envoy-ci/envoy-build@sha256:2c4007e490272813be9f0eca3bd5c289e24fe81e9d5e657e994b5ccc15403172",
"OSFamily": "Linux",
},
)

0 comments on commit 1f9b2b6

Please sign in to comment.