0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-12-01 13:18:54 +01:00
rust/src
2012-01-17 15:13:43 -08:00
..
cargo Update crates with correct crate_type attribute 2012-01-17 15:13:43 -08:00
comp Update crates with correct crate_type attribute 2012-01-17 15:13:43 -08:00
compiletest Update crates with correct crate_type attribute 2012-01-17 15:13:43 -08:00
etc dist: Add bin directory to system PATH in win32 installer 2012-01-17 14:07:17 -08:00
fuzzer Update crates with correct crate_type attribute 2012-01-17 15:13:43 -08:00
libcore Merge pull request #1554 from rtanglao/master 2012-01-17 12:44:25 -08:00
libstd libstd => libcore 2012-01-17 10:51:43 -08:00
libuv@f1859eb841
llvm@d578b905de llvm: Switch back to LLVM trunk 2012-01-13 11:05:59 -08:00
rt encode variant names and have log print them out. 2012-01-17 10:33:28 -08:00
rustdoc libstd => libcore 2012-01-17 10:51:43 -08:00
rustllvm llvm: Switch back to LLVM trunk 2012-01-13 11:05:59 -08:00
test Merge pull request #1544 from kevina/issue-1393 2012-01-17 12:45:09 -08:00
README Mention new dirs in README. 2011-12-07 15:34:30 -08:00
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.