Undo removal of the runtime libraries. While this may have been a bit
authorReid Spencer <rspencer@reidspencer.com>
Fri, 17 Nov 2006 03:32:33 +0000 (03:32 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 17 Nov 2006 03:32:33 +0000 (03:32 +0000)
commit8b2e1419cf24a33df5a87c99e367528b44dc28cf
treedfa50da1818a1e9c1d0588c060051c65583821a3
parentb2b9c20b6121a54a41ee1c583a4bff4389622da2
Undo removal of the runtime libraries. While this may have been a bit
premature, these libraries will be going away for the 2.0 release. Other
arrangements for profiling, gc, etc. should be made in the next few months.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31807 91177308-0d34-0410-b5e6-96231b3b80d8
53 files changed:
Makefile
Makefile.config.in
Makefile.rules
autoconf/configure.ac
configure
runtime/GC/GCInterface.h [new file with mode: 0644]
runtime/GC/Makefile [new file with mode: 0644]
runtime/GC/SemiSpace/Makefile [new file with mode: 0644]
runtime/GC/SemiSpace/semispace.c [new file with mode: 0644]
runtime/GC/gc_exported_symbols.lst [new file with mode: 0644]
runtime/GCCLibraries/Makefile [new file with mode: 0644]
runtime/GCCLibraries/README.txt [new file with mode: 0644]
runtime/GCCLibraries/crtend/Exception.cpp [new file with mode: 0644]
runtime/GCCLibraries/crtend/Exception.h [new file with mode: 0644]
runtime/GCCLibraries/crtend/Makefile [new file with mode: 0644]
runtime/GCCLibraries/crtend/README.txt [new file with mode: 0644]
runtime/GCCLibraries/crtend/SJLJ-Exception.cpp [new file with mode: 0644]
runtime/GCCLibraries/crtend/SJLJ-Exception.h [new file with mode: 0644]
runtime/GCCLibraries/crtend/comp_genericeh.lst [new file with mode: 0644]
runtime/GCCLibraries/crtend/comp_main.lst [new file with mode: 0644]
runtime/GCCLibraries/crtend/comp_sjljeh.lst [new file with mode: 0644]
runtime/GCCLibraries/crtend/crtend.c [new file with mode: 0644]
runtime/GCCLibraries/libc/COPYING.LIB [new file with mode: 0644]
runtime/GCCLibraries/libc/LICENSE.TXT [new file with mode: 0644]
runtime/GCCLibraries/libc/LICENSES [new file with mode: 0644]
runtime/GCCLibraries/libc/Makefile [new file with mode: 0644]
runtime/GCCLibraries/libc/README.txt [new file with mode: 0644]
runtime/GCCLibraries/libc/atox.c [new file with mode: 0644]
runtime/GCCLibraries/libc/io.c [new file with mode: 0644]
runtime/GCCLibraries/libc/qsort.c [new file with mode: 0644]
runtime/GCCLibraries/libc/remove.c [new file with mode: 0644]
runtime/GCCLibraries/libc/string.c [new file with mode: 0644]
runtime/GCCLibraries/libgcc/Makefile [new file with mode: 0644]
runtime/GCCLibraries/libgcc/eprintf.c [new file with mode: 0644]
runtime/GCCLibraries/libm/Makefile [new file with mode: 0644]
runtime/GCCLibraries/libm/temp.c [new file with mode: 0644]
runtime/Makefile [new file with mode: 0644]
runtime/README.txt [new file with mode: 0644]
runtime/libdummy/Makefile [new file with mode: 0644]
runtime/libdummy/README.txt [new file with mode: 0644]
runtime/libdummy/dummylib.c [new file with mode: 0644]
runtime/libprofile/BasicBlockTracing.c [new file with mode: 0644]
runtime/libprofile/BlockProfiling.c [new file with mode: 0644]
runtime/libprofile/CommonProfiling.c [new file with mode: 0644]
runtime/libprofile/EdgeProfiling.c [new file with mode: 0644]
runtime/libprofile/FunctionProfiling.c [new file with mode: 0644]
runtime/libprofile/Makefile [new file with mode: 0644]
runtime/libprofile/Profiling.h [new file with mode: 0644]
runtime/libprofile/exported_symbols.lst [new file with mode: 0644]
runtime/libtrace/Makefile [new file with mode: 0644]
runtime/libtrace/README.txt [new file with mode: 0644]
runtime/libtrace/tracelib.c [new file with mode: 0644]
runtime/libtrace/tracelib.h [new file with mode: 0644]