blob: 3c8cf78efa2152549a2ca32086a0e33a8fcba57f [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",
11 "-Wno-unused-function",
Brian Silverman4c7235a2021-11-17 19:04:37 -080012 "-Wno-type-limits",
Austin Schuh0a96ea32022-01-01 22:29:30 -080013 ],
14 includes = ["."],
15 target_compatible_with = ["@platforms//os:linux"],
16 visibility = ["//visibility:public"],
17 deps = [
18 "//third_party/pico-sdk/src/common/boot_uf2",
19 ],
20)