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 /tools | |
parent | 75ad704490f402406e0e59ebb9173245d785710a (diff) | |
download | external_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 'tools')
-rw-r--r-- | tools/lli/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/lli/Makefile b/tools/lli/Makefile index 0fdcf8b..54f675c 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 $@ |