-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.bazelrc
More file actions
24 lines (21 loc) · 736 Bytes
/
.bazelrc
File metadata and controls
24 lines (21 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
build --features=layering_check
build --cxxopt=-std=c++20
build --copt=-fno-exceptions
build --macos_minimum_os=10.13
build:opt -c opt
build:opt --copt="-DNDEBUG=1"
build:opt --linkopt="-Wno-unused-command-line-argument"
build:opt --features=thin_lto
build:profile --copt=-O2
build:profile --copt=-g3
build:profile --copt="-DNDEBUG=1"
build:profile --copt=-fno-omit-frame-pointer
build:profile --linkopt=-lprofiler
build:perfetto --features=thin_lto
build:perfetto --copt=-O3
build:perfetto --copt=-g3
build:perfetto --copt="-DPERFETTO_ENABLED=1"
build:perfetto --copt="-DNDEBUG=1"
build:perfetto --copt=-fno-omit-frame-pointer
build:perfetto --//src:enable_perfetto=True
build:perfetto --linkopt="-Wno-unused-command-line-argument"