diff options
author | Chris Lattner <sabre@nondot.org> | 2001-12-13 00:44:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-12-13 00:44:23 +0000 |
commit | e20bcd81eb1873f123e0eb0b916c0d4cbcc935f0 (patch) | |
tree | 9cc28737def16cd08159f5befc3dcfa7641609d3 | |
parent | 75ad704490f402406e0e59ebb9173245d785710a (diff) |
Build runtime library with local GCCAS
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1447 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/ExecutionEngine/Makefile | 8 | ||||
-rw-r--r-- | tools/lli/Makefile | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index 0fdcf8b5dd..54f675c28c 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 0fdcf8b5dd..54f675c28c 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 $@ |