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", |
Brian Silverman | 4c7235a | 2021-11-17 19:04:37 -0800 | [diff] [blame] | 12 | "-Wno-type-limits", |
Austin Schuh | 0a96ea3 | 2022-01-01 22:29:30 -0800 | [diff] [blame] | 13 | ], |
| 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 | ) |