Skip to content

Commit b013dc4

Browse files
committedSep 25, 2017
[XRay][Driver] Do not link in XRay runtime in shared libs
Summary: This change ensures that we don't link in the XRay runtime when building shared libraries with clang. This doesn't prevent us from building shared libraris tht have XRay instrumentation sleds, but it does prevent us from linking in the static XRay runtime into a shared library. The XRay runtime currently doesn't support dynamic registration of instrumentation sleds in shared objects, which we'll start enabling in the future. That work has to happen in the back-end and in the runtime. Reviewers: rnk, pelikan Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D38226 llvm-svn: 314177
1 parent 305e1b5 commit b013dc4

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
 

‎clang/lib/Driver/ToolChains/Gnu.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -206,13 +206,18 @@ void tools::gcc::Linker::RenderExtraToolArgs(const JobAction &JA,
206206

207207
static bool addXRayRuntime(const ToolChain &TC, const ArgList &Args,
208208
ArgStringList &CmdArgs) {
209+
// Do not add the XRay runtime to shared libraries.
210+
if (Args.hasArg(options::OPT_shared))
211+
return false;
212+
209213
if (Args.hasFlag(options::OPT_fxray_instrument,
210214
options::OPT_fnoxray_instrument, false)) {
211215
CmdArgs.push_back("-whole-archive");
212216
CmdArgs.push_back(TC.getCompilerRTArgString(Args, "xray", false));
213217
CmdArgs.push_back("-no-whole-archive");
214218
return true;
215219
}
220+
216221
return false;
217222
}
218223

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// RUN: %clangxx -shared -fPIC -o /dev/null -v -fxray-instrument %s 2>&1 | \
2+
// RUN: FileCheck %s --check-prefix=SHARED
3+
// RUN: %clangxx -static -o /dev/null -v -fxray-instrument %s 2>&1 -DMAIN | \
4+
// RUN: FileCheck %s --check-prefix=STATIC
5+
// RUN: %clangxx -static -fPIE -o /dev/null -v -fxray-instrument %s 2>&1 \
6+
// RUN: -DMAIN | FileCheck %s --check-prefix=STATIC
7+
//
8+
// SHARED-NOT: {{clang_rt\.xray-}}
9+
// STATIC: {{clang_rt\.xray-}}
10+
int foo() { return 42; }
11+
12+
#ifdef MAIN
13+
int main() { return foo(); }
14+
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.