summaryrefslogtreecommitdiff
path: root/tools/lli
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-27 04:15:57 +0000
committerChris Lattner <sabre@nondot.org>2001-10-27 04:15:57 +0000
commite43db88b2d12f2aebbe62aca8465a46c92292fce (patch)
tree5000957a2f8f861cbf457dd2b916ff6cb3103409 /tools/lli
parent7dcd61209a1575e82ea23430cf9099a8b8086dbb (diff)
downloadllvm-e43db88b2d12f2aebbe62aca8465a46c92292fce.tar.gz
llvm-e43db88b2d12f2aebbe62aca8465a46c92292fce.tar.bz2
llvm-e43db88b2d12f2aebbe62aca8465a46c92292fce.tar.xz
* Implement exit() builtin function
* Implement linked in runtime library with puts(char*) in it * implement builtin putchar(int) function git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@985 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lli')
-rw-r--r--tools/lli/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/lli/Makefile b/tools/lli/Makefile
index b1b936d3bf..3e70896c29 100644
--- a/tools/lli/Makefile
+++ b/tools/lli/Makefile
@@ -1,6 +1,7 @@
LEVEL = ../..
TOOLNAME = lli
-USEDLIBS = opt bcreader bcwriter vmcore asmwriter analysis support target
+USEDLIBS = opt bcreader bcwriter vmcore asmwriter analysis support \
+ target transforms
TOOLLINKOPTS = -ldl
include $(LEVEL)/Makefile.common
@@ -14,6 +15,6 @@ Debug/RuntimeLib.o: Debug/RuntimeLib.c
/home/vadve/lattner/cvs/gcc_install/bin/gcc $< -c -o $@
$(LEVEL)/tools/Debug/RuntimeLib.bc: Debug/RuntimeLib.o
- opt -dce $< -o $@ -f -q
+ ../Debug/opt -dce $< -o $@ -f -q