blob: a9dda5869d0fd8dae4802784b7c448c0999b97fb [file] [edit]
# 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++