The `cc_binary` rule lets you pass additional inputs to the linker via `additional_linker_inputs`. ``` cc_binary( name = "bar", srcs = ["bar.c"], additional_linker_inputs = ["data.bin"], linkopts = ["-Wl,-sectcreate,__TEXT,__mysection,$(execpath data.bin)"], ) ``` Can `swift_binary` support this?