Changes between Version 12 and Version 13 of rust


Ignore:
Timestamp:
09/20/2023 06:26:58 AM (9 months ago)
Author:
Xi Ruoyao
Comment:

Reverted to version 11. The 1.71.0 vs 1.71.1 problem is a bug and it's fixed by https://github.com/rust-lang/rust/commit/31a81a08786826cc6e832bd0b49fb8b934e29648

Legend:

Unmodified
Added
Removed
Modified
  • rust

    v12 v13  
    2222See https://www.linuxfromscratch.org/hints/downloads/files/rustc-offline-hint.txt
    2323
    24 === Upgrading from 1.x.y  to 1.(x+1).z or Rebuilding ===
     24=== Upgrading from 1.x.y to 1.x.z or 1.(x+1).z ===
    2525
    26 If you've already installed Rustc-1.x.y and now you are building Rustc-1.(x+1).z (where x, y, z are any integers),
    27 or rebuilding Rustc-1.x.y itself, you may add two lines into the `[build]` section of `config.toml`:
     26If you've already installed Rustc-1.x.y and now you are building Rustc-1.x.z or Rustc-1.(x+1).z (where x, y, z are any integers),
     27you may add two lines into the `[build]` section of `config.toml`:
    2828
    2929{{{
     
    3434Then the building system will use Rustc-1.x.y as the bootstrap compiler, instead of downloading a pre-built binary.  So this method can also avoid a dependency on the Internet connection.
    3535
    36 Note that this generally won't work if you are building neither Rustc-1.(x+1).z nor Rustc-1.x.y.
     36Note that this generally won't work if you are building Rustc-1.t.z where t is neither x nor x+1.
    3737
    3838And, even if this method is used, running the test suite will still download a pre-built binary.