From 7ec2bdb017ad4664f55f7c0613b1aa1603939106 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Fri, 19 Jan 2024 17:52:54 +0100 Subject: [PATCH] bazel: clean README.md --- bazel/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bazel/README.md b/bazel/README.md index ebf98c9602..26e23e73bb 100644 --- a/bazel/README.md +++ b/bazel/README.md @@ -71,13 +71,13 @@ You must compile OR-Tools using at least C++17 (C++20 on windows): * on UNIX: ```sh - bazel build --cxxopt=-std=c++17 ... + bazel build -c opt --cxxopt=-std=c++17 ... ``` * on Windows when using MSVC: ```sh - bazel build --cxxopt="/std:c++20" ... + bazel build -c opt --cxxopt="/std:c++20" ... ``` ## Testing @@ -87,13 +87,13 @@ You may run tests using: * on UNIX: ```sh - bazel test --cxxopt=-std=c++17 ... + bazel test -c opt --cxxopt=-std=c++17 ... ``` * on Windows when using MSVC: ```sh - bazel test --cxxopt="/std:c++20" ... + bazel test -c opt --cxxopt="/std:c++20" ... ``` ## Integration