Go to file
Tim Chevalier e16dbb7888 Demode some code using by-mutbl-ref; warn about by-mutbl-ref
The parser now warns about use of mutbl-ref mode, though it's kind
of a lie since this commit doesn't remove support for the mode.

Changed move_val_init to have stage0 and stage1/2 versions, the latter of
which is demoded.

Changed the type that the typechecker expects the move_val_init
intrinsic to have. After this is pushed, I can make a new snapshot,
which will remove the need for the stage0 versions.
2012-10-05 15:37:01 -07:00
doc fix escape 2012-10-05 12:41:00 -07:00
man rustc man page and usage text update. 2012-10-03 20:19:20 -04:00
mk Rename configure --enable-pax-marks flag to --enable-pax-flags flag. 2012-10-05 00:08:34 +02:00
src Demode some code using by-mutbl-ref; warn about by-mutbl-ref 2012-10-05 15:37:01 -07:00
.gitignore Update .gitignore 2012-08-21 17:08:40 -07:00
.gitmodules
AUTHORS.txt Add Yasuhiro Fujii to AUTHORS.txt 2012-10-05 12:42:41 -07:00
configure Reorder the submodule ops in configure 2012-10-05 11:32:28 -07:00
LICENSE.txt Compress metadata section. Seems a minor speed win, major space win. 2012-08-28 14:50:39 -07:00
Makefile.in Use both DESTDIR and prefix 2012-10-01 23:11:44 +02:00
README.md Update README.md 2012-09-20 02:08:11 -06:00
RELEASES.txt Fix the 0.4 header in release notes 2012-10-03 17:49:09 -07:00

The Rust Programming Language

This is a compiler for Rust, including standard libraries, tools and documentation.

Installation

The Rust compiler is slightly unusual in that it is written in Rust and therefore must be built by a precompiled "snapshot" version of itself (made in an earlier state of development). As such, source builds require that:

  • You are connected to the internet, to fetch snapshots.

  • You can at least execute snapshot binaries of one of the forms we offer them in. Currently we build and test snapshots on:

    • Windows (7, server 2008 r2) x86 only
    • Linux 2.6.x (various distributions) x86 and x86-64
    • OSX 10.6 ("Snow Leopard") or 10.7 ("Lion") x86 and x86-64

You may find other platforms work, but these are our "tier 1" supported build environments that are most likely to work. Further platforms will be added to the list in the future via cross-compilation.

To build from source you will also need the following prerequisite packages:

  • g++ 4.4 or clang++ 3.x
  • python 2.6 or later
  • perl 5.0 or later
  • gnu make 3.81 or later
  • curl

Assuming you're on a relatively modern Linux/OSX system and have met the prerequisites, something along these lines should work:

$ tar -xzf rust-0.4.tar.gz
$ cd rust-0.4
$ ./configure
$ make && make install

When complete, make install will place the following programs into /usr/local/bin:

  • rustc, the Rust compiler
  • rustdoc, the API-documentation tool
  • cargo, the Rust package manager

In addition to a manual page under /usr/local/share/man and a set of host and target libraries under /usr/local/lib/rustc.

The install locations can be adjusted by passing a --prefix argument to configure. Various other options are also supported, pass --help for more information on them.

License

Rust is primarily distributed under the terms of the MIT license, with portions covered by various BSD-like licenses.

See LICENSE.txt for details.

More help

The tutorial is a good starting point.