[llvm-commits] CVS: llvm/tools/Makefile
Anton Korobeynikov
asl at math.spbu.ru
Fri Sep 8 11:00:57 PDT 2006
Changes in directory llvm/tools:
Makefile updated: 1.55 -> 1.56
---
Log message:
Enabling LTO building on Darwin only right now. This probably should be
removed after 'PIC vs non-PIC' problem solution
---
Diffs of the changes: (+4 -2)
Makefile | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
Index: llvm/tools/Makefile
diff -u llvm/tools/Makefile:1.55 llvm/tools/Makefile:1.56
--- llvm/tools/Makefile:1.55 Thu Sep 7 15:21:58 2006
+++ llvm/tools/Makefile Fri Sep 8 13:00:43 2006
@@ -18,7 +18,9 @@
bugpoint llvm-db llvm-extract \
gccas llvm-bcanalyzer llvm-stub \
gccld llvm2cpp \
- llvm-ld llvmc llvm-prof \
- lto
+ llvm-ld llvmc llvm-prof
+ifeq ($(OS), Darwin)
+PARALLEL_DIRS += lto
+endif
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list