2014-01-11 08:19:38 -06:00
|
|
|
This is a preliminary version of the Rust compiler, libraries and tools.
|
|
|
|
|
|
|
|
Source layout:
|
|
|
|
|
2014-01-11 08:29:17 -06:00
|
|
|
| Path | Description |
|
|
|
|
| ------------------- | --------------------------------------------------------- |
|
2014-01-11 08:19:38 -06:00
|
|
|
| `librustc/` | The self-hosted compiler |
|
|
|
|
| `libstd/` | The standard library (imported and linked by default) |
|
|
|
|
| `libextra/` | The "extras" library (slightly more peripheral code) |
|
2014-01-11 08:29:17 -06:00
|
|
|
| `libgreen/` | The M:N runtime library |
|
|
|
|
| `libnative/` | The 1:1 runtime library |
|
2014-01-11 08:19:38 -06:00
|
|
|
| `libsyntax/` | The Rust parser and pretty-printer |
|
|
|
|
| ------------------- | --------------------------------------------------------- |
|
|
|
|
| `rt/` | The runtime system |
|
2014-01-11 08:29:17 -06:00
|
|
|
| `rt/rust_*.c` | - Some of the runtime services |
|
2014-01-11 08:19:38 -06:00
|
|
|
| `rt/vg` | - Valgrind headers |
|
|
|
|
| `rt/msvc` | - MSVC support |
|
2014-01-11 08:29:17 -06:00
|
|
|
| `rt/sundown` | - The Markdown library used by rustdoc |
|
2014-01-11 08:19:38 -06:00
|
|
|
| ------------------- | --------------------------------------------------------- |
|
2014-01-11 08:29:17 -06:00
|
|
|
| `compiletest/` | The test runner |
|
2014-01-11 08:19:38 -06:00
|
|
|
| `test/` | Testsuite |
|
2014-01-11 08:29:17 -06:00
|
|
|
| `test/codegen` | - Tests for the LLVM IR infrastructure |
|
2014-01-11 08:19:38 -06:00
|
|
|
| `test/compile-fail` | - Tests that should fail to compile |
|
2014-01-11 08:29:17 -06:00
|
|
|
| `test/debug-info` | - Tests for the `debuginfo` tool |
|
2014-01-11 08:19:38 -06:00
|
|
|
| `test/run-fail` | - Tests that should compile, run and fail |
|
2014-01-11 08:29:17 -06:00
|
|
|
| `test/run-make` | - Tests that depend on a Makefile infrastructure |
|
2014-01-11 08:19:38 -06:00
|
|
|
| `test/run-pass` | - Tests that should compile, run and succeed |
|
|
|
|
| `test/bench` | - Benchmarks and miscellaneous |
|
|
|
|
| `test/pretty` | - Pretty-printer tests |
|
|
|
|
| `test/auxiliary` | - Dependencies of tests |
|
|
|
|
| ------------------- | --------------------------------------------------------- |
|
|
|
|
| `librustdoc/` | The Rust API documentation tool |
|
|
|
|
| `libuv/` | The libuv submodule |
|
|
|
|
| ------------------- | --------------------------------------------------------- |
|
2014-01-11 08:29:17 -06:00
|
|
|
| `llvm/` | The LLVM submodule |
|
2014-01-11 08:19:38 -06:00
|
|
|
| `rustllvm/` | LLVM support code |
|
|
|
|
| ------------------- | --------------------------------------------------------- |
|
|
|
|
| `etc/` | Scripts, editors support, misc |
|