diff options
| author | Chris Lattner <sabre@nondot.org> | 2001-10-27 04:15:57 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2001-10-27 04:15:57 +0000 | 
| commit | e43db88b2d12f2aebbe62aca8465a46c92292fce (patch) | |
| tree | 5000957a2f8f861cbf457dd2b916ff6cb3103409 /lib/ExecutionEngine/Makefile | |
| parent | 7dcd61209a1575e82ea23430cf9099a8b8086dbb (diff) | |
| download | external_llvm-e43db88b2d12f2aebbe62aca8465a46c92292fce.zip external_llvm-e43db88b2d12f2aebbe62aca8465a46c92292fce.tar.gz external_llvm-e43db88b2d12f2aebbe62aca8465a46c92292fce.tar.bz2 | |
* 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 'lib/ExecutionEngine/Makefile')
| -rw-r--r-- | lib/ExecutionEngine/Makefile | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index b1b936d..3e70896 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/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 | 
