1
0
mirror of https://github.com/raspberrypi/pico-sdk.git synced 2025-08-07 17:02:52 +03:00

Initial Pico/2 W Bazel support (#2049)

* Initial Pico 2 W Bazel support

Improves compatibility with Pico W and Pico 2 W by fixing issues that
prevented correct linking of wireless libraries.

* Improve correctness and configurability

* Require newer rules_python

* Require rules_python@0.36.0

* Fix missing compatibility expressions

* Minor tweaks

* Minor cleanup

* Update suggested version in Bazel README

* More README tweaks

* Improve Bazel btstack build correctness
This commit is contained in:
armandomontanez
2024-11-21 14:58:02 -08:00
committed by GitHub
parent 08ea1d89a9
commit 338f99ff1c
21 changed files with 536 additions and 88 deletions

View File

@@ -145,6 +145,22 @@ BUILD_CONFIGURATIONS = (
)
),
},
{
"name": "Pico 2 W",
"args": (
"--platforms=//bazel/platform:rp2350",
"--@pico-sdk//bazel/config:PICO_BOARD=pico2_w",
),
"extra_targets": (),
"exclusions": frozenset(
(
# Host only.
"//test/pico_float_test:hazard3_test_gen",
# No RISC-V on RP2040.
"//test/pico_float_test:pico_float_test_hazard3",
)
),
},
)