forked from vam-google/symbol-locations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bazelrc
36 lines (28 loc) · 945 Bytes
/
.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
startup --windows_enable_symlinks
build --experimental_cc_shared_library
build --verbose_failures
test --verbose_failures
build --strip=always
test --strip=always
build --compilation_mode=opt
test --compilation_mode=opt
build --enable_platform_specific_config=true
test --enable_platform_specific_config=true
test --cache_test_results=no
test --test_output=all
build:macos --cxxopt=-std=c++17
test:macos --cxxopt=-std=c++17
build:macos --host_cxxopt=-std=c++17
test:macos --host_cxxopt=-std=c++17
build:linux --cxxopt=-std=c++17
test:linux --cxxopt=-std=c++17
build:linux --host_cxxopt=-std=c++17
test:linux --host_cxxopt=-std=c++17
build:windows --linkopt=/DEBUG:NONE
test:windows --linkopt=/DEBUG:NONE
build:windows --host_linkopt=/DEBUG:NONE
test:windows --host_linkopt=/DEBUG:NONE
build:windows --enable_runfiles
test:windows --enable_runfiles
build:windows --features=compiler_param_file
test:windows --features=compiler_param_file