1
Fork 0
hermetic_cc_toolchain/test/c/BUILD

14 lines
277 B
Python
Raw Normal View History

2021-06-07 22:56:15 +03:00
cc_binary(
name = "hello",
srcs = ["hello.cpp"],
target_compatible_with = select({
"@platforms//os:linux": ["@com_github_ziglang_zig//:musl"],
"//conditions:default": [],
}),
)
cc_binary(
name = "exception",
srcs = ["exception.cpp"],
)