diff --git a/src/rp2_common/pico_crt0/rp2040/BUILD.bazel b/src/rp2_common/pico_crt0/rp2040/BUILD.bazel index d70458677..dcf727cc5 100644 --- a/src/rp2_common/pico_crt0/rp2040/BUILD.bazel +++ b/src/rp2_common/pico_crt0/rp2040/BUILD.bazel @@ -1,5 +1,14 @@ package(default_visibility = ["//visibility:public"]) +exports_files( + [ + "memmap_blocked_ram.ld", + "memmap_copy_to_ram.ld", + "memmap_default.ld", + "memmap_no_flash.ld", + ] +) + # It's possible to set linker scripts globally or on a per-binary basis. # # Setting globally: diff --git a/src/rp2_common/pico_crt0/rp2350/BUILD.bazel b/src/rp2_common/pico_crt0/rp2350/BUILD.bazel index 5c13f5a95..88cbd1032 100644 --- a/src/rp2_common/pico_crt0/rp2350/BUILD.bazel +++ b/src/rp2_common/pico_crt0/rp2350/BUILD.bazel @@ -1,5 +1,13 @@ package(default_visibility = ["//visibility:public"]) +exports_files( + [ + "memmap_copy_to_ram.ld", + "memmap_default.ld", + "memmap_no_flash.ld", + ] +) + # It's possible to set linker scripts globally or on a per-binary basis. # # Setting globally: