blob: 98b8209b9e095dfd17392697820502e642c75c7d [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",
12 ],
13 includes = ["."],
14 target_compatible_with = ["@platforms//os:linux"],
15 visibility = ["//visibility:public"],
16 deps = [
17 "//third_party/pico-sdk/src/common/boot_uf2",
18 ],
19)