[llvm-commits] CVS: llvm/test/Programs/MultiSource/Makefile.multisrc
Chris Lattner
lattner at cs.uiuc.edu
Wed Jan 22 21:53:04 PST 2003
Changes in directory llvm/test/Programs/MultiSource:
Makefile.multisrc updated: 1.22 -> 1.23
---
Log message:
The bytecode repository should contain raw llvm files, not preoptimized llvm files
---
Diffs of the changes:
Index: llvm/test/Programs/MultiSource/Makefile.multisrc
diff -u llvm/test/Programs/MultiSource/Makefile.multisrc:1.22 llvm/test/Programs/MultiSource/Makefile.multisrc:1.23
--- llvm/test/Programs/MultiSource/Makefile.multisrc:1.22 Tue Jan 21 15:32:01 2003
+++ llvm/test/Programs/MultiSource/Makefile.multisrc Wed Jan 22 21:52:02 2003
@@ -41,11 +41,15 @@
$(LAS) -f $< -o $@
+ifndef USE_PRECOMPILED_BYTECODE
+
# Output/*.linked.ll is all of the bytecode files of the program linked together
# without any libraries linked in...
#
Output/%.linked.rll: $(LObjects) $(LLINK) $(LOPT) $(LDIS)
$(LLINK) -f $(LObjects) | $(LOPT) -funcresolve | $(LDIS) > $@
+
+endif
Output/%.native: $(NObjects)
$(CC) -o $@ $(NObjects) $(LDFLAGS) $(CFLAGS)
More information about the llvm-commits
mailing list