From: Vikram S. Adve Date: Mon, 5 Nov 2001 00:35:56 +0000 (+0000) Subject: Make gcc generate assembly files (%.ll) until Chris has a stable X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=772d091e0046b2bfff4887e0ebf35a2e0b82f4f9;p=oota-llvm.git Make gcc generate assembly files (%.ll) until Chris has a stable version of his gccas. Plus another dumb bug fix (the bug, not the fix). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1134 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Makefile.target b/test/Makefile.target index c9f1e3882e6..7e54ccc555f 100644 --- a/test/Makefile.target +++ b/test/Makefile.target @@ -1,3 +1,8 @@ +## -*-Makefile-*- +##------------------------------------------------------------------------ +## Common rules for generating, linking, and compiling via LLVM. +##------------------------------------------------------------------------ + .PHONY: clean default ## Special targets to build a program from multiple source files @@ -20,7 +25,7 @@ LLINK = $(TOOLS)/link LLCFLAGS = LCC = /home/vadve/lattner/cvs/gcc_install/bin/gcc -LCFLAGS = -DTORONTO -O2 $(LOCAL_CFLAGS) -Wall +LCFLAGS = -O2 $(LOCAL_CFLAGS) -Wall LLCLIB = $(LEVEL)/test/runtime.o LIBS = $(LLCLIB) $(LOCAL_LIBS) @@ -58,7 +63,8 @@ clean : $(LLC) -f -trace $(LLCFLAGS) $< %.o: %.c - $(LCC) $(LCFLAGS) -c $< + $(LCC) $(LCFLAGS) -S -o $*.ll $< + $(LAS) -o $@ $*.ll %.bc: %.ll $(LAS) -f $< diff --git a/test/Makefile.tests b/test/Makefile.tests index c9f1e3882e6..7e54ccc555f 100644 --- a/test/Makefile.tests +++ b/test/Makefile.tests @@ -1,3 +1,8 @@ +## -*-Makefile-*- +##------------------------------------------------------------------------ +## Common rules for generating, linking, and compiling via LLVM. +##------------------------------------------------------------------------ + .PHONY: clean default ## Special targets to build a program from multiple source files @@ -20,7 +25,7 @@ LLINK = $(TOOLS)/link LLCFLAGS = LCC = /home/vadve/lattner/cvs/gcc_install/bin/gcc -LCFLAGS = -DTORONTO -O2 $(LOCAL_CFLAGS) -Wall +LCFLAGS = -O2 $(LOCAL_CFLAGS) -Wall LLCLIB = $(LEVEL)/test/runtime.o LIBS = $(LLCLIB) $(LOCAL_LIBS) @@ -58,7 +63,8 @@ clean : $(LLC) -f -trace $(LLCFLAGS) $< %.o: %.c - $(LCC) $(LCFLAGS) -c $< + $(LCC) $(LCFLAGS) -S -o $*.ll $< + $(LAS) -o $@ $*.ll %.bc: %.ll $(LAS) -f $<