summaryrefslogtreecommitdiff
path: root/test/xray/lit.cfg
diff options
context:
space:
mode:
authorDean Michael Berris <dberris@google.com>2017-07-31 05:16:20 +0000
committerDean Michael Berris <dberris@google.com>2017-07-31 05:16:20 +0000
commit87f217d20bb24fa92a5882c2a565e1f14ad41e85 (patch)
tree32dab2da71e58366da6f8ef23347075e4523fcf2 /test/xray/lit.cfg
parent1c338cbe701cacb8136b58b0a62766b8ffe51fb5 (diff)
[XRay][compiler-rt] Do not print the warning when the binary is not XRay instrumented.
Summary: Currently when the XRay runtime is linked into a binary that doesn't have the instrumentation map, we print a warning unconditionally. This change attempts to make this behaviour more quiet. Reviewers: kpw, pelikan Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D35789 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@309534 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/xray/lit.cfg')
-rw-r--r--test/xray/lit.cfg5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/xray/lit.cfg b/test/xray/lit.cfg
index b07dcbd79..2852bdb74 100644
--- a/test/xray/lit.cfg
+++ b/test/xray/lit.cfg
@@ -31,6 +31,11 @@ config.substitutions.append(
('%clangxx_xray', build_invocation(clang_xray_cxxflags)))
config.substitutions.append(
('%llvm_xray', llvm_xray))
+config.substitutions.append(
+ ('%xraylib',
+ ('-lm -lpthread -ldl -lrt -L%s '
+ '-Wl,-whole-archive -lclang_rt.xray-%s -Wl,-no-whole-archive')
+ % (config.compiler_rt_libdir, config.host_arch)))
# Default test suffixes.
config.suffixes = ['.c', '.cc', '.cpp']