aboutsummaryrefslogtreecommitdiff
path: root/utils/bazel/.bazelrc
diff options
context:
space:
mode:
authorArthur Eubanks <aeubanks@google.com>2022-09-25 18:49:49 -0700
committerArthur Eubanks <aeubanks@google.com>2022-09-25 18:49:49 -0700
commit7a8b9307cad04dbc225747648a4fccb6ff176768 (patch)
treea3d96607b61892bf2ebb4ef0a26ff8b14069882c /utils/bazel/.bazelrc
parent2698be0cc993aedf6cc66e20c309025c7dc5beb2 (diff)
downloadllvm-7a8b9307cad04dbc225747648a4fccb6ff176768.zip
llvm-7a8b9307cad04dbc225747648a4fccb6ff176768.tar.gz
llvm-7a8b9307cad04dbc225747648a4fccb6ff176768.tar.bz2
[bazel] Always specify --strip=never
Diffstat (limited to 'utils/bazel/.bazelrc')
-rw-r--r--utils/bazel/.bazelrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/bazel/.bazelrc b/utils/bazel/.bazelrc
index e2967f1..cf2c9c5 100644
--- a/utils/bazel/.bazelrc
+++ b/utils/bazel/.bazelrc
@@ -18,6 +18,10 @@ build --force_pic
# super large, the benefits of shared objects are minimal.
build --dynamic_mode=off
+# Rely on compiler flags to compile with debug info/strip rather than stripping
+# based on compilation_mode.
+build --strip=never
+
###############################################################################
# Options to select different strategies for linking potential dependent
# libraries. The default leaves it disabled.