| # Default C++ version | |
| build --cxxopt=-std=c++20 | |
| # Force Clang to use LLVM's libc++ instead of the old system libstdc++ | |
| build --cxxopt=-stdlib=libc++ | |
| build --linkopt=-stdlib=libc++ | |
| # Mac-specific setting | |
| build --macos_minimum_os=10.13 | |
| # Use clang for C++ compilation | |
| build --repo_env=CC=clang | |
| build --repo_env=CXX=clang++ |