aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-12-13 00:44:23 +0000
committerChris Lattner <sabre@nondot.org>2001-12-13 00:44:23 +0000
commite20bcd81eb1873f123e0eb0b916c0d4cbcc935f0 (patch)
tree9cc28737def16cd08159f5befc3dcfa7641609d3 /lib/ExecutionEngine/Makefile
parent75ad704490f402406e0e59ebb9173245d785710a (diff)
downloadexternal_llvm-e20bcd81eb1873f123e0eb0b916c0d4cbcc935f0.zip
external_llvm-e20bcd81eb1873f123e0eb0b916c0d4cbcc935f0.tar.gz
external_llvm-e20bcd81eb1873f123e0eb0b916c0d4cbcc935f0.tar.bz2
Build runtime library with local GCCAS
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1447 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Makefile')
-rw-r--r--lib/ExecutionEngine/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile
index 0fdcf8b..54f675c 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 $@