diff options
author | Bob Wilson <bob.wilson@apple.com> | 2012-04-03 23:13:26 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2012-04-03 23:13:26 +0000 |
commit | d13af63df7ce87440547e9149fe55337c700328e (patch) | |
tree | 610fb87d18a07533fbd78da2a8974847a0d13f8e /utils/buildit/GNUmakefile | |
parent | 93210e847a1496b24cef881723e57c489082dcfe (diff) | |
download | external_llvm-d13af63df7ce87440547e9149fe55337c700328e.zip external_llvm-d13af63df7ce87440547e9149fe55337c700328e.tar.gz external_llvm-d13af63df7ce87440547e9149fe55337c700328e.tar.bz2 |
Remove dead code for installing libLTO when building llvmCore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153978 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/buildit/GNUmakefile')
-rw-r--r-- | utils/buildit/GNUmakefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/utils/buildit/GNUmakefile b/utils/buildit/GNUmakefile index a362fa6..bdf87d5 100644 --- a/utils/buildit/GNUmakefile +++ b/utils/buildit/GNUmakefile @@ -46,9 +46,6 @@ else LLVM_OPTIMIZED := yes endif -# Default to not install libLTO.dylib. -INSTALL_LIBLTO := no - # Default to do a native build, not a cross-build for an ARM host or simulator. ARM_HOSTED_BUILD := no IOS_SIM_BUILD := no @@ -66,7 +63,7 @@ install: $(OBJROOT) $(SYMROOT) $(DSTROOT) cd $(OBJROOT) && \ $(SRC)/utils/buildit/build_llvm "$(RC_ARCHS)" "$(TARGETS)" \ $(SRC) $(PREFIX) $(DSTROOT) $(SYMROOT) \ - $(ENABLE_ASSERTIONS) $(LLVM_OPTIMIZED) $(INSTALL_LIBLTO) \ + $(ENABLE_ASSERTIONS) $(LLVM_OPTIMIZED) \ $(ARM_HOSTED_BUILD) $(IOS_SIM_BUILD) \ $(RC_ProjectSourceVersion) $(RC_ProjectSourceSubversion) |