rust/src
Josh Stone e0d8364dad std: Use target_pointer_width for BACKTRACE_ELF_SIZE
The former code used `target.contains("64")` to detect Elf64 targets,
but this is inaccurate in a few cases:

- `s390x-unknown-linux-gnu` is 64-bit
- `sparcv9-sun-solaris` is 64-bit
- `x86_64-unknown-linux-gnux32` is 32-bit

Instead the `std` build script can use `CARGO_CFG_TARGET_POINTER_WIDTH`
to reliably detect 64-bit targets for libbacktrace.

Also update to backtrace-sys 0.1.24 for alexcrichton/backtrace-rs#122.
2018-08-14 21:08:42 -07:00
..
bootstrap Rollup merge of #53165 - jakllsch:netbsd-ad22a005-b917-47f3-8156-f717d36f6bbe, r=estebank 2018-08-12 23:26:52 +02:00
build_helper
ci
dlmalloc@c99638dc2e
doc
etc Rollup merge of #53112 - fukatani:pretty-print-btreeset, r=michaelwoerister 2018-08-14 23:59:04 +08:00
grammar
jemalloc@1f5a28755e
liballoc Add links to std::char::REPLACEMENT_CHARACTER from docs. 2018-08-11 15:42:35 -04:00
liballoc_jemalloc
liballoc_system
libarena
libbacktrace@f4d02bbdbf
libcompiler_builtins@d549d85b17
libcore Auto merge of #53033 - RalfJung:manually_dro, r=SimonSapin 2018-08-14 08:32:59 +00:00
libfmt_macros
libgraphviz
liblibc@6bdbf5dc93
libpanic_abort
libpanic_unwind
libproc_macro
libprofiler_builtins
librustc Auto merge of #52928 - Mark-Simulacrum:borrowck-cleanup, r=cramertj 2018-08-15 00:37:52 +00:00
librustc_allocator Move SmallVec and ThinVec out of libsyntax 2018-08-13 22:11:57 +02:00
librustc_apfloat
librustc_asan
librustc_borrowck Auto merge of #52928 - Mark-Simulacrum:borrowck-cleanup, r=cramertj 2018-08-15 00:37:52 +00:00
librustc_codegen_llvm Rollup merge of #53290 - whitequark:fix-35741, r=nagisa 2018-08-14 23:59:16 +08:00
librustc_codegen_utils Rollup merge of #53230 - memoryruins:nll_bootstrap_4, r=nikomatsakis 2018-08-12 23:26:56 +02:00
librustc_cratesio_shim
librustc_data_structures Move SmallVec and ThinVec out of libsyntax 2018-08-13 22:11:57 +02:00
librustc_driver Auto merge of #53354 - kennytm:rollup, r=kennytm 2018-08-14 17:24:18 +00:00
librustc_errors
librustc_fs_util
librustc_incremental
librustc_lint
librustc_llvm
librustc_lsan
librustc_metadata rustc_resolve: fix special-case for one-segment import paths. 2018-08-14 07:06:50 +03:00
librustc_metadata_utils
librustc_mir Rollup merge of #53230 - memoryruins:nll_bootstrap_4, r=nikomatsakis 2018-08-12 23:26:56 +02:00
librustc_msan
librustc_passes Clean up and add extra tests 2018-08-11 21:25:48 +01:00
librustc_platform_intrinsics
librustc_plugin
librustc_privacy
librustc_resolve rustc_resolve: crates only exist in the type namespace. 2018-08-14 11:26:44 +03:00
librustc_save_analysis
librustc_target Rollup merge of #53246 - ljedrz:cleanup_various, r=kennytm 2018-08-14 23:59:12 +08:00
librustc_traits
librustc_tsan
librustc_typeck Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk 2018-08-14 23:59:17 +08:00
librustdoc Rollup merge of #53226 - QuietMisdreavus:editions-for-all, r=estebank 2018-08-14 23:59:07 +08:00
libserialize Rollup merge of #53246 - ljedrz:cleanup_various, r=kennytm 2018-08-14 23:59:12 +08:00
libstd std: Use target_pointer_width for BACKTRACE_ELF_SIZE 2018-08-14 21:08:42 -07:00
libsyntax Auto merge of #53085 - ljedrz:cleanup_syntax_structures, r=ljedrz 2018-08-14 15:09:37 +00:00
libsyntax_ext Move SmallVec and ThinVec out of libsyntax 2018-08-13 22:11:57 +02:00
libsyntax_pos
libterm
libtest
libunwind
llvm@e19f07f5a6
llvm-emscripten@2717444753
rtstartup
rustc
rustllvm Make LLVM emit assembly comments with -Z asm-comments. 2018-08-12 17:59:33 +00:00
stdsimd@05c2f61c38
test Auto merge of #53354 - kennytm:rollup, r=kennytm 2018-08-14 17:24:18 +00:00
tools Auto merge of #53361 - Manishearth:clippyup, r=nrc 2018-08-14 19:38:45 +00:00
Cargo.lock std: Use target_pointer_width for BACKTRACE_ELF_SIZE 2018-08-14 21:08:42 -07:00
Cargo.toml
README.md
stage0.txt

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.

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