e61ec99af2
Fix for type identifiers with only underscores (two or more), I assume they doesn't count as camel case. ```rust type __ = int; fn main() { } ``` ``` error: internal compiler error: unexpected failure note: the compiler hit an unexpected failure path. this is a bug. note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html note: run with `RUST_BACKTRACE=1` for a backtrace task 'rustc' failed at 'index out of bounds: the len is 0 but the index is 0', /home/rustbuild/src/rust-buildbot/slave/nightly-linux/build/src/librustc/lib.rs:1 stack backtrace: 1: 0xb603f5d0 - rt::backtrace:👿:write::ha55f265f6626471dmxr 2: 0xb6042620 - failure::on_fail::h4d2c6d42b67e94803Sr 3: 0xb640a180 - unwind::begin_unwind_inner::h484879fa7cc3611fZhe 4: 0xb6409e50 - unwind::begin_unwind_fmt::hd14e5c64bc9006capfe 5: 0xb6409df0 - rust_begin_unwind 6: 0xb6454580 - failure::begin_unwind::h9ab1fc5753bd08f3YDk 7: 0xb6458cb0 - failure::fail_bounds_check::h88167bad36865909aCk 8: 0xb6f685d0 - lint::builtin::NonCamelCaseTypes.LintPass::check_item::check_case::he854eeffd105cb0f40E 9: 0xb6f68050 - lint::builtin::NonCamelCaseTypes.LintPass::check_item::hc35b45d248e41cd43XE 10: 0xb6f7b760 - lint::context::Context<'a>.Visitor<(*>::visit_item::closure.139262 11: 0xb6f79510 - lint::context::Context<'a>::with_lint_attrs::hb9efe321fa321ce6spG 12: 0xb6f81d30 - lint::context::Context<'a>.Visitor<(*>::visit_mod::he4593c831936b308ZMG 13: 0xb6f8f2f0 - lint::context::check_crate::closure.139319 14: 0xb6f79510 - lint::context::Context<'a>::with_lint_attrs::hb9efe321fa321ce6spG 15: 0xb6efda70 - lint::context::check_crate::ha9e64328726b9579q1G 16: 0xb6efda20 - driver::driver::phase_3_run_analysis_passes::closure.136263 17: 0xb659d640 - util::common::time::h2837683151147173214 18: 0xb6e7d130 - driver::driver::phase_3_run_analysis_passes::h7079eff53afc4de3Jfz 19: 0xb6e783f0 - driver::driver::compile_input::h0ec84a550e24779cP1y 20: 0xb6f26250 - driver::run_compiler::h7e7c01ecbfd0ad87JzC 21: 0xb6f26150 - driver::main_args::closure.137215 22: 0xb6f380d0 - task::TaskBuilder<S>::try_future::closure.138376 23: 0xb6f37ec0 - task::TaskBuilder<S>::spawn_internal::closure.138353 24: 0xb774bdd0 - task::spawn_opts::closure.8325 25: 0xb6409c10 - unwind::try::try_fn::h91f00772748cf73eD8d 26: 0xb6468ae0 - rust_try_inner 27: 0xb6468aa0 - rust_try 28: 0xb6407880 - unwind::try::h78a4fc0e85c326aef6d 29: 0xb6407640 - task::Task::run::hb6f2d9484116e3d8xcd 30: 0xb774bba0 - task::spawn_opts::closure.8271 31: 0xb6409350 - thread::thread_start::h8c02fef9f651da5cjBd 32: 0xb5ed3fc0 - start_thread 33: 0xb62e8a32 - __clone 34: 0x0 - <unknown> ``` |
||
---|---|---|
man | ||
mk | ||
src | ||
.gitattributes | ||
.gitignore | ||
.gitmodules | ||
.mailmap | ||
.travis.yml | ||
AUTHORS.txt | ||
configure | ||
CONTRIBUTING.md | ||
COPYRIGHT | ||
LICENSE-APACHE | ||
LICENSE-MIT | ||
Makefile.in | ||
README.md | ||
RELEASES.txt |
The Rust Programming Language
This is a compiler for Rust, including standard libraries, tools and documentation.
Quick Start
- Download a binary installer for your platform.
- Read the tutorial.
- Enjoy!
Note: Windows users can read the detailed getting started notes on the wiki.
Building from Source
-
Make sure you have installed the dependencies:
g++
4.7 orclang++
3.xpython
2.6 or later (but not 3.x)perl
5.0 or later- GNU
make
3.81 or later curl
git
-
Download and build Rust:
You can either download a tarball or build directly from the repo.
To build from the tarball do:
$ curl -O https://static.rust-lang.org/dist/rust-nightly.tar.gz $ tar -xzf rust-nightly.tar.gz $ cd rust-nightly
Or to build from the repo do:
$ git clone https://github.com/rust-lang/rust.git $ cd rust
Now that you have Rust's source code, you can configure and build it:
$ ./configure $ make && make install
Note: You may need to use
sudo make install
if you do not normally have permission to modify the destination directory. The install locations can be adjusted by passing a--prefix
argument toconfigure
. Various other options are also supported, pass--help
for more information on them.When complete,
make install
will place several programs into/usr/local/bin
:rustc
, the Rust compiler, andrustdoc
, the API-documentation tool. -
Read the tutorial.
-
Enjoy!
Building on Windows
To easily build on windows we can use MSYS2:
-
Grab the latest MSYS2 installer and go through the installer.
-
Now from the MSYS2 terminal we want to install the mingw64 toolchain and the other tools we need.
$ pacman -S mingw-w64-i686-toolchain $ pacman -S base-devel
-
With that now start
mingw32_shell.bat
from where you installed MSYS2 (i.e.C:\msys
). -
From there just navigate to where you have Rust's source code, configure and build it:
$ ./configure $ make && make install
Notes
Since the Rust compiler is written in Rust, it must be built by a precompiled "snapshot" version of itself (made in an earlier state of development). As such, source builds require a connection to the Internet, to fetch snapshots, and an OS that can execute the available snapshot binaries.
Snapshot binaries are currently built and tested on several platforms:
- Windows (7, 8, Server 2008 R2), x86 only
- Linux (2.6.18 or later, various distributions), x86 and x86-64
- OSX 10.7 (Lion) or greater, x86 and x86-64
You may find that other platforms work, but these are our officially supported build environments that are most likely to work.
Rust currently needs about 1.5 GiB of RAM to build without swapping; if it hits swap, it will take a very long time to build.
There is a lot more documentation in the wiki.
License
Rust is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.
See LICENSE-APACHE, LICENSE-MIT, and COPYRIGHT for details.