[llvm-commits] CVS: llvm/tools/llvm2cpp/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Sun Sep 3 22:59:49 PDT 2006
Changes in directory llvm/tools/llvm2cpp:
Makefile updated: 1.7 -> 1.8
---
Log message:
Use LINK_COMPONENTS to specify *components* to link against instead of
using USED_LIBS to specify *libraries* to link against.
---
Diffs of the changes: (+1 -2)
Makefile | 3 +--
1 files changed, 1 insertion(+), 2 deletions(-)
Index: llvm/tools/llvm2cpp/Makefile
diff -u llvm/tools/llvm2cpp/Makefile:1.7 llvm/tools/llvm2cpp/Makefile:1.8
--- llvm/tools/llvm2cpp/Makefile:1.7 Thu Jul 6 19:46:19 2006
+++ llvm/tools/llvm2cpp/Makefile Mon Sep 4 00:59:09 2006
@@ -8,10 +8,9 @@
##===----------------------------------------------------------------------===##
LEVEL = ../..
TOOLNAME = llvm2cpp
-USEDLIBS = LLVMBCReader.a LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a
+LINK_COMPONENTS = bcreader
REQUIRES_EH := 1
include $(LEVEL)/Makefile.common
CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
-CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))
More information about the llvm-commits
mailing list