From: Zachary Turner Date: Fri, 30 Jan 2015 18:42:03 +0000 (+0000) Subject: Fix lli after the DebugInfo move. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=728d12e435271a9185f2e344867af2b144e1a4a7;p=oota-llvm.git Fix lli after the DebugInfo move. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227594 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/lli/Makefile b/tools/lli/Makefile index ab40f2f1136..70d8c80e5c0 100644 --- a/tools/lli/Makefile +++ b/tools/lli/Makefile @@ -19,7 +19,7 @@ LINK_COMPONENTS := mcjit orcjit instrumentation interpreter nativecodegen bitrea # 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 diff --git a/tools/llvm-jitlistener/Makefile b/tools/llvm-jitlistener/Makefile index 6d72427e96e..06132f9900f 100644 --- a/tools/llvm-jitlistener/Makefile +++ b/tools/llvm-jitlistener/Makefile @@ -18,7 +18,7 @@ LINK_COMPONENTS := mcjit interpreter nativecodegen bitreader asmparser irreader # 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.