rust/src
Samuel Holland 8d3dd39d88 Correct minimum system LLVM version in tests
Since commit 9452a8dfa3, the new debug info format is only generated
for LLVM 8 and newer versions. However, the tests still assume that LLVM
7 will use the new debug info format. Fix the tests (and a comment in
the code) to match the actual version check.
2019-03-22 21:28:25 -05:00
..
bootstrap rustbuild: remove obsolete fulldeps behavior from src/test/pretty tests, and enable them by default. 2019-03-15 13:25:10 +02:00
build_helper rustc: doc comments 2019-02-10 23:42:32 +00:00
ci Fix TARGET variable in musl-toolchain.sh 2019-03-15 01:19:54 +01:00
doc Rollup merge of #58626 - QuietMisdreavus:doc-coverage, r=GuillaumeGomez 2019-03-09 17:18:13 +01:00
etc rust-lldb: fix crash when printing empty string 2019-03-06 12:28:38 -05:00
grammar
liballoc Use lifetime contravariance to elide more lifetimes in core+alloc+std 2019-03-09 19:10:28 -08:00
libarena libarena => 2018 2019-02-11 23:49:48 +01:00
libcore Auto merge of #58710 - EdorianDark:master, r=sfackler 2019-03-15 06:23:21 +00:00
libfmt_macros Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
libgraphviz Auto merge of #58051 - SimonSapin:str_escape, r=alexcrichton 2019-02-12 23:30:16 +00:00
libpanic_abort SGX target: fix panic = abort 2019-02-14 12:39:54 +05:30
libpanic_unwind libpanic_unwind => 2018: remove unused extern crate. 2019-02-13 18:09:09 +01:00
libproc_macro Use ? in some macros 2019-02-24 21:59:44 +09:00
libprofiler_builtins Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
librustc Auto merge of #58556 - oli-obk:imperative_recursion, r=pnkfelix 2019-03-15 19:24:15 +00:00
librustc_allocator Auto merge of #58098 - oli-obk:maybe_allow_internal_unstable, r=petrochenkov 2019-02-12 12:10:10 +00:00
librustc_apfloat Stabilize TryFrom and TryInto 2019-02-13 18:00:18 +01:00
librustc_asan Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
librustc_borrowck rustc: rename item_path to def_path (except the module in ty). 2019-03-15 13:25:10 +02:00
librustc_codegen_llvm Correct minimum system LLVM version in tests 2019-03-22 21:28:25 -05:00
librustc_codegen_ssa rustc: remove fmt::{Debug,Display} from ty::TyKind. 2019-03-15 09:26:13 +02:00
librustc_codegen_utils rustc: provide DisambiguatedDefPathData in ty::print. 2019-03-15 13:25:10 +02:00
librustc_cratesio_shim librustc_cratesio_shim => 2018 2019-02-08 20:55:12 +09:00
librustc_data_structures Use derive macro for HashStable 2019-03-13 00:03:13 +01:00
librustc_driver rustc: replace node_path_str with uses of def_path_str. 2019-03-15 13:25:10 +02:00
librustc_errors fix bad logic 2019-03-07 08:46:18 -08:00
librustc_fs_util rustc: doc comments 2019-02-10 23:42:32 +00:00
librustc_incremental rustc: rename item_path to def_path (except the module in ty). 2019-03-15 13:25:10 +02:00
librustc_interface Auto merge of #58488 - wesleywiser:llvm_prof, r=michaelwoerister 2019-03-14 08:38:56 +00:00
librustc_lint rustc: rename item_path to def_path (except the module in ty). 2019-03-15 13:25:10 +02:00
librustc_llvm Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
librustc_lsan Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
librustc_macros Make rustc_macro a Rust 2018 crate 2019-03-05 20:46:45 +01:00
librustc_metadata Auto merge of #58915 - ljedrz:deprecate_nodeid_methods, r=Zoxc 2019-03-08 13:49:07 +00:00
librustc_mir Auto merge of #58556 - oli-obk:imperative_recursion, r=pnkfelix 2019-03-15 19:24:15 +00:00
librustc_msan Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
librustc_passes Auto merge of #58608 - pnkfelix:warning-period-for-detecting-nested-impl-trait, r=zoxc 2019-03-12 12:09:47 +00:00
librustc_plugin hir: remove NodeId from Item 2019-03-02 07:48:52 +01:00
librustc_privacy rustc: rename item_path to def_path (except the module in ty). 2019-03-15 13:25:10 +02:00
librustc_resolve resolve: Simplify import resolution for mixed 2015/2018 edition mode 2019-03-12 21:57:02 +03:00
librustc_save_analysis rustc: replace node_path_str with uses of def_path_str. 2019-03-15 13:25:10 +02:00
librustc_target Rollup merge of #58080 - MikaelUrankar:freebsd_arm, r=sanxiyn 2019-03-08 09:41:36 +01:00
librustc_traits HirIdification: replace NodeId method calls 2019-03-07 09:22:43 +01:00
librustc_tsan Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
librustc_typeck rustc: move the contents of ty::item_path to ty::print. 2019-03-15 13:25:10 +02:00
librustdoc rustc: provide DisambiguatedDefPathData in ty::print. 2019-03-15 13:25:10 +02:00
libserialize Auto merge of #58341 - alexreg:cosmetic-2-doc-comments, r=steveklabnik 2019-02-12 19:09:24 +00:00
libstd Auto merge of #58710 - EdorianDark:master, r=sfackler 2019-03-15 06:23:21 +00:00
libsyntax rustc: rename item_path to def_path (except the module in ty). 2019-03-15 13:25:10 +02:00
libsyntax_ext Simplify code 2019-03-06 18:46:11 -08:00
libsyntax_pos update scoped_tls to 1.0 2019-02-26 09:54:45 +01:00
libterm replace deprecated rustfmt_skip with rustfmt::skip 2019-02-23 22:40:56 +01:00
libtest Simplify exclude_should_panic flag. 2019-02-24 11:58:08 -05:00
libunwind Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
llvm-emscripten@7f23313edf
llvm-project@38ad31bde8 rustc: Update LLVM, remove dead wasm code 2019-02-26 07:20:17 -08:00
rtstartup
rustc Make the rustc driver and interface demand driven 2019-03-10 04:49:45 +01:00
rustllvm Implement ffi_returns_twice attribute 2019-02-23 15:48:40 +01:00
stdsimd@359845eb7c Update stdsimd 2019-02-24 11:31:49 +01:00
test Correct minimum system LLVM version in tests 2019-03-22 21:28:25 -05:00
tools update miri 2019-03-14 15:25:23 +01:00
.gitignore
README.md remove link to removed readme 2019-01-15 19:48:37 -06:00
stage0.txt Bootstrap compiler update for 1.35 release 2019-03-02 09:05:34 -07:00

This directory contains the source code of the rust project, including:

  • rustc and its tests
  • libstd
  • Various submodules for tools, like rustdoc, rls, etc.

For more information on how various parts of the compiler work, see the rustc guide.

There is also useful content in the following READMEs, which are gradually being moved over to the guide: