rust/src
Marijn Haverbeke 1375b31c1c Store type names in crate metadata
Improves type error messages referring to external types.

Issue #1507
2012-01-16 12:08:00 +01:00
..
cargo rustc: Rename mk_codemap_handler to mk_handler 2012-01-14 15:14:43 -08:00
comp Store type names in crate metadata 2012-01-16 12:08:00 +01:00
compiletest
etc Merge pull request #1521 from grahame/master 2012-01-14 18:49:58 -08:00
fuzzer rustc: Rename mk_codemap_handler to mk_handler 2012-01-14 15:14:43 -08:00
libcore add lgamma functions for FreeBSD 2012-01-16 00:38:52 -08:00
libstd libstd: Remove util::void 2012-01-14 02:51:08 -08:00
libuv@f1859eb841
llvm@d578b905de llvm: Switch back to LLVM trunk 2012-01-13 11:05:59 -08:00
rt use correct size for logging mod_entry state fields 2012-01-16 00:41:14 -08:00
rustdoc rustdoc: Attach the doc writer to the doc extractor 2012-01-16 01:07:42 -08:00
rustllvm llvm: Switch back to LLVM trunk 2012-01-13 11:05:59 -08:00
test Store type names in crate metadata 2012-01-16 12:08:00 +01:00
README
snapshots.txt Register snapshots 2012-01-15 13:50:37 -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.