rust/src
Graydon Hoare 697f1e38d6 Change 'native' and 'crust' to 'extern'.
This comes with a terminology change. All linkage-symbols are 'extern'
now, including rust syms in other crates. Some extern ABIs are
merely "foreign". The term "native" is retired, not clear/useful.

What was "crust" is now "extern" applied to a _definition_. This
is a bit of an overloading, but should be unambiguous: it means
that the definition should be made available to some non-rust ABI.
2012-06-26 16:18:37 -07:00
..
cargo Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. 2012-06-25 20:00:46 -07:00
compiletest Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. 2012-06-25 20:00:46 -07:00
etc Update combine-tests.py for new vec syntax 2012-06-25 21:38:27 -07:00
fuzzer Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. 2012-06-25 20:00:46 -07:00
libcore Change 'native' and 'crust' to 'extern'. 2012-06-26 16:18:37 -07:00
libstd Change 'native' and 'crust' to 'extern'. 2012-06-26 16:18:37 -07:00
libsyntax Change 'native' and 'crust' to 'extern'. 2012-06-26 16:18:37 -07:00
libuv@1170ffba3a
llvm@3a57b672f8
rt Fix shape::cmp::walk_res2 2012-06-26 11:14:39 -07:00
rustc Change 'native' and 'crust' to 'extern'. 2012-06-26 16:18:37 -07:00
rustdoc Change 'native' and 'crust' to 'extern'. 2012-06-26 16:18:37 -07:00
rustllvm
test Change 'native' and 'crust' to 'extern'. 2012-06-26 16:18:37 -07:00
README.txt
snapshots.txt Register snapshots 2012-06-26 13:42:35 -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