-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bazelrc
41 lines (32 loc) · 1.17 KB
/
.bazelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
common --experimental_repo_remote_exec
common --incompatible_remove_rule_name_parameter=false
build --announce_rc
build --noincompatible_strict_action_env
# sandboxed standalone local
build --spawn_strategy=local
build --announce_rc
build --noincompatible_strict_action_env
build:linux --color=yes
build:linux --copt=-fdiagnostics-color=always
build:linux --cxxopt=-std=c++17
build:linux --host_cxxopt=-std=c++17
build:macos --color=yes
build:macos --cxxopt=-std=c++17
build:macos --host_cxxopt=-std=c++17
build:windows_clang --cxxopt=/std:c++17
build:windows_vs --cxxopt=/std:c++17
build:wasm --crosstool_top=//emscripten_toolchain:everything
build:wasm --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
build:wasm --cpu=wasm
build:wasm --copt=-pthread
build:wasm --config=linux
build:wasm --copt=-Wno-narrowing
build:wasm --copt=-Wno-c99-designator
build:wasm --copt=-Wno-switch
build:wasm --copt=-Wno-deprecated-builtins
build:wasm --copt=-Wno-error=array-parameter
build:wasm --host_copt=-Wno-narrowing
build:wasm --host_copt=-Wno-c99-designator
build:wasm --host_copt=-Wno-switch
build:wasm --host_copt=-Wno-deprecated-builtins
build:wasm --host_copt=-Wno-error=array-parameter