mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-02-05 18:40:21 +00:00
6ff3e4fab2
* Add host Bazel build Updates target_compatible_with across the repo to ensure that wildcard builds for both host and rp2040 succeed. * Get unit tests building * Add Python script to identify build system differences Uses the build system tags to make it easier to identify differences between the CMake and Bazel builds. * Temporarily disable pico divider test * Support PICO_BARE_METAL in Bazel * Support PICO_NO_GC_SECTIONS in Bazel * Support boot2 configuration in Bazel Adds support for PICO_DEFAULT_BOOT_STAGE2 and PICO_DEFAULT_BOOT_STAGE2_FILE in the Bazel build. * Allowlist some CMake-only options * Support CXX configuration options in Bazel * Move multiple_choice_flag.bzl * Support all pico boards * Support linking multiple stdio implementations Changes the Bazel build so stdio implementations are no longer mutually exclusive. * Add PICO_BOOT_STAGE2_LINK_IMAGE * Support PICO_CMSIS_PATH in Bazel * Support PICO_USE_DEFAULT_MAX_PAGE_SIZE in Bazel * Silence PICO_CMSIS_VENDOR and PICO_CMSIS_DEVICE differences * Support PICO_STDIO_USB_CONNECT_WAIT_TIMEOUT_MS in Bazel * Properly support version defines * Support embedding binary info in Bazel * Embed build type in binary * Support different linker scripts in Bazel build * Finish out missing PICO_BUILD_DEFINE in Bazel build * Support PICO_NO_TARGET_NAME * Reorganize initial configuration options in Bazel Cleans up and reorganizes some of the initial configuration options added to the Bazel build so everything is consistent. * Add builds for pioasm and elf2uf2 * Use Python rules from rules_python * Actually link in output formats in pioasm tool * Make tools have public visibility * Add UF2 Bazel aspect * Add TODOs for pioasm/uf2 helpers * Fix compile flag typo * Update Bazel SDK configuration strings to match recent CMake changes * Fix pico_divider test * Clean up straggling TODOs * Clarify pico_stdio_test compatibility * Initial Bazel Pico W support * Add new files from develop * Clean up compatibility expressions in Bazel build * Clean up rp2 constraint handling in Bazel * More Bazel docs cleanup * Format Bazel build files * Consolidate transitions in the Pico SDK * Make every _allowlist_function_transition explicit * More docs cleanup * Add a few missing defines * Improve PICO_CONFIG_HEADER correctness in Bazel * Minor docs clarifications
99 lines
4.5 KiB
Python
99 lines
4.5 KiB
Python
module(name = "pico-sdk", version = "1.6.0-rc1")
|
|
|
|
bazel_dep(name = "platforms", version = "0.0.8")
|
|
|
|
bazel_dep(name = "bazel_skylib", version = "1.6.1")
|
|
|
|
# Note: rules_cc is special-cased repository; a dependency on rules_cc in a
|
|
# module will not ensure that the root Bazel module has that same version of
|
|
# rules_cc. For that reason, this primarily acts as a FYI. You'll still need
|
|
# to explicitly list this dependency in your own project's MODULE.bazel file.
|
|
bazel_dep(name = "rules_cc", version = "0.0.9")
|
|
|
|
# rules_cc v0.0.10 is not yet cut, so manually pull in the desired version.
|
|
# This does not apply to dependent projects, so it needs to be copied to your
|
|
# project's MODULE.bazel too.
|
|
archive_override(
|
|
module_name = "rules_cc",
|
|
urls = "https://github.com/bazelbuild/rules_cc/archive/1acf5213b6170f1f0133e273cb85ede0e732048f.zip",
|
|
strip_prefix = "rules_cc-1acf5213b6170f1f0133e273cb85ede0e732048f",
|
|
integrity = "sha256-NddP6xi6LzsIHT8bMSVJ2NtoURbN+l3xpjvmIgB6aSg=",
|
|
)
|
|
|
|
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
http_archive(
|
|
name = "arm_gcc_linux-x86_64",
|
|
url = "https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz",
|
|
strip_prefix = "arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi",
|
|
build_file = "//bazel/toolchain:gcc_arm_none_eabi.BUILD",
|
|
sha256 = "6cd1bbc1d9ae57312bcd169ae283153a9572bd6a8e4eeae2fedfbc33b115fdbb",
|
|
)
|
|
|
|
http_archive(
|
|
name = "arm_gcc_win-x86_64",
|
|
url = "https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-mingw-w64-i686-arm-none-eabi.zip",
|
|
strip_prefix = "arm-gnu-toolchain-13.2.Rel1-mingw-w64-i686-arm-none-eabi",
|
|
build_file = "//bazel/toolchain:gcc_arm_none_eabi.BUILD",
|
|
sha256 = "51d933f00578aa28016c5e3c84f94403274ea7915539f8e56c13e2196437d18f",
|
|
)
|
|
|
|
http_archive(
|
|
name = "arm_gcc_mac-x86_64",
|
|
url = "https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-darwin-x86_64-arm-none-eabi.tar.xz",
|
|
strip_prefix = "arm-gnu-toolchain-13.2.Rel1-darwin-x86_64-arm-none-eabi",
|
|
build_file = "//bazel/toolchain:gcc_arm_none_eabi.BUILD",
|
|
sha256 = "075faa4f3e8eb45e59144858202351a28706f54a6ec17eedd88c9fb9412372cc",
|
|
)
|
|
|
|
http_archive(
|
|
name = "arm_gcc_mac-aarch64",
|
|
url = "https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-darwin-arm64-arm-none-eabi.tar.xz",
|
|
strip_prefix = "arm-gnu-toolchain-13.2.Rel1-darwin-arm64-arm-none-eabi",
|
|
build_file = "//bazel/toolchain:gcc_arm_none_eabi.BUILD",
|
|
sha256 = "39c44f8af42695b7b871df42e346c09fee670ea8dfc11f17083e296ea2b0d279",
|
|
)
|
|
|
|
# TODO: Provide tinyusb as a proper Bazel module.
|
|
http_archive(
|
|
name = "tinyusb",
|
|
url = "https://github.com/hathach/tinyusb/archive/86c416d4c0fb38432460b3e11b08b9de76941bf5.zip",
|
|
strip_prefix = "tinyusb-86c416d4c0fb38432460b3e11b08b9de76941bf5",
|
|
build_file = "//src/rp2_common/tinyusb:tinyusb.BUILD",
|
|
sha256 = "ac57109bba00d26ffa33312d5f334990ec9a9a4d82bf890ed8b825b4610d1da2",
|
|
)
|
|
|
|
# TODO: Provide btstack as a proper Bazel module.
|
|
http_archive(
|
|
name = "btstack",
|
|
url = "https://github.com/bluekitchen/btstack/archive/72ef1732c954d938091467961e41f4aa9b976b34.zip",
|
|
strip_prefix = "btstack-72ef1732c954d938091467961e41f4aa9b976b34",
|
|
build_file = "//src/rp2_common/pico_btstack:btstack.BUILD",
|
|
sha256 = "f45d72b5d404dd2f8e311287de6f2ba3561fc8ae956737eeb611b277aadc2391",
|
|
)
|
|
|
|
# TODO: Provide btstack as a proper Bazel module.
|
|
http_archive(
|
|
name = "cyw43-driver",
|
|
url = "https://github.com/georgerobotics/cyw43-driver/archive/8ef38a6d32c54f850bff8f189bdca19ded33792a.zip",
|
|
strip_prefix = "cyw43-driver-8ef38a6d32c54f850bff8f189bdca19ded33792a",
|
|
build_file = "//src/rp2_common/pico_cyw43_driver:cyw43-driver.BUILD",
|
|
sha256 = "0b44a19ea58537ee954357606cde5ed20c3a42be77adfebb07b7c0e4740f6228",
|
|
)
|
|
|
|
# TODO: Provide lwip as a proper Bazel module.
|
|
http_archive(
|
|
name = "lwip",
|
|
url = "https://github.com/lwip-tcpip/lwip/archive/239918ccc173cb2c2a62f41a40fd893f57faf1d6.zip",
|
|
strip_prefix = "lwip-239918ccc173cb2c2a62f41a40fd893f57faf1d6",
|
|
build_file = "//src/rp2_common/pico_lwip:lwip.BUILD",
|
|
sha256 = "7ee9e02f2719c0422377e1fcce5a21716ca2e2e855cca56695f9ef7cb020e5dd",
|
|
)
|
|
|
|
register_toolchains(
|
|
"//bazel/toolchain:arm_gcc_linux-x86_64",
|
|
"//bazel/toolchain:arm_gcc_win-x86_64",
|
|
"//bazel/toolchain:arm_gcc_mac-x86_64",
|
|
"//bazel/toolchain:arm_gcc_mac-aarch64",
|
|
)
|