rust/src
2012-03-12 18:03:48 -07:00
..
cargo cargo: Don't bail when signature verification fails 2012-03-10 19:33:09 -08:00
compiletest
etc
fuzzer
libcore Use loop instead of while(true) in libraries and compiler itself 2012-03-10 20:34:17 -08:00
libstd std: Sort test failures. Closes #1929 2012-03-12 17:31:17 -07:00
libuv@1170ffba3a
llvm@d578b905de
rt rt: Change alignof to rust_alignof. Remove -Wno-c++11-compat. Closes #1644 2012-03-12 18:03:48 -07:00
rustc rustc: Add node IDs to AST types so we can associate them with region environments 2012-03-12 17:34:37 -07:00
rustdoc rustdoc: Add indexes to native mods. Closes #1963 2012-03-11 16:36:20 -07:00
rustllvm
serializer
test Improve a typechecker error message (wrong type for main()) 2012-03-11 20:55:19 -07:00
README.txt
snapshots.txt Register snapshots 2012-03-10 20:13:03 -08:00

This is preliminary version of the Rust compiler.

Source layout:

rustc/             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.