File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed
compiler/rustc_target/src/spec Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -3317,15 +3317,7 @@ impl Target {
33173317 return load_file ( & p) ;
33183318 }
33193319
3320- // Leave in a specialized error message for the removed target.
3321- // FIXME: If you see this and it's been a few months after this has been released,
3322- // you can probably remove it.
3323- if target_tuple == "i586-pc-windows-msvc" {
3324- Err ( "the `i586-pc-windows-msvc` target has been removed. Use the `i686-pc-windows-msvc` target instead.\n \
3325- Windows 10 (the minimum required OS version) requires a CPU baseline of at least i686 so you can safely switch". into ( ) )
3326- } else {
3327- Err ( format ! ( "could not find specification for target {target_tuple:?}" ) )
3328- }
3320+ Err ( format ! ( "could not find specification for target {target_tuple:?}" ) )
33293321 }
33303322 TargetTuple :: TargetJson { ref contents, .. } => Target :: from_json ( contents) ,
33313323 }
You can’t perform that action at this time.
0 commit comments