aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2009-03-03 10:03:27 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2009-03-03 10:03:27 +0000
commitfc32082bdcfaac6f26b7a1500f3ba2cc97d3f2f2 (patch)
tree76fce717ee290c792043e4569a00aae7ff6cddf6
parent05954402b266f38df844fccbae62f6093f5a55c9 (diff)
downloadexternal_llvm-fc32082bdcfaac6f26b7a1500f3ba2cc97d3f2f2.zip
external_llvm-fc32082bdcfaac6f26b7a1500f3ba2cc97d3f2f2.tar.gz
external_llvm-fc32082bdcfaac6f26b7a1500f3ba2cc97d3f2f2.tar.bz2
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:-) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65940 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Makefile.rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 1dc329d..6b27175 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -784,8 +784,8 @@ $(LLVM_CONFIG):
$(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