blob: 1a985c8789f041ca7269b53d6c30fedb5a77a74c [file] [log] [blame]
Austin Schuh0a96ea32022-01-01 22:29:30 -08001cc_binary(
2 name = "elf2uf2",
3 srcs = [
4 "elf.h",
5 "main.cpp",
6 ],
7 copts = [
8 "-Wno-format-nonliteral",
9 "-Wno-reorder",
10 "-Wno-unused-parameter",
Ravago Jones281800e2023-02-13 02:24:07 -080011 "-Wno-unused-variable",
Austin Schuh0a96ea32022-01-01 22:29:30 -080012 "-Wno-unused-function",
Brian Silverman4c7235a2021-11-17 19:04:37 -080013 "-Wno-type-limits",
Austin Schuh0a96ea32022-01-01 22:29:30 -080014 ],
15 includes = ["."],
16 target_compatible_with = ["@platforms//os:linux"],
17 visibility = ["//visibility:public"],
18 deps = [
19 "//third_party/pico-sdk/src/common/boot_uf2",
20 ],
21)