mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
Updates rules_cc to v0.0.10 to reduce the steps required to get started with creating a Bazel-based Pi Pico project.
136 lines
6.1 KiB
Text
136 lines
6.1 KiB
Text
module(
|
|
name = "pico-sdk",
|
|
version = "2.0.1-develop",
|
|
)
|
|
|
|
bazel_dep(name = "platforms", version = "0.0.9")
|
|
bazel_dep(name = "bazel_skylib", version = "1.6.1")
|
|
bazel_dep(name = "rules_python", version = "0.22.1")
|
|
bazel_dep(name = "picotool", version = "2.0.0")
|
|
bazel_dep(name = "rules_cc", version = "0.0.10")
|
|
|
|
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
http_archive(
|
|
name = "arm_gcc_linux-aarch64",
|
|
build_file = "//bazel/toolchain:gcc_arm_none_eabi.BUILD",
|
|
sha256 = "8fd8b4a0a8d44ab2e195ccfbeef42223dfb3ede29d80f14dcf2183c34b8d199a",
|
|
strip_prefix = "arm-gnu-toolchain-13.2.Rel1-aarch64-arm-none-eabi",
|
|
url = "https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-aarch64-arm-none-eabi.tar.xz",
|
|
)
|
|
|
|
http_archive(
|
|
name = "arm_gcc_linux-x86_64",
|
|
build_file = "//bazel/toolchain:gcc_arm_none_eabi.BUILD",
|
|
sha256 = "6cd1bbc1d9ae57312bcd169ae283153a9572bd6a8e4eeae2fedfbc33b115fdbb",
|
|
strip_prefix = "arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi",
|
|
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",
|
|
)
|
|
|
|
http_archive(
|
|
name = "arm_gcc_win-x86_64",
|
|
build_file = "//bazel/toolchain:gcc_arm_none_eabi.BUILD",
|
|
sha256 = "51d933f00578aa28016c5e3c84f94403274ea7915539f8e56c13e2196437d18f",
|
|
strip_prefix = "arm-gnu-toolchain-13.2.Rel1-mingw-w64-i686-arm-none-eabi",
|
|
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",
|
|
)
|
|
|
|
http_archive(
|
|
name = "arm_gcc_mac-x86_64",
|
|
build_file = "//bazel/toolchain:gcc_arm_none_eabi.BUILD",
|
|
sha256 = "075faa4f3e8eb45e59144858202351a28706f54a6ec17eedd88c9fb9412372cc",
|
|
strip_prefix = "arm-gnu-toolchain-13.2.Rel1-darwin-x86_64-arm-none-eabi",
|
|
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",
|
|
)
|
|
|
|
http_archive(
|
|
name = "arm_gcc_mac-aarch64",
|
|
build_file = "//bazel/toolchain:gcc_arm_none_eabi.BUILD",
|
|
sha256 = "39c44f8af42695b7b871df42e346c09fee670ea8dfc11f17083e296ea2b0d279",
|
|
strip_prefix = "arm-gnu-toolchain-13.2.Rel1-darwin-arm64-arm-none-eabi",
|
|
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",
|
|
)
|
|
|
|
http_archive(
|
|
name = "clang_linux-x86_64",
|
|
build_file = "//bazel/toolchain:clang.BUILD",
|
|
sha256 = "6c599d1aba568236064c340d7813324849896d5a4e2f3fd8225a8c31bfcbf884",
|
|
type = "zip",
|
|
url = "https://chrome-infra-packages.appspot.com/dl/fuchsia/third_party/clang/linux-amd64/+/git_revision:2b0a708f41dd6291ee744704d43febc975e3d026",
|
|
)
|
|
|
|
http_archive(
|
|
name = "clang_win-x86_64",
|
|
build_file = "//bazel/toolchain:clang.BUILD",
|
|
sha256 = "f49ba4123ee3958f2b47289d017a5b3f1ca01f82dd7a2168c45412c18101fd13",
|
|
type = "zip",
|
|
# Windows doesn't like `:` in the produced filename, so replace it with `%3A`.
|
|
url = "https://chrome-infra-packages.appspot.com/dl/fuchsia/third_party/clang/windows-amd64/+/git_revision:2b0a708f41dd6291ee744704d43febc975e3d026".replace("git_revision:", "git_revision%3A"),
|
|
)
|
|
|
|
http_archive(
|
|
name = "clang_mac-x86_64",
|
|
build_file = "//bazel/toolchain:clang.BUILD",
|
|
sha256 = "d3516f2eb4c12d17ae77ee84c9226fbea581d4fb806910ceac4717d5adfcf748",
|
|
type = "zip",
|
|
url = "https://chrome-infra-packages.appspot.com/dl/fuchsia/third_party/clang/mac-amd64/+/git_revision:2b0a708f41dd6291ee744704d43febc975e3d026",
|
|
)
|
|
|
|
http_archive(
|
|
name = "clang_mac-aarch64",
|
|
build_file = "//bazel/toolchain:clang.BUILD",
|
|
sha256 = "68e551f41c7e9473063b09819f6ab8ec6e7e53677f4078189656cb14dc52984b",
|
|
type = "zip",
|
|
url = "https://chrome-infra-packages.appspot.com/dl/fuchsia/third_party/clang/mac-arm64/+/git_revision:2b0a708f41dd6291ee744704d43febc975e3d026",
|
|
)
|
|
|
|
# TODO: Provide tinyusb as a proper Bazel module.
|
|
http_archive(
|
|
name = "tinyusb",
|
|
build_file = "//src/rp2_common/tinyusb:tinyusb.BUILD",
|
|
sha256 = "d64728aef58b80d5ce3747cad133f520da46e2b7ea3aadfda0e981aba6b658b3",
|
|
strip_prefix = "tinyusb-4232642899362fa5e9cf0dc59bad6f1f6d32c563",
|
|
url = "https://github.com/hathach/tinyusb/archive/4232642899362fa5e9cf0dc59bad6f1f6d32c563.tar.gz",
|
|
)
|
|
|
|
# TODO: Provide btstack as a proper Bazel module.
|
|
http_archive(
|
|
name = "btstack",
|
|
build_file = "//src/rp2_common/pico_btstack:btstack.BUILD",
|
|
sha256 = "64e86d9cf82b346e743fe1d4818b9380712b17abdb3f2c3524e92464b5ef3d19",
|
|
strip_prefix = "btstack-2b49e57bd1fae85ac32ac1f41cdb7c794de335f6",
|
|
url = "https://github.com/bluekitchen/btstack/archive/2b49e57bd1fae85ac32ac1f41cdb7c794de335f6.tar.gz",
|
|
)
|
|
|
|
# TODO: Provide btstack as a proper Bazel module.
|
|
http_archive(
|
|
name = "cyw43-driver",
|
|
build_file = "//src/rp2_common/pico_cyw43_driver:cyw43-driver.BUILD",
|
|
sha256 = "0fcc7707fef95dd562d5572604713266613a27caeeae2f10afeccee9592a53ce",
|
|
strip_prefix = "cyw43-driver-faf36381bad1f668a30172b6336c9a970966ef4c",
|
|
url = "https://github.com/georgerobotics/cyw43-driver/archive/faf36381bad1f668a30172b6336c9a970966ef4c.tar.gz",
|
|
)
|
|
|
|
# TODO: Provide lwip as a proper Bazel module.
|
|
http_archive(
|
|
name = "lwip",
|
|
build_file = "//src/rp2_common/pico_lwip:lwip.BUILD",
|
|
sha256 = "72856d557f72911cf6826ef745c23c54822df83a474557823241164a1d1361aa",
|
|
strip_prefix = "lwip-0a0452b2c39bdd91e252aef045c115f88f6ca773",
|
|
url = "https://github.com/lwip-tcpip/lwip/archive/0a0452b2c39bdd91e252aef045c115f88f6ca773.tar.gz",
|
|
)
|
|
|
|
register_toolchains(
|
|
"//bazel/toolchain:linux-aarch64-rp2040",
|
|
"//bazel/toolchain:linux-aarch64-rp2350",
|
|
"//bazel/toolchain:linux-x86_64-rp2040",
|
|
"//bazel/toolchain:linux-x86_64-rp2350",
|
|
"//bazel/toolchain:win-x86_64-rp2040",
|
|
"//bazel/toolchain:win-x86_64-rp2350",
|
|
"//bazel/toolchain:mac-x86_64-rp2040",
|
|
"//bazel/toolchain:mac-x86_64-rp2350",
|
|
"//bazel/toolchain:mac-aarch64-rp2040",
|
|
"//bazel/toolchain:mac-aarch64-rp2350",
|
|
# Require users to opt-in to the Pico SDK's toolchains.
|
|
dev_dependency = True,
|
|
)
|