[llvm-commits] [llvm] r65940 - /llvm/trunk/Makefile.rules

Mikhail Glushenkov foldr at codedgers.com
Tue Mar 3 02:03:27 PST 2009


Author: foldr
Date: Tue Mar  3 04:03:27 2009
New Revision: 65940

URL: http://llvm.org/viewvc/llvm-project?rev=65940&view=rev
Log:
LINK_COMPONENTS should be added to LLVMLibsOptions.

>From the code: "There are "Proj" libs (defined by the user's project) and "LLVM"
libs (defined by the LLVM project)." LINK_COMPONENTS are clearly defined by the
LLVM project.

Additionally, this fixes an issue with llvmc's build process:-)

Modified:
    llvm/trunk/Makefile.rules

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=65940&r1=65939&r2=65940&view=diff

==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Tue Mar  3 04:03:27 2009
@@ -784,8 +784,8 @@
 
 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
 
-ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs     $(LINK_COMPONENTS))
-ProjLibsPaths   += $(LLVM_CONFIG) \
+LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs     $(LINK_COMPONENTS))
+LLVMLibsPaths   += $(LLVM_CONFIG) \
                   $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
 endif
 endif





More information about the llvm-commits mailing list