mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 19:10:14 +01:00
Rules executed by bazel don't necessarily have the right environment to find the symbolizer, which was the intent of `cc_env` setting `LLVM_SYMBOLIZER_PATH`. So far, this has kind of been a case-by-case fix, but every so often I'm trying to debug a crash in a test that doesn't provide it. Rather continuing down this route, instead add drop-in wrappers for cc rules so that it's hard to forget. Note `bazel/cc_rules` is intended to mirror `bazel/carbon_rules` and `bazel/cc_toolchains`, rather than `@rules_cc`. AFAICT there isn't a great way to add this as a default for the `bazel run` environment. It's not typically going to be set on its own, forwarding `$PATH` would be too broad, and the [action `env_sets`](https://bazel.build/docs/cc-toolchain-config-reference#using-action-config) I think are not quite what we need (I think those don't include output execution, only compilation).
35 lines
916 B
Python
35 lines
916 B
Python
# Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
# Exceptions. See /LICENSE for license information.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
load("@bazel_skylib//lib:selects.bzl", "selects")
|
|
load("//bazel/cc_rules:defs.bzl", "cc_library")
|
|
|
|
config_setting(
|
|
name = "is_linux",
|
|
constraint_values = ["@platforms//os:linux"],
|
|
)
|
|
|
|
config_setting(
|
|
name = "opt",
|
|
values = {"compilation_mode": "opt"},
|
|
)
|
|
|
|
selects.config_setting_group(
|
|
name = "linux_opt",
|
|
match_all = [
|
|
":is_linux",
|
|
":opt",
|
|
],
|
|
)
|
|
|
|
# A library that enables TCMalloc for optimized builds on Linux. On other
|
|
# platforms and configurations, this falls back on the system malloc.
|
|
cc_library(
|
|
name = "tcmalloc_if_linux_opt",
|
|
deps = select({
|
|
":linux_opt": ["@tcmalloc//tcmalloc"],
|
|
"//conditions:default": ["@bazel_tools//tools/cpp:malloc"],
|
|
}),
|
|
)
|