llvm-6502/runtime
Vikram S. Adve 0df8adc0e6 Pointer hash table reallocation code seems never to have been tested!
Unfortunately, reallocation also means that the pointer numbering will
change, so increase table size to try to avoid it.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7130 91177308-0d34-0410-b5e6-96231b3b80d8
2003-07-08 18:42:44 +00:00
..
GCCLibraries Added support for poolallocarray and poolmakeunfreeable. The latter is used by the SAFECode project 2003-07-03 17:55:47 +00:00
libdummy Add lots of functions 2003-02-18 20:42:07 +00:00
libtrace Pointer hash table reallocation code seems never to have been tested! 2003-07-08 18:42:44 +00:00
Makefile Remove compilation of __main because we now link -lgcc into programs 2002-03-22 19:13:47 +00:00
Makefile.libs Run more post-link xforms 2003-05-29 15:16:45 +00:00
README.txt Add note about what this is 2002-11-06 20:58:26 +00:00

Date: Wed, 6 Nov 2002 14:05:32 -0600 (CST)
From: Chris Lattner <sabre@nondot.org>
To: LLVMdev List <llvmdev@cs.uiuc.edu>
Subject: What is test/Libraries?

Hey everyone,

There has recently been some confusion over what test/Libraries is and
what it is used for.  The short answer is: it's used when building GCC,
not for tests, so you all shouldn't need to use it.

test/Libraries contains the LLVM "system libraries", which are linked to
programs when the linker is run with the appropriate -l switch (for
example -lm links in the "math" library).  In general, these libraries are
just stubbed out libraries, because noone has had the time to do a full
glibc port to LLVM.

Problems arise because the makefiles have a number of hardcoded paths in
it that are used to copy files around and install the libraries, which
cause problems if anyone (except for me) uses them.  I'm sorry a better
system isn't in place yet for these libraries, but if you just ignore
them, they won't cause you any harm.  :)

-Chris