Skip to content

Commit eda2a40

Browse files
Merge remote-tracking branch 'origin/master' into mpk/add-long-error-message-for-E0311
2 parents 4a443df + 9243168 commit eda2a40

File tree

2,077 files changed

+36214
-20692
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,077 files changed

+36214
-20692
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,24 +391,28 @@ jobs:
391391
env:
392392
RUST_CONFIGURE_ARGS: "--build=i686-pc-windows-gnu --set llvm.allow-old-toolchain"
393393
SCRIPT: make ci-mingw-subset-1
394+
NO_DOWNLOAD_CI_LLVM: 1
394395
CUSTOM_MINGW: 1
395396
os: windows-latest-xl
396397
- name: i686-mingw-2
397398
env:
398399
RUST_CONFIGURE_ARGS: "--build=i686-pc-windows-gnu --set llvm.allow-old-toolchain"
399400
SCRIPT: make ci-mingw-subset-2
401+
NO_DOWNLOAD_CI_LLVM: 1
400402
CUSTOM_MINGW: 1
401403
os: windows-latest-xl
402404
- name: x86_64-mingw-1
403405
env:
404406
SCRIPT: make ci-mingw-subset-1
405407
RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-gnu --enable-profiler --set llvm.allow-old-toolchain"
408+
NO_DOWNLOAD_CI_LLVM: 1
406409
CUSTOM_MINGW: 1
407410
os: windows-latest-xl
408411
- name: x86_64-mingw-2
409412
env:
410413
SCRIPT: make ci-mingw-subset-2
411414
RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-gnu --enable-profiler --set llvm.allow-old-toolchain"
415+
NO_DOWNLOAD_CI_LLVM: 1
412416
CUSTOM_MINGW: 1
413417
os: windows-latest-xl
414418
- name: dist-x86_64-msvc
@@ -427,12 +431,13 @@ jobs:
427431
env:
428432
RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --host=aarch64-pc-windows-msvc --enable-full-tools --enable-profiler"
429433
SCRIPT: python x.py dist
430-
DIST_REQUIRE_ALL_TOOLS: 0
434+
DIST_REQUIRE_ALL_TOOLS: 1
431435
WINDOWS_SDK_20348_HACK: 1
432436
os: windows-latest-xl
433437
- name: dist-i686-mingw
434438
env:
435439
RUST_CONFIGURE_ARGS: "--build=i686-pc-windows-gnu --enable-full-tools --enable-profiler --set llvm.allow-old-toolchain"
440+
NO_DOWNLOAD_CI_LLVM: 1
436441
SCRIPT: python x.py dist
437442
CUSTOM_MINGW: 1
438443
DIST_REQUIRE_ALL_TOOLS: 1
@@ -441,6 +446,7 @@ jobs:
441446
env:
442447
SCRIPT: python x.py dist
443448
RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-gnu --enable-full-tools --enable-profiler --set llvm.allow-old-toolchain"
449+
NO_DOWNLOAD_CI_LLVM: 1
444450
CUSTOM_MINGW: 1
445451
DIST_REQUIRE_ALL_TOOLS: 1
446452
os: windows-latest-xl

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ no_llvm_build
4242
/llvm/
4343
/mingw-build/
4444
/build/
45+
/build-rust-analyzer/
4546
/dist/
4647
/unicode-downloads
4748
/target

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
[submodule "src/doc/book"]
1414
path = src/doc/book
1515
url = https://github.com/rust-lang/book.git
16-
[submodule "src/tools/rls"]
17-
path = src/tools/rls
18-
url = https://github.com/rust-lang/rls.git
1916
[submodule "src/tools/miri"]
2017
path = src/tools/miri
2118
url = https://github.com/rust-lang/miri.git

.reuse/dep5

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Files-Excluded:
3+
src/llvm-project
4+
5+
Files: *
6+
Copyright: The Rust Project Developers (see https://thanks.rust-lang.org)
7+
License: MIT or Apache-2.0
8+
9+
Files: library/std/src/sync/mpsc/mpsc_queue.rs
10+
library/std/src/sync/mpsc/spsc_queue.rs
11+
Copyright: 2010-2011 Dmitry Vyukov
12+
License: BSD-2-Clause
13+
14+
Files: src/librustdoc/html/static/fonts/FiraSans*
15+
Copyright: 2014, Mozilla Foundation, 2014, Telefonica S.A.
16+
License: OFL-1.1
17+
18+
Files: src/librustdoc/html/static/fonts/NanumBarun*
19+
Copyright: 2010 NAVER Corporation
20+
License: OFL-1.1
21+
22+
Files: src/librustdoc/html/static/fonts/SourceCodePro*
23+
Copyright: 2010, 2012 Adobe Systems Incorporated
24+
License: OFL-1.1
25+
26+
Files: src/librustdoc/html/static/fonts/SourceSerif4*
27+
Copyright: 2014-2021 Adobe Systems Incorporated
28+
License: OFL-1.1

0 commit comments

Comments
 (0)