rust/src
2012-03-29 14:42:31 -07:00
..
cargo Update crate URLs to point to interesting things. 2012-03-28 13:52:47 -07:00
compiletest Fix long line. 2012-03-28 15:16:32 -07:00
etc build: Add librustsyntax to snapshots 2012-03-29 14:42:31 -07:00
fuzzer Update CC fuzzer 2012-03-28 12:30:07 -07:00
libcore stdlib: Remove the now-obsolete vec::alloc_len in favor of vec::capacity 2012-03-29 08:57:34 -07:00
librustsyntax rustc: Move attr, parse, print to rustsyntax 2012-03-29 14:42:31 -07:00
libstd stdlib: Remove the now-obsolete vec::alloc_len in favor of vec::capacity 2012-03-29 08:57:34 -07:00
libuv@1d6aec9d54 Disable some advanced (post glibc-2.3) libuv features when building snaps. 2012-03-26 18:03:53 -07:00
llvm@4119fda4c6
rt Remove execvpe use in general, it seems pointless and non-portable. 2012-03-28 20:58:43 -07:00
rustc rustc: Remove the rustsyntax::attr wrapper in front 2012-03-29 14:42:31 -07:00
rustdoc rustc: Remove the rustsyntax::attr wrapper in front 2012-03-29 14:42:31 -07:00
rustllvm
test Require "self" as base expression for intra-class method or field references 2012-03-29 12:22:01 -07:00
README.txt
snapshots.txt Update snaps for linux to point to snaps that actually work on RHEL5. 2012-03-28 20:58:43 -07: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.