[llvm-commits] CVS: llvm/tools/llvmc/Makefile
    Lauro Ramos Venancio 
    lauro.venancio at gmail.com
       
    Mon Feb 12 10:32:03 PST 2007
    
    
  
Changes in directory llvm/tools/llvmc:
Makefile updated: 1.23 -> 1.24
---
Log message:
Fix build error on ARM.
Since CompilerDriver.cpp revision 1.44, llvmc must be linked against LLVMCore.a (llvm::Module::~Module) and LLVMBCReader.a 
(llvm::getBytecodeModuleProvider).
---
Diffs of the changes:  (+1 -1)
 Makefile |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/llvmc/Makefile
diff -u llvm/tools/llvmc/Makefile:1.23 llvm/tools/llvmc/Makefile:1.24
--- llvm/tools/llvmc/Makefile:1.23	Wed Dec 13 02:09:48 2006
+++ llvm/tools/llvmc/Makefile	Mon Feb 12 12:31:46 2007
@@ -8,7 +8,7 @@
 ##===----------------------------------------------------------------------===##
 LEVEL = ../..
 TOOLNAME = llvmc
-LINK_COMPONENTS = support system
+LINK_COMPONENTS = support system core bcreader
 CONFIG_FILES = c cpp ll st
 EXTRA_DIST = c cpp ll ConfigLexer.cpp.cvs ConfigLexer.l.cvs
 REQUIRES_EH := 1
    
    
More information about the llvm-commits
mailing list