about summary refs log tree commit diff
path: root/src/README
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-06-26 22:27:22 -0700
committerBrian Anderson <banderson@mozilla.com>2011-06-26 22:27:22 -0700
commitfcbdac96dd261eb3433e8bee52db8860d6e3416a (patch)
treeec46ada7c0dcc6ccca6b72d3a6940d8fb9f02101 /src/README
parentf2d76bcd7d512280631b31f8f80582151968545b (diff)
downloadrust-fcbdac96dd261eb3433e8bee52db8860d6e3416a.tar.gz
rust-fcbdac96dd261eb3433e8bee52db8860d6e3416a.zip
Update README files
Diffstat (limited to 'src/README')
-rw-r--r--src/README6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/README b/src/README
index 4a843a64a09..bc7351f357e 100644
--- a/src/README
+++ b/src/README
@@ -4,6 +4,10 @@ Source layout:
 
 comp/              The self-hosted compiler
 
+lib/               The standard library
+
+rustllvm/          LLVM support code
+
 rt/                The runtime system
 rt/rust_*.cpp      - The majority of the runtime services
 rt/isaac           - The PRNG used for pseudo-random choices in the runtime
@@ -11,7 +15,7 @@ rt/bigint          - The bigint library used for the 'big' type
 rt/uthash          - Small hashtable-and-list library for C, used in runtime
 rt/{sync,util}     - Small utility classes for the runtime.
 
-test/              Testsuite (for both bootstrap and self-hosted)
+test/              Testsuite
 test/compile-fail  - Tests that should fail to compile
 test/run-fail      - Tests that should compile, run and fail
 test/run-pass      - Tests that should compile, run and succeed