rust/src
Brian Anderson 649c648d6f Abort on double-failure. #910
Previously this was an rtabort!, indicating a runtime bug. Promote
this to a more intentional abort and print a (slightly) more
informative error message.

Can't test this sense our test suite can't handle an abort exit.
2014-01-02 18:46:29 -08:00
..
compiletest
driver Remove references to rustdoc_ng 2013-12-31 14:50:38 -08:00
etc Fix rust-align-to-expr-after-brace, closes #11239. 2013-12-31 14:19:36 -05:00
gyp@1e46da1000
libextra libextra: Use from_be32 instead of bswap32 in vuint_at() 2014-01-01 22:27:49 +01:00
libgreen Move task count bookeeping out of libstd 2014-01-01 13:08:09 -08:00
libnative auto merge of #11265 : c-a/rust/byteswap_from, r=alexcrichton 2014-01-02 00:51:51 -08:00
librustc auto merge of #10696 : fhahn/rust/issue9543-remove-extern-mod-foo, r=pcwalton 2014-01-02 11:32:09 -08:00
librustdoc auto merge of #10696 : fhahn/rust/issue9543-remove-extern-mod-foo, r=pcwalton 2014-01-02 11:32:09 -08:00
librustpkg auto merge of #10696 : fhahn/rust/issue9543-remove-extern-mod-foo, r=pcwalton 2014-01-02 11:32:09 -08:00
librustuv
libstd Abort on double-failure. #910 2014-01-02 18:46:29 -08:00
libsyntax libsyntax: Fix test and merge fallout. 2014-01-02 14:42:06 -08:00
libuv@fd5308383c
llvm@8841dcef35
rt
rustllvm auto merge of #11274 : michaelwoerister/rust/issue11083, r=pcwalton 2014-01-02 09:02:01 -08:00
test auto merge of #10696 : fhahn/rust/issue9543-remove-extern-mod-foo, r=pcwalton 2014-01-02 11:32:09 -08:00
README.txt
snapshots.txt

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

Source layout:

librustc/          The self-hosted compiler

libstd/            The standard library (imported and linked by default)
libextra/          The "extras" 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

librustpkg/        The package manager and build system

librustdoc/        The Rust API documentation tool

llvm/              The LLVM submodule

libuv/             The libuv submodule

rustllvm/          LLVM support code

libfuzzer/         A collection of fuzz testers

etc/               Scripts, editor support, misc