xref: /aosp_15_r20/external/bazelbuild-rules_cc/cc/private/toolchain/BUILD.toolchains.tpl (revision eed53cd41c5909d05eedc7ad9720bb158fd93452)
1*eed53cd4SHONG Yifanload("@local_config_platform//:constraints.bzl", "HOST_CONSTRAINTS")
2*eed53cd4SHONG Yifan
3*eed53cd4SHONG Yifantoolchain(
4*eed53cd4SHONG Yifan    name = "cc-toolchain-%{name}",
5*eed53cd4SHONG Yifan    exec_compatible_with = HOST_CONSTRAINTS,
6*eed53cd4SHONG Yifan    target_compatible_with = HOST_CONSTRAINTS,
7*eed53cd4SHONG Yifan    toolchain = "@local_config_cc//:cc-compiler-%{name}",
8*eed53cd4SHONG Yifan    toolchain_type = "@rules_cc//cc:toolchain_type",
9*eed53cd4SHONG Yifan)
10*eed53cd4SHONG Yifan
11*eed53cd4SHONG Yifantoolchain(
12*eed53cd4SHONG Yifan    name = "cc-toolchain-armeabi-v7a",
13*eed53cd4SHONG Yifan    exec_compatible_with = HOST_CONSTRAINTS,
14*eed53cd4SHONG Yifan    target_compatible_with = [
15*eed53cd4SHONG Yifan        "@platforms//cpu:arm",
16*eed53cd4SHONG Yifan        "@platforms//os:android",
17*eed53cd4SHONG Yifan    ],
18*eed53cd4SHONG Yifan    toolchain = "@local_config_cc//:cc-compiler-armeabi-v7a",
19*eed53cd4SHONG Yifan    toolchain_type = "@rules_cc//cc:toolchain_type",
20*eed53cd4SHONG Yifan)
21