File tree Expand file tree Collapse file tree 3 files changed +4
-14
lines changed
Expand file tree Collapse file tree 3 files changed +4
-14
lines changed Original file line number Diff line number Diff line change @@ -92,11 +92,11 @@ you encounter along the way.
9292
9393Currently, the following features are not supported:
9494
95+ * Pico W wireless libraries work, but may not have complete coverage.
96+ * Bazel does not yet provide RISC-V support for Pico 2/RP2350.
9597* The pioasm parser cannot be built from source via Bazel.
9698* Windows MSVC wildcard build (` bazel build //... ` ) does not work when targeting
9799 host.
98- * Bazel does not yet provide RISC-V support for Pico 2/RP2350.
99- * Pico W wireless libraries have link issues.
100100
101101## Contributing
102102When making changes to the Bazel build, please run the Bazel validation script
Original file line number Diff line number Diff line change 11load ("@rules_cc//cc:find_cc_toolchain.bzl" , "find_cpp_toolchain" , "use_cc_toolchain" )
22
33def _pico_btstack_make_gatt_header_impl (ctx ):
4-
54 cc_toolchain = find_cpp_toolchain (ctx )
65 feature_configuration = cc_common .configure_features (
76 ctx = ctx ,
Original file line number Diff line number Diff line change 1+ """A wrapper that enables a `config_setting` matcher for label_flag flags."""
2+
13load ("@bazel_skylib//rules:common_settings.bzl" , "BuildSettingInfo" )
24load ("@bazel_tools//tools/cpp:toolchain_utils.bzl" , "find_cpp_toolchain" , "use_cpp_toolchain" )
35
4- def _cc_toolchain_feature_is_enabled_impl (ctx ):
5- toolchain = find_cpp_toolchain (ctx )
6- feature_configuration = cc_common .configure_features (
7- ctx = ctx ,
8- cc_toolchain = toolchain ,
9- )
10- val = cc_common .is_enabled (
11- feature_configuration = feature_configuration ,
12- feature_name = ctx .attr .feature_name ,
13- )
14-
156def _match_label_flag_impl (ctx ):
167 matches = str (ctx .attr .expected_value .label ) == str (ctx .attr .flag .label )
178 return [
You can’t perform that action at this time.
0 commit comments