From e20bcd81eb1873f123e0eb0b916c0d4cbcc935f0 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 13 Dec 2001 00:44:23 +0000 Subject: [PATCH] Build runtime library with local GCCAS git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1447 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ExecutionEngine/Makefile | 8 ++++---- tools/lli/Makefile | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index 0fdcf8b5ddb..54f675c28c9 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/Makefile @@ -11,11 +11,11 @@ all :: $(LEVEL)/tools/Debug/RuntimeLib.bc Debug/RuntimeLib.c: RuntimeLib.lc cp -f $< $@ -Debug/RuntimeLib.o: Debug/RuntimeLib.c +Debug/RuntimeLib.ll: Debug/RuntimeLib.c @-rm $@ - /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -c -o $@ + /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -S -o $@ -$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.o - ../Debug/opt -dce $< -o $@ -f -q +$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.ll + ../Debug/gccas $< -o $@ diff --git a/tools/lli/Makefile b/tools/lli/Makefile index 0fdcf8b5ddb..54f675c28c9 100644 --- a/tools/lli/Makefile +++ b/tools/lli/Makefile @@ -11,11 +11,11 @@ all :: $(LEVEL)/tools/Debug/RuntimeLib.bc Debug/RuntimeLib.c: RuntimeLib.lc cp -f $< $@ -Debug/RuntimeLib.o: Debug/RuntimeLib.c +Debug/RuntimeLib.ll: Debug/RuntimeLib.c @-rm $@ - /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -c -o $@ + /home/vadve/lattner/cvs/gcc_install/bin/gcc $< -S -o $@ -$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.o - ../Debug/opt -dce $< -o $@ -f -q +$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.ll + ../Debug/gccas $< -o $@ -- 2.34.1