We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66f4ae4 commit 9d8da9cCopy full SHA for 9d8da9c
examples/cpp/BUILD
@@ -10,7 +10,9 @@ cc_library(
10
11
cc_binary(
12
name = "bin",
13
- srcs = ["main.cpp"],
+ srcs = [
14
+ "main.cpp",
15
+ ],
16
features = select({
17
"//bazel/platforms:aarch64_config": ["warnings_critical_code_gcc"],
18
"//conditions:default": ["warnings_critical_code_clang"],
examples/cpp/main.cpp
@@ -4,5 +4,6 @@
4
5
auto main(int /*argc*/, char** /*argv*/) -> int {
6
std::cout << greet() << '\n';
7
+ std::cout << farewell() << '\n';
8
return 0;
9
}
0 commit comments