Skip to content

Commit 28e9626

Browse files
authored
Merge pull request #7 from agluszak/copilot/add-cpp-flags-to-deps-bazelrc
Add C++17 flags to examples/deps/.bazelrc
2 parents fb0e9a7 + c52e1b2 commit 28e9626

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

examples/deps/.bazelrc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@ common --java_runtime_version=remotejdk_21
22
common --tool_java_runtime_version=remotejdk_21
33
common --incompatible_enable_android_toolchain_resolution # Required for bazel 7
44
common --android_platforms=//:arm64-v8a
5-
common --toolchain_resolution_debug=.*
5+
common --toolchain_resolution_debug=.*
6+
7+
# Required for abseil-cpp which requires C++17
8+
build --cxxopt=-std=c++17
9+
build --host_cxxopt=-std=c++17

0 commit comments

Comments
 (0)