blob: 6e72428b67df292b05506c6bcb95124665a6179d [file] [log] [blame]
# Copyright 2024 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load("@rules_cc//cc/toolchains:args.bzl", "cc_args")
cc_args(
name = "warnings",
actions = [
"@rules_cc//cc/toolchains/actions:c_compile",
"@rules_cc//cc/toolchains/actions:cpp_compile_actions",
],
args = [
"-Werror",
"-Wall",
"-Wextra",
"-Wpedantic",
],
visibility = ["//visibility:public"],
)
cc_args(
name = "no_absolute_paths_for_builtins",
actions = [
"@rules_cc//cc/toolchains/actions:compile_actions",
],
args = ["-no-canonical-prefixes"] + select({
"//constraint:gcc": ["-fno-canonical-system-headers"],
"//conditions:default": [],
}),
visibility = ["//visibility:public"],
)
cc_args(
name = "target",
actions = [
"@rules_cc//cc/toolchains/actions:compile_actions",
"@rules_cc//cc/toolchains/actions:link_actions",
],
args = select({
"//constraint:linux_aarch64": ["--target=aarch64-unknown-linux-gnu"],
"//constraint:linux_x86_64": ["--target=x86_64-unknown-linux-gnu"],
}),
visibility = ["//visibility:public"],
)