rust/src
2011-12-13 15:34:04 -08:00
..
cargo cargo: support github:<user>/<repo> 2011-12-09 14:21:21 -08:00
comp Reorganize some code in typeck 2011-12-13 15:28:22 +01:00
compiletest when type checking still pass in the rustc args from cmd line 2011-11-29 12:51:10 -08:00
etc Attempt to fix windows builder. 2011-12-13 12:32:00 -08:00
fuzzer Update stdlib, compiler, and tests to new kind system 2011-11-18 12:49:01 +01:00
libcore Add crate_type attributes to rustc, std, core 2011-12-08 21:09:48 -08:00
libstd stdlib: Fix spelling errors in documentation of libstd/str.rs 2011-12-13 14:53:14 -08:00
libuv@f1859eb841 Re-add libuv as a submodule. 2011-11-08 19:01:47 -08:00
llvm@dc6b4306ad llvm: Fix LLVM submodule revision 2011-12-13 15:34:04 -08:00
rt fix track alloc code 2011-12-12 18:25:17 -08:00
rustllvm Upgrade LLVM to svn revision 145779 2011-12-04 14:59:56 -08:00
test rt: Make unwinding through __morestack work on mac 2011-12-11 18:49:04 -08:00
README Mention new dirs in README. 2011-12-07 15:34:30 -08:00
snapshots.txt Register new snapshots and teach snapshot script to deal with extracting new-style versioned snapshots. 2011-12-13 10:54:48 -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.