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