forked from th0br0/toolchains
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bazelrc
22 lines (18 loc) · 1.07 KB
/
.bazelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
build:aarch64 --crosstool_top=//tools/aarch64--glibc--bleeding-edge-2018.07-1:toolchain
build:aarch64 --cpu=aarch64
# Bazel uses internal tools many of which are written in
# C++ (such as `process-wrapper`). Therefore we still need a sane
# C++ toolchain for these tools.
build:aarch64 --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
build:armv7 --crosstool_top=//tools/armv7-eabihf--glibc--bleeding-edge-2018.07-1:toolchain
build:armv7 --cpu=armeabi-v7a
build:armv7 --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
build:i686 --crosstool_top=//tools/x86-i686--glibc--bleeding-edge-2018.07-1:toolchain
build:i686 --cpu=i686
build:i686 --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
build:x86_64 --crosstool_top=//tools/x86-64-core-i7--glibc--bleeding-edge-2018.07-1:toolchain
build:x86_64 --cpu=x86_64
build:x86_64 --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
build:esp32_64 --crosstool_top=//tools/xtensa-esp32-elf-linux64-1.22.0-80-g6c4433a-5.2.0:toolchain
build:esp32_64 --cpu=xtensa
build:esp32_64 --host_crosstool_top=@bazel_tools//tools/cpp:toolchain