aboutsummaryrefslogtreecommitdiff
path: root/utils/bazel/.bazelrc
diff options
context:
space:
mode:
authorJordan Rupprecht <rupprecht@google.com>2022-12-28 08:13:20 -0800
committerJordan Rupprecht <rupprecht@google.com>2022-12-28 08:13:20 -0800
commit4aa77690b98e564c598505749d4eb57b9a8be32c (patch)
tree49fe85e2b311a7425b3028fcdb484b697a167e7a /utils/bazel/.bazelrc
parent243b1e97d6cdc36d94f422e9f273c97054520d2e (diff)
downloadllvm-4aa77690b98e564c598505749d4eb57b9a8be32c.zip
llvm-4aa77690b98e564c598505749d4eb57b9a8be32c.tar.gz
llvm-4aa77690b98e564c598505749d4eb57b9a8be32c.tar.bz2
[bazel] Restore libpfm as a conditional dependency for exegesis.
We used to have `pfm` built into exegesis, although since it's an external dependency we marked it as a manual target. Because of this we didn't have buildbot coverage and so we removed it in D134510 after we had a few breakages that weren't caught. This adds it back, but with three possible states similar to the story with `mpfr`, i.e. it can either be disabled, built from external sources (git/make), or use whatever `-lpfm` is installed on the system. This change is modeled after D119547. Like that patch, the default is off (matching the status quo), but unlike that patch we don't enable it for CI because IIRC we don't have the package installed there, and building from source might be expensive. We could enable it later either after installing it on buildbot machines or by measuring build cost and deeming it OK. Reviewed By: GMNGeoffrey Differential Revision: https://reviews.llvm.org/D138470
Diffstat (limited to 'utils/bazel/.bazelrc')
-rw-r--r--utils/bazel/.bazelrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/bazel/.bazelrc b/utils/bazel/.bazelrc
index f15da71..b2b472b 100644
--- a/utils/bazel/.bazelrc
+++ b/utils/bazel/.bazelrc
@@ -168,9 +168,10 @@ build:ci --config=generic_clang
# Speedup bazel using a ramdisk.
build:ci --sandbox_base=/dev/shm
-# Use system's mpfr instead of building it from source.
+# Use system's mpfr and pfm instead of building it from source.
# This is non hermetic but helps with compile time.
build:ci --@llvm-project//libc:mpfr=system
+build:ci --@llvm-project//llvm:pfm=system
# Don't build/test targets tagged with "nobuildkite".
build:ci --build_tag_filters=-nobuildkite