File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,4 @@ build --action_env=CC
2424build --action_env=CXX
2525build --action_env=LD_LIBRARY_PATH
2626build --action_env=LLVM_CONFIG
27- build --action_env=PATH
28-
29- build --cxxopt=-std=c++17
30- build --host_cxxopt=-std=c++17
27+ build --action_env=PATH
Original file line number Diff line number Diff line change 2727 - name : Install System Dependencies
2828 run : |
2929 sudo apt-get update
30+ # https://gcc.gnu.org/projects/cxx-status.html
3031 sudo apt-get install -y gcc-10 g++-10
3132 sudo g++ --version
3233 - name : Setup Bazel
4041 run : |
4142 export CC=/usr/bin/gcc-10
4243 export CXX=/usr/bin/g++-10
43- bazel build //... -s
44+ bazel build //... \
45+ --compiler=gcc-10 \
46+ --cxxopt='-std=c++17' \
47+ --host_cxxopt='-std=c++17' \
48+ -s
Original file line number Diff line number Diff line change 2424
2525io_grpc_grpc_java ()
2626
27+ # https://github.com/abseil/abseil-cpp/releases?page=3
28+ # Abseil LTS branch, March 2021, Patch 2
2729http_archive (
2830 name = "com_google_absl" ,
2931 sha256 = "59b862f50e710277f8ede96f083a5bb8d7c9595376146838b9580be90374ee1f" ,
You can’t perform that action at this time.
0 commit comments