diff options
Diffstat (limited to 'utils/buildit/GNUmakefile')
-rw-r--r-- | utils/buildit/GNUmakefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/buildit/GNUmakefile b/utils/buildit/GNUmakefile index 8d8504c39b5c..e0568d2f145f 100644 --- a/utils/buildit/GNUmakefile +++ b/utils/buildit/GNUmakefile @@ -46,6 +46,9 @@ else LLVM_OPTIMIZED := yes endif +# Default to not install libLTO.dylib. +INSTALL_LIBLTO := no + ifndef RC_ProjectSourceVersion RC_ProjectSourceVersion = 9999 endif @@ -59,10 +62,9 @@ install: $(OBJROOT) $(SYMROOT) $(DSTROOT) cd $(OBJROOT) && \ $(SRC)/utils/buildit/build_llvm "$(RC_ARCHS)" "$(TARGETS)" \ $(SRC) $(PREFIX) $(DSTROOT) $(SYMROOT) \ - $(ENABLE_ASSERTIONS) $(LLVM_OPTIMIZED) \ + $(ENABLE_ASSERTIONS) $(LLVM_OPTIMIZED) $(INSTALL_LIBLTO) \ $(RC_ProjectSourceVersion) $(RC_ProjectSourceSubversion) - # installhdrs does nothing, because the headers aren't useful until # the compiler is installed. installhdrs: |