diff options
author | Andrew Kaylor <andrew.kaylor@intel.com> | 2013-01-28 19:52:37 +0000 |
---|---|---|
committer | Andrew Kaylor <andrew.kaylor@intel.com> | 2013-01-28 19:52:37 +0000 |
commit | 710cb0c7826c61b432e19d5899a2f26f76d7aa81 (patch) | |
tree | ed8f79a169a0ab4360e5680008b8748b0a78ed70 /tools/llvm-jitlistener/Makefile | |
parent | 3c1c042a64e0d0d01c0e2817aa1f0f5c9c726a80 (diff) | |
download | external_llvm-710cb0c7826c61b432e19d5899a2f26f76d7aa81.zip external_llvm-710cb0c7826c61b432e19d5899a2f26f76d7aa81.tar.gz external_llvm-710cb0c7826c61b432e19d5899a2f26f76d7aa81.tar.bz2 |
Add support for source and line information to IntelJITEventListener for object emitted by MCJIT.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173712 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-jitlistener/Makefile')
-rw-r--r-- | tools/llvm-jitlistener/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-jitlistener/Makefile b/tools/llvm-jitlistener/Makefile index 0971e6a..3018235 100644 --- a/tools/llvm-jitlistener/Makefile +++ b/tools/llvm-jitlistener/Makefile @@ -18,7 +18,7 @@ LINK_COMPONENTS := mcjit jit interpreter nativecodegen bitreader asmparser selec # Events interface library. If not, this tool will do nothing useful, but it
# will build correctly.
ifeq ($(USE_INTEL_JITEVENTS), 1)
- LINK_COMPONENTS += inteljitevents
+ LINK_COMPONENTS += debuginfo inteljitevents
endif
# This tool has no plugins, optimize startup time.
|