[llvm-commits] [llvm] r81222 - /llvm/trunk/Makefile.rules
Dan Gohman
gohman at apple.com
Tue Sep 8 08:52:56 PDT 2009
Author: djg
Date: Tue Sep 8 10:52:56 2009
New Revision: 81222
URL: http://llvm.org/viewvc/llvm-project?rev=81222&view=rev
Log:
llvm-as is no longer needed here, now that opt can read assembly
files directly.
Modified:
llvm/trunk/Makefile.rules
Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=81222&r1=81221&r2=81222&view=diff
==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Tue Sep 8 10:52:56 2009
@@ -1368,14 +1368,13 @@
# make the C and C++ compilers strip debug info out of bytecode libraries.
ifdef DEBUG_RUNTIME
-$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
+$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
$(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
- $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@
+ $(Verb) $(LOPT) $< -std-compile-opts -o $@
else
-$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
+$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
$(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
- $(Verb) $(LLVMAS) $< -o - | \
- $(LOPT) -std-compile-opts -strip-debug -o $@
+ $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
endif
More information about the llvm-commits
mailing list