diff options
| author | David Wood <david.wood@huawei.com> | 2023-12-07 15:36:00 +0000 |
|---|---|---|
| committer | David Wood <david.wood@huawei.com> | 2023-12-07 15:36:00 +0000 |
| commit | 399cd6cbfd3a797b1a48d122db57501c5926bd10 (patch) | |
| tree | 41fcd5e8786d0889863dac7aea048f2d00f8488b | |
| parent | 7df0c211ace4157009eebd015f1a083490faa0bc (diff) | |
| download | rust-399cd6cbfd3a797b1a48d122db57501c5926bd10.tar.gz rust-399cd6cbfd3a797b1a48d122db57501c5926bd10.zip | |
targets: remove not-added {i386,i486}-unknown-linux-gnu
These files were added to the repository but never wired up so they could be used - and that was a few years ago without anyone noticing - so let's remove these, they can be re-added if someone wants them. Signed-off-by: David Wood <david@davidtw.co>
| -rw-r--r-- | compiler/rustc_target/src/spec/targets/i386_unknown_linux_gnu.rs | 8 | ||||
| -rw-r--r-- | compiler/rustc_target/src/spec/targets/i486_unknown_linux_gnu.rs | 8 |
2 files changed, 0 insertions, 16 deletions
diff --git a/compiler/rustc_target/src/spec/targets/i386_unknown_linux_gnu.rs b/compiler/rustc_target/src/spec/targets/i386_unknown_linux_gnu.rs deleted file mode 100644 index 801a8893399..00000000000 --- a/compiler/rustc_target/src/spec/targets/i386_unknown_linux_gnu.rs +++ /dev/null @@ -1,8 +0,0 @@ -use crate::spec::Target; - -pub fn target() -> Target { - let mut base = super::i686_unknown_linux_gnu::target(); - base.cpu = "i386".into(); - base.llvm_target = "i386-unknown-linux-gnu".into(); - base -} diff --git a/compiler/rustc_target/src/spec/targets/i486_unknown_linux_gnu.rs b/compiler/rustc_target/src/spec/targets/i486_unknown_linux_gnu.rs deleted file mode 100644 index a11fbecc3c3..00000000000 --- a/compiler/rustc_target/src/spec/targets/i486_unknown_linux_gnu.rs +++ /dev/null @@ -1,8 +0,0 @@ -use crate::spec::Target; - -pub fn target() -> Target { - let mut base = super::i686_unknown_linux_gnu::target(); - base.cpu = "i486".into(); - base.llvm_target = "i486-unknown-linux-gnu".into(); - base -} |
