rust/src
2012-08-24 14:21:26 -07:00
..
cargo m1!{...} -> m1!(...) 2012-08-23 11:14:14 -07:00
compiletest m1!{...} -> m1!(...) 2012-08-23 11:14:14 -07:00
etc vim - fix indent rules, hilight format strings, some keywords 2012-08-23 21:09:57 -04:00
fuzzer libcore: update bytes/str reader to work with regions. 2012-08-23 17:42:50 -07:00
libcore Add a bunch more unsafe blocks to prepare for the new semantics of unsafe/closure interactions. 2012-08-24 14:21:26 -07:00
libstd Add a bunch more unsafe blocks to prepare for the new semantics of unsafe/closure interactions. 2012-08-24 14:21:26 -07:00
libsyntax extend liveness to treat bindings more like other variables 2012-08-24 12:55:08 -07:00
libuv@1170ffba3a rustc: Don't generate landing pad cleanups for boxy things 2012-03-29 16:43:18 -07:00
llvm@b55be285d1 llvm: Update LLVM for addrspaces. 2012-08-24 14:01:27 -07:00
rt Fix logging code to not sign extend chars being printed in hex. 2012-08-23 12:48:08 -07:00
rustc Get rid of the unsafe hacks in resolve3. Closes #3267. 2012-08-24 14:21:26 -07:00
rustdoc Use a faked-up function as a key, because functions aren't identical cross-crate in Windows. 2012-08-24 12:20:06 -07:00
rustllvm Added debug flag to enable LLVM debug output. 2012-07-25 16:00:13 -07:00
test Add a compile-fail test for #3255 2012-08-24 16:43:03 -04:00
README.txt Update READMEs and comments to reflect "rustsyntax" -> "syntax" change 2012-06-08 17:24:14 -07:00
snapshots.txt correct linux snapshots (sorry) 2012-08-22 20:21:03 -07:00

This is preliminary version of the Rust compiler, libraries and tools

Source layout:

rustc/             The self-hosted compiler

libcore/           The core library (imported and linked by default)
libstd/            The standard library (slightly more peripheral code)
libsyntax/         The Rust parser and pretty-printer

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/sync            - Concurrency utils
rt/util            - Small utility classes for the runtime.
rt/vg              - Valgrind headers
rt/msvc            - MSVC support

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
test/pretty        - Pretty-printer tests
test/auxiliary     - Dependencies of tests

compiletest/       The test runner

cargo/             The package manager

rustdoc/           The Rust API documentation tool

llvm/              The LLVM submodule

libuv/             The libuv submodule

rustllvm/          LLVM support code

fuzzer/            A collection of fuzz testers

etc/               Scripts, editor support, misc