Changes between Version 12 and Version 13 of rust
- Timestamp:
- 09/20/2023 06:26:58 AM (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified rust
v12 v13 22 22 See https://www.linuxfromscratch.org/hints/downloads/files/rustc-offline-hint.txt 23 23 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 === 25 25 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`:26 If 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), 27 you may add two lines into the `[build]` section of `config.toml`: 28 28 29 29 {{{ … … 34 34 Then 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. 35 35 36 Note that this generally won't work if you are building neither Rustc-1.(x+1).z nor Rustc-1.x.y.36 Note that this generally won't work if you are building Rustc-1.t.z where t is neither x nor x+1. 37 37 38 38 And, even if this method is used, running the test suite will still download a pre-built binary.