rust/src
2012-01-13 13:44:09 -08:00
..
cargo Major clean-up of std::io 2012-01-11 21:00:11 +01:00
comp llvm: Switch back to LLVM trunk 2012-01-13 11:05:59 -08:00
compiletest Major clean-up of std::io 2012-01-11 21:00:11 +01:00
etc Revert "build: Build libraries in the bin directory on win32" 2012-01-12 20:06:45 -08:00
fuzzer distinguish "any closure" and "stack closure" (block) 2012-01-13 09:31:40 -08:00
libcore make "native fn" the type for bare functions, remove fn exprs 2012-01-13 06:27:35 -08:00
libstd Remove workaround for issue #1494 2012-01-13 21:38:29 +01:00
libuv@f1859eb841 Re-add libuv as a submodule. 2011-11-08 19:01:47 -08:00
llvm@d578b905de llvm: Switch back to LLVM trunk 2012-01-13 11:05:59 -08:00
rt rt: Allow console logging to be turned off 2012-01-13 13:44:09 -08:00
rustdoc Remove tests for objs, adjust tests that use objs 2012-01-13 11:52:13 +01:00
rustllvm llvm: Switch back to LLVM trunk 2012-01-13 11:05:59 -08:00
test distinguish "any closure" and "stack closure" (block) 2012-01-13 09:31:40 -08:00
README Mention new dirs in README. 2011-12-07 15:34:30 -08:00
snapshots.txt Revert "Register snapshots" 2012-01-12 20:06:30 -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.