rust/src
2012-01-10 19:05:28 -08:00
..
cargo cargo: Print rustc's stdout when compilation fails 2012-01-06 18:04:25 -08:00
comp Fold and re-evaluate expr in tag discriminant. 2012-01-10 15:59:57 -08:00
compiletest port over the tests to use the new API 2012-01-06 22:40:31 -08:00
etc report unicode decode failures nicely 2012-01-06 22:40:32 -08:00
fuzzer Fix bustage 2012-01-08 19:34:02 -08:00
libcore add rust_task_is_unwinding predicate and do not kill if already unwinding 2012-01-09 19:53:32 -08:00
libstd Fix rpath bug. 2012-01-09 16:12:47 -08:00
libuv@f1859eb841
llvm@4fb132c803 llvm: Revert unneeded debugging change 2012-01-02 12:18:23 -08:00
rt update shape code to handle iface instances 2012-01-10 19:05:28 -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
test update shape code to handle iface instances 2012-01-10 19:05:28 -08:00
README
snapshots.txt Register snapshots 2012-01-09 14:58:00 -08: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.