diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2007-01-08 06:25:29 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2007-01-08 06:25:29 +0000 |
commit | 40e274b5799b13646914b31c622ac857e5929732 (patch) | |
tree | 57ccf49bdfd98d4a22ed1f6fab0cc3a50fd6ae78 /tools/Makefile | |
parent | ca7ad8942a42eaf70d3ee3fa87d6a8211f4b5689 (diff) | |
download | external_llvm-40e274b5799b13646914b31c622ac857e5929732.zip external_llvm-40e274b5799b13646914b31c622ac857e5929732.tar.gz external_llvm-40e274b5799b13646914b31c622ac857e5929732.tar.bz2 |
Build libLLVMlto on non-Darwin architectures. Resolves PR1055: http://llvm.org/PR1055
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33006 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 f1abf93..c12f079 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -22,8 +22,8 @@ PARALLEL_DIRS := llvm-config llvm-upgrade \ include $(LEVEL)/Makefile.config -# Disable liblto on non-darwin platforms right now until LLVM is built PIC. -ifeq ($(OS), Darwin) +# Disable liblto on Windows until compatability is determined. +ifneq ($(OS), MingW) PARALLEL_DIRS += lto endif |