rust/src
2012-01-06 07:47:14 -08:00
..
cargo rustc: Add cargo's lib directory to search paths 2012-01-05 16:03:31 -08:00
comp rustc: Stop exported back::rpath::test 2012-01-05 18:23:30 -08:00
compiletest make scanning more efficient by avoiding recomputation 2012-01-04 15:25:17 -08:00
etc Simplify NSIS package script. 2012-01-05 17:03:02 -08:00
fuzzer Merge branch 'master' into kmath 2012-01-05 17:20:13 +01:00
libcore libcore: add [u8] helper functions to vec. 2012-01-06 07:47:14 -08:00
libstd libcore: add [u8] helper functions to vec. 2012-01-06 07:47:14 -08:00
libuv@f1859eb841 Re-add libuv as a submodule. 2011-11-08 19:01:47 -08:00
llvm@4fb132c803 llvm: Revert unneeded debugging change 2012-01-02 12:18:23 -08:00
rt fix alignment of registers structure 2012-01-06 07:45:06 -08:00
rustdoc Print usage messages to rustc and rustdoc when invoked with no args. Close #1394. 2011-12-30 15:26:49 -08:00
rustllvm Remove rebase error. 2011-12-18 23:44:21 -05:00
test rustc: Allow the test runner to run unexported tests 2012-01-05 18:16:56 -08:00
README Mention new dirs in README. 2011-12-07 15:34:30 -08:00
snapshots.txt Register new snapshot 2012-01-05 11:54:28 +01:00

This is preliminary version of the Rust compiler.

Source layout:

comp/              The self-hosted compiler

cargo/             The package manager

libcore/           The core library (imported and linked by default)
libstd/            The standard library (slightly more peripheral code)

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
rt/bigint          - The bigint library used for the 'big' type
rt/uthash          - Small hashtable-and-list library for C, used in runtime
rt/libuv           - The library used for async IO in the runtime
rt/{sync,util}     - Small utility classes for the runtime.

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
test/bench         - Benchmarks and miscellanea

Please be gentle, it's a work in progress.