Austin Schuh | 0a96ea3 | 2022-01-01 22:29:30 -0800 | [diff] [blame^] | 1 | cc_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 | ) |