blob: 0fd1aef06917d65cba048db74943c783081d0db0 [file] [log] [blame] [edit]
package(default_visibility = ["//visibility:public"])
cc_library(
name = "elf",
srcs = ["elf_file.cpp"],
hdrs = [
"elf.h",
"elf_file.h",
"portable_endian.h",
],
copts = select({
"@platforms//os:windows": [],
"//conditions:default": [
"-Wno-unused-function",
],
}),
includes = ["."],
deps = ["//model", "//errors"],
)