rust/src/README.txt

29 lines
1 KiB
Text
Raw Normal View History

This is preliminary version of the Rust compiler.
2010-06-24 06:03:09 +02:00
Source layout:
2012-03-10 02:51:38 +01:00
rustc/ The self-hosted compiler
2010-06-24 06:03:09 +02:00
2011-12-08 00:34:30 +01:00
cargo/ The package manager
libcore/ The core library (imported and linked by default)
libstd/ The standard library (slightly more peripheral code)
2011-06-27 07:27:22 +02:00
rustllvm/ LLVM support code
2010-06-24 06:03:09 +02:00
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
2010-06-24 06:03:09 +02:00
rt/{sync,util} - Small utility classes for the runtime.
2011-06-27 07:27:22 +02:00
test/ Testsuite
2010-06-24 06:03:09 +02:00
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
2011-03-12 07:40:32 +01:00
test/bench - Benchmarks and miscellanea
2010-06-24 06:03:09 +02:00
Please be gentle, it's a work in progress.