-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
.bazelrc
43 lines (29 loc) · 1.01 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
41
42
43
build --compiler=compiler
test --compiler=compiler
build --cpu=stm32g4
test --cpu=stm32g4
build --crosstool_top=@com_github_mjbots_rules_mbed//tools/cc_toolchain:toolchain
test --crosstool_top=@com_github_mjbots_rules_mbed//tools/cc_toolchain:toolchain
build --nostart_end_lib
test --nostart_end_lib
build -c opt
test -c opt
build:pi --cpu=armeabihf
test:pi --cpu=armeabihf
build:pi --crosstool_top=@rpi_bazel//tools/cc_toolchain:toolchain
test:pi --crosstool_top=@rpi_bazel//tools/cc_toolchain:toolchain
build:pi --compiler=clang
test:pi --compiler=clang
build:pi64 --cpu=aarch64
test:pi64 --cpu=aarch64
build:pi64 --crosstool_top=@rpi_bazel//tools/cc_toolchain:toolchain
test:pi64 --crosstool_top=@rpi_bazel//tools/cc_toolchain:toolchain
build:pi64 --compiler=clang
test:pi64 --compiler=clang
build:host --compiler=compiler
build:host --cpu=k8
build --workspace_status_command=tools/workspace_status.sh
test --workspace_status_command=tools/workspace_status.sh
build --stamp
test --stamp
test --test_output=errors