diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-07-04 03:54:54 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-07-04 03:54:54 +0000 |
commit | 714440d7b74649deca508a402bfdf3e6a00b4703 (patch) | |
tree | ae8fa9d31a225354b16bd6640314af3ad10e5d1f /tools/Makefile | |
parent | 25daf3497d1510a78739d163df8b1443abd018da (diff) | |
download | external_llvm-714440d7b74649deca508a402bfdf3e6a00b4703.zip external_llvm-714440d7b74649deca508a402bfdf3e6a00b4703.tar.gz external_llvm-714440d7b74649deca508a402bfdf3e6a00b4703.tar.bz2 |
LLVMC doesn't need ENABLE_PIC to build now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74783 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile index 32b9965..4f0f54b 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -21,7 +21,7 @@ PARALLEL_DIRS := opt llvm-as llvm-dis \ llvm-ld llvm-prof llvm-link \ lli gccas gccld llvm-extract llvm-db \ bugpoint llvm-bcanalyzer llvm-stub \ - llvm-mc + llvm-mc llvmc # Let users override the set of tools to build from the command line. ifdef ONLY_TOOLS @@ -32,7 +32,7 @@ endif include $(LEVEL)/Makefile.config ifeq ($(ENABLE_PIC),1) - DIRS += lto llvmc + DIRS += lto ifdef BINUTILS_INCDIR DIRS += gold endif |