@@ -2,42 +2,38 @@ This is a preliminary version of the Rust compiler, libraries and tools.
22
33Source layout:
44
5+ | Path | Description |
6+ | ------------------- | --------------------------------------------------------- |
57| ` librustc/ ` | The self-hosted compiler |
68| ` libstd/ ` | The standard library (imported and linked by default) |
79| ` libextra/ ` | The "extras" library (slightly more peripheral code) |
10+ | ` libgreen/ ` | The M: N runtime library |
11+ | ` libnative/ ` | The 1:1 runtime library |
812| ` libsyntax/ ` | The Rust parser and pretty-printer |
913| ------------------- | --------------------------------------------------------- |
1014| ` rt/ ` | The runtime system |
11- | ` rt/rust_*.c ` | - The majority of the runtime services |
12- | ` rt/isaac ` | - The PRNG used for pseudo-random choices in the runtime |
13- | ` rt/bigint ` | - The bigint library used for the 'big' type |
14- | ` rt/uthash ` | - Small hashtable-and-list library for C, used in runtime |
15- | ` rt/sync ` | - Concurrency utils |
16- | ` rt/util ` | - Small utility classes for the runtime. |
15+ | ` rt/rust_*.c ` | - Some of the runtime services |
1716| ` rt/vg ` | - Valgrind headers |
1817| ` rt/msvc ` | - MSVC support |
18+ | ` rt/sundown ` | - The Markdown library used by rustdoc |
1919| ------------------- | --------------------------------------------------------- |
20+ | ` compiletest/ ` | The test runner |
2021| ` test/ ` | Testsuite |
22+ | ` test/codegen ` | - Tests for the LLVM IR infrastructure |
2123| ` test/compile-fail ` | - Tests that should fail to compile |
24+ | ` test/debug-info ` | - Tests for the ` debuginfo ` tool |
2225| ` test/run-fail ` | - Tests that should compile, run and fail |
26+ | ` test/run-make ` | - Tests that depend on a Makefile infrastructure |
2327| ` test/run-pass ` | - Tests that should compile, run and succeed |
2428| ` test/bench ` | - Benchmarks and miscellaneous |
2529| ` test/pretty ` | - Pretty-printer tests |
2630| ` test/auxiliary ` | - Dependencies of tests |
2731| ------------------- | --------------------------------------------------------- |
28- | ` compiletest/ ` | The test runner |
29- | ------------------- | --------------------------------------------------------- |
30- | ` librustpkg/ ` | The package manager and build system |
31- | ------------------- | --------------------------------------------------------- |
3232| ` librustdoc/ ` | The Rust API documentation tool |
33- | ------------------- | --------------------------------------------------------- |
34- | ` llvm/ ` | The LLVM submodule |
35- | ------------------- | --------------------------------------------------------- |
33+ | ` librustpkg/ ` | The package manager and build system |
3634| ` libuv/ ` | The libuv submodule |
3735| ------------------- | --------------------------------------------------------- |
36+ | ` llvm/ ` | The LLVM submodule |
3837| ` rustllvm/ ` | LLVM support code |
3938| ------------------- | --------------------------------------------------------- |
40- | ` libfuzzer/ ` | A collection of fuzz testers |
41- | ------------------- | --------------------------------------------------------- |
4239| ` etc/ ` | Scripts, editors support, misc |
43-
0 commit comments