about summary refs log tree commit diff
path: root/README.md
AgeCommit message (Collapse)AuthorLines
2021-03-10update MSYS2 link in READMETrevor Spiteri-1/+1
Now https://msys2.github.io/ redirects to https://www.msys2.org/, so the README might just link to that immediately.
2021-03-09Update README.md to use the correct cmake version numberWesley Wiser-1/+1
LLVM requires at least cmake 3.13.4 and cmake is only required to build LLVM. Also closes #42555
2020-12-23Bring back a top level headingCorey Farwell-0/+2
2020-12-17Remove giant badge in READMECorey Farwell-4/+0
2020-10-18bootstrap: Print units for "finished in xxx" messageCamelid-2/+1
It now says "finished in xxx seconds". Also slightly improved some wording in the README.
2020-09-18README.md: Remove prompts from code blocksqlcom-13/+13
2020-09-09Auto merge of #76418 - jyn514:readme, r=Dylan-DPCbors-5/+4
Move sections about contributing closer together in the README This makes it easier to find what to do if you're interested in contributing.
2020-09-06Remove duplicate 'note:'Joshua Nelson-2/+2
2020-09-06Move sections about contributing closer togetherJoshua Nelson-4/+3
2020-09-02Add missing link in READMECamelid-0/+2
2020-09-01Remove tick for macOS x86Lzu Tao-1/+7
2020-08-31Adjust Linux supported kernels and glibcLzu Tao-5/+5
2020-08-31Update MinGW instructions to include ninjaCDirkx-2/+3
Added the `mingw-w64-x86_64-ninja` package to the build guide for MinGW, as well as a note not to use the `ninja` package from the `msys2` subsystem (doesn't handle paths correctly on windows).
2020-08-26Set ninja=true by defaultJosh Triplett-0/+1
Ninja substantially improves LLVM build time. On a 96-way system, using Make took 248s, and using Ninja took 161s, a 35% improvement. We already require a variety of tools to build Rust. If someone wants to build without Ninja (for instance, to minimize the set of packages required to bootstrap a new target), they can easily set `ninja=false` in `config.toml`. Our defaults should help people build Rust (and LLVM) faster, to speed up development.
2020-07-19older toolchains not valid any moreAndreas Jonson-14/+3
with the change to llvm 10 the parameter LLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN do not do any thing as min and soft error is the same. see https://github.com/rust-lang/llvm-project/blob/86b120e6f302d39cd6973b6391fb299d7bc22122/llvm/cmake/modules/CheckCompilerVersion.cmake
2020-07-03Fix "getting started" linkValentin-1/+1
The previous link is 404.
2020-07-02Rollup merge of #73454 - mark-i-m:contributing, r=nikomatsakisManish Goregaokar-21/+8
Move contributing.md to rustc-dev-guide and point at getting started See description on https://github.com/rust-lang/rustc-dev-guide/pull/753
2020-06-25Add responsiveness to logoAnirban-2/+2
Added responsiveness to image logo based on device width (set at 90% of device width, which can be changed as per requirement)
2020-06-25Added clickable-link Anirban-0/+2
Linked the logo/svg to https://www.rust-lang.org/ (change if required)
2020-06-25Add alternate text for rust logo imageAnirban-1/+1
2020-06-25Commit suggestionAnirban-1/+1
Co-authored-by: Niko Matsakis <niko@alum.mit.edu>
2020-06-24Update README.mdAnirban-4/+4
2020-06-24Minor correction to sentence structureAnirban-4/+3
2020-06-23Fix sentence structureAnirban-9/+9
Fixed grammar and sentence structure on appropriate instances.
2020-06-17move contributing.md to rustc-dev-guide and point at getting startedmark-21/+8
2020-06-02Update README.mdDutchGhost-1/+1
https://github.com/rust-lang/rust/pull/72827 changed it from `*.nix` to `Unix-like system`, but actually it should be `a Unix-like system`
2020-06-01changed *nix to Unix-likeMiller-1/+1
2020-04-10Enforce Python 3 as much as possibleGuillaume Gomez-2/+2
2020-03-31Fix broken link in READMERussell Cohen-1/+1
Crate name for rustc entry point docs changed. Fixes #70603
2020-03-10rust-lang.github.io/rustc-dev-guide -> rustc-dev-guide.rust-lang.orgSantiago Pastorino-2/+2
2020-03-10Rename rustc guide to rustc dev guideSantiago Pastorino-3/+3
2020-03-10Rename rustc-guide to rustc-dev-guideSantiago Pastorino-3/+3
2019-11-06Fix broken link in READMEAlice Ryhl-1/+1
2019-10-02Replace mentions of IRC with DiscordBO41-7/+5
2019-09-29fixed typo=-1/+1
2019-09-28linux -> Linux=-1/+1
2019-09-28add pkg-config to dependencies=-0/+1
2019-09-19Rollup merge of #63630 - andjo403:bump_compiler, r=nikomatsakisMazdak Farrokhzad-1/+12
Update installed compiler dependencies As llvm have updated the minimum toolchain https://reviews.llvm.org/D66188
2019-09-14Update installed compiler dependenciesAndreas Jonson-1/+12
there is a soft-error for older toolchains from https://reviews.llvm.org/D57264 in preparation for the hard error in https://reviews.llvm.org/D66188
2019-09-06Added more prereqs and note about default directoryAditya Atluri-0/+3
2019-07-31Fix README MSVC URIMartin Finkel-1/+1
2019-07-22Change "OSX" to "macOS"Alex Touchet-5/+5
2019-07-09Update cargo-vendor usageEric Huss-41/+27
2019-07-04Update README.mdMark Brooks-1/+1
2019-06-08Neutralize linkSunreal-2/+1
2019-06-07rephraseSunreal-3/+2
2019-06-05Windows 10 SDK is also required now.Sunreal-0/+2
2019-05-23Remove the incorrect warning from README.mdScott McMurray-4/+3
My problem was user error; thanks to @Zoxc for fixing me! r? @alexcrichton
2019-05-13README: Mention MSVC 2017+, not 2013(!)Scott McMurray-3/+9
LLVM will soon require 2017+ [1] (and our in-tree version just rejected the version of 2015 I was using), so update the mention and provide a link. [1]: https://llvm.org/docs/GettingStarted.html#host-c-toolchain-both-compiler-and-standard-library
2019-04-12Add a link to the licenses pageAndrew Xu-0/+4