rust/src
2011-11-16 17:22:14 -08:00
..
comp fix minor merge errors 2011-11-16 16:13:43 -08:00
compiletest fix mismatched types---make check passes on x86_64! 2011-11-16 15:24:37 -08:00
etc
fuzzer
lib Disconnect ports before draining them. Issue #1155 2011-11-16 17:22:14 -08:00
libuv@f1859eb841
llvm@566f233ba6
rt rt: Remove rust_task::notify_tasks_wating_to_join 2011-11-16 17:22:14 -08:00
rustllvm temp workaround for failure to pass ulonglong successfully 2011-11-16 15:27:09 -08:00
test Disconnect ports before draining them. Issue #1155 2011-11-16 17:22:14 -08:00
README
snapshots.txt Register snapshots 2011-11-16 14:38:15 -08:00

This is preliminary version of the Rust compiler.

Source layout:

comp/              The self-hosted compiler

lib/               The standard library

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.