rust/src
2011-06-17 18:33:07 -07:00
..
comp rustc: Use correct version key in metadata 2011-06-17 18:33:07 -07:00
etc Register new snapshots. Update location of stage0's libstd 2011-06-17 18:19:37 -07:00
fuzzer
lib Made sure getcwd and friends work well on Windows. 2011-06-17 15:53:21 -07:00
rt rustc: Fix a bunch of memory management bugs relating to generic interior vectors. Uncomment all tests in lib-ivec. 2011-06-17 17:31:24 -07:00
rustllvm Update rust to build with newer llvm versions. 2011-06-08 14:08:24 -04:00
test test: Comment out the init-fn line in lib-ivec. Puts out burning tinderbox. 2011-06-17 17:53:43 -07:00
README
run.py
snapshots.txt Register new snapshots. Update location of stage0's libstd 2011-06-17 18:19:37 -07:00

This is preliminary version of the Rust compiler(s).

Source layout:

comp/              The self-hosted compiler

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/{sync,util}     - Small utility classes for the runtime.

test/              Testsuite (for both bootstrap and self-hosted)
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.