diff options
| author | Smitty <me@smitop.com> | 2021-06-23 16:26:46 -0400 |
|---|---|---|
| committer | Smitty <me@smitop.com> | 2021-06-23 16:26:46 -0400 |
| commit | bdfcb88e8b6203ccb46a2fb6649979b773efc8ac (patch) | |
| tree | 59b3e4cb3e6b0d9776b9d94cba7f8c5281f599dc /src/bootstrap | |
| parent | b8be3162d734f3583b240977615f3e1bae6b364a (diff) | |
| download | rust-bdfcb88e8b6203ccb46a2fb6649979b773efc8ac.tar.gz rust-bdfcb88e8b6203ccb46a2fb6649979b773efc8ac.zip | |
Use HTTPS links where possible
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/bootstrap.py | 2 | ||||
| -rw-r--r-- | src/bootstrap/lib.rs | 2 | ||||
| -rw-r--r-- | src/bootstrap/native.rs | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index 7c7f162b82c..7864da46013 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -77,7 +77,7 @@ def download(path, url, probably_big, verbose): def _download(path, url, probably_big, verbose, exception): if probably_big or verbose: print("downloading {}".format(url)) - # see http://serverfault.com/questions/301128/how-to-download + # see https://serverfault.com/questions/301128/how-to-download if sys.platform == 'win32': run(["PowerShell.exe", "/nologo", "-Command", "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;", diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index 347236c655a..59dc889f2f7 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -857,7 +857,7 @@ impl Build { } // Work around an apparently bad MinGW / GCC optimization, - // See: http://lists.llvm.org/pipermail/cfe-dev/2016-December/051980.html + // See: https://lists.llvm.org/pipermail/cfe-dev/2016-December/051980.html // See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78936 if &*target.triple == "i686-pc-windows-gnu" { base.push("-fno-omit-frame-pointer".into()); diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs index 449fdb87b02..ea68df0ebcb 100644 --- a/src/bootstrap/native.rs +++ b/src/bootstrap/native.rs @@ -139,7 +139,7 @@ impl Step for Llvm { let _time = util::timeit(&builder); t!(fs::create_dir_all(&out_dir)); - // http://llvm.org/docs/CMake.html + // https://llvm.org/docs/CMake.html let mut cfg = cmake::Config::new(builder.src.join(root)); let profile = match (builder.config.llvm_optimize, builder.config.llvm_release_debuginfo) { @@ -276,7 +276,7 @@ impl Step for Llvm { } } - // http://llvm.org/docs/HowToCrossCompileLLVM.html + // https://llvm.org/docs/HowToCrossCompileLLVM.html if target != builder.config.build { builder.ensure(Llvm { target: builder.config.build }); // FIXME: if the llvm root for the build triple is overridden then we |
