]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #103989 - arlosi:arm32-panic, r=Amanieu
authorMatthias Krüger <matthias.krueger@famsik.de>
Sat, 19 Nov 2022 14:35:20 +0000 (15:35 +0100)
committerGitHub <noreply@github.com>
Sat, 19 Nov 2022 14:35:20 +0000 (15:35 +0100)
commit747f29fbabbf7e230be442e5f5023692d816ab3a
treef55f2506d29c5a0d6efe410c35c3a0b14b0a9fda
parent4451e2881fbc7c066e8f44c1b09b69b0648e41d7
parent7c602360364ac21ee17d5fd81dc142ecb67b56a5
Rollup merge of #103989 - arlosi:arm32-panic, r=Amanieu

Fix build of std for thumbv7a-pc-windows-msvc

Attempting to build std for the tier-3 target `thumbv7a-pc-windows-msvc` fails with the following error:
```
Building stage1 std artifacts (x86_64-pc-windows-msvc -> thumbv7a-pc-windows-msvc)
..
LLVM ERROR: WinEH not implemented for this target
error: could not compile `panic_unwind`
```

EH (unwinding) is not supported by LLVM for 32 bit arm msvc targets. This changes panic unwind to use the dummy implementation for `thumbv7a-pc-windows-msvc`.