[llvm] r227594 - Fix lli after the DebugInfo move.

Zachary Turner zturner at google.com
Fri Jan 30 10:42:03 PST 2015


Author: zturner
Date: Fri Jan 30 12:42:03 2015
New Revision: 227594

URL: http://llvm.org/viewvc/llvm-project?rev=227594&view=rev
Log:
Fix lli after the DebugInfo move.

Modified:
    llvm/trunk/tools/lli/Makefile
    llvm/trunk/tools/llvm-jitlistener/Makefile

Modified: llvm/trunk/tools/lli/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/lli/Makefile?rev=227594&r1=227593&r2=227594&view=diff
==============================================================================
--- llvm/trunk/tools/lli/Makefile (original)
+++ llvm/trunk/tools/lli/Makefile Fri Jan 30 12:42:03 2015
@@ -19,7 +19,7 @@ LINK_COMPONENTS := mcjit orcjit instrume
 # If Intel JIT Events support is confiured, link against the LLVM Intel JIT
 # Events interface library
 ifeq ($(USE_INTEL_JITEVENTS), 1)
-  LINK_COMPONENTS += debuginfo inteljitevents object
+  LINK_COMPONENTS += debuginfodwarf inteljitevents object
 endif
 
 # If oprofile support is confiured, link against the LLVM oprofile interface

Modified: llvm/trunk/tools/llvm-jitlistener/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-jitlistener/Makefile?rev=227594&r1=227593&r2=227594&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-jitlistener/Makefile (original)
+++ llvm/trunk/tools/llvm-jitlistener/Makefile Fri Jan 30 12:42:03 2015
@@ -18,7 +18,7 @@ LINK_COMPONENTS := mcjit interpreter nat
 # Events interface library.  If not, this tool will do nothing useful, but it
 # will build correctly.
 ifeq ($(USE_INTEL_JITEVENTS), 1)
-  LINK_COMPONENTS += debuginfo inteljitevents
+  LINK_COMPONENTS += debuginfodwarf inteljitevents
 endif
 
 # This tool has no plugins, optimize startup time.





More information about the llvm-commits mailing list