I previously mis-reported this at rust-lang/rust#79924
Problem
Steps
- Try to install rust using Rustup on an Apple Silicon laptop.
% curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Expected this to install rust, however there are two problems, lets focus on the first one in this ticket: (The other issue was I was expecting it to install the tier-2 platform, but it seems I need the nightly for that, which will be fine).
Warning: Not enforcing strong cipher suites for TLS, this is potentially less secure
Warning: Detected OS X platform older than 10.13
Warning: Not enforcing TLS v1.2, this is potentially less secure
Big Sur is definitely not older than 10.13!
Possible Solution(s)
Correctly parse the output for the OS version, which is as follows:
% sw_vers -productVersion
11.0.1
Notes
Output of rustup --version:
Output of rustup show:
I previously mis-reported this at rust-lang/rust#79924
Problem
Steps
% curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shExpected this to install rust, however there are two problems, lets focus on the first one in this ticket: (The other issue was I was expecting it to install the tier-2 platform, but it seems I need the nightly for that, which will be fine).
Big Sur is definitely not older than 10.13!
Possible Solution(s)
Correctly parse the output for the OS version, which is as follows:
% sw_vers -productVersion11.0.1Notes
Output of
rustup --version:Output of
rustup show: