rust/src
Niko Matsakis f05761ddb3 enable intrinsics for multiple arch 2011-11-02 14:13:22 -07:00
..
comp hack around on makefiles trying to get a 64 bit build 2011-11-02 14:13:22 -07:00
compiletest Add should_fail annotation for unit tests 2011-11-01 16:55:39 -07:00
etc enable intrinsics for multiple arch 2011-11-02 14:13:22 -07:00
fuzzer rustc: Support 'companion mod's for crates and directory mods 2011-10-29 01:40:20 -07:00
lib Rename car/cdr to head/tail in std::list 2011-11-02 14:23:49 +01:00
rt enable intrinsics for multiple arch 2011-11-02 14:13:22 -07:00
rustllvm rustc: Enable segmented stacks in LLVM when --stack-growth is on 2011-10-31 14:42:44 -07:00
test Rename car/cdr to head/tail in std::list 2011-11-02 14:23:49 +01:00
README Revert trivial commit. 2011-09-20 17:20:14 -07:00
snapshots.txt Register snapshots 2011-11-01 21:22:42 -07:00

README

This is preliminary version of the Rust compiler.

Source layout:

comp/              The self-hosted compiler

lib/               The standard library

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.