blob: 7573628fdafc021576634a3872dbe5214df34bfe [file] [log] [blame]
Chris Lattner1b115972002-11-06 20:58:26 +00001Date: Wed, 6 Nov 2002 14:05:32 -0600 (CST)
2From: Chris Lattner <sabre@nondot.org>
3To: LLVMdev List <llvmdev@cs.uiuc.edu>
4Subject: What is test/Libraries?
5
6Hey everyone,
7
8There has recently been some confusion over what test/Libraries is and
9what it is used for. The short answer is: it's used when building GCC,
10not for tests, so you all shouldn't need to use it.
11
12test/Libraries contains the LLVM "system libraries", which are linked to
13programs when the linker is run with the appropriate -l switch (for
14example -lm links in the "math" library). In general, these libraries are
15just stubbed out libraries, because noone has had the time to do a full
16glibc port to LLVM.
17
18Problems arise because the makefiles have a number of hardcoded paths in
19it that are used to copy files around and install the libraries, which
20cause problems if anyone (except for me) uses them. I'm sorry a better
21system isn't in place yet for these libraries, but if you just ignore
22them, they won't cause you any harm. :)
23
24-Chris
25