summaryrefslogtreecommitdiffstats
path: root/debian/patches/d-rustc-i686-baseline.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/d-rustc-i686-baseline.patch')
-rw-r--r--debian/patches/d-rustc-i686-baseline.patch49
1 files changed, 0 insertions, 49 deletions
diff --git a/debian/patches/d-rustc-i686-baseline.patch b/debian/patches/d-rustc-i686-baseline.patch
deleted file mode 100644
index e00dc112c..000000000
--- a/debian/patches/d-rustc-i686-baseline.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From: Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
-Date: Thu, 14 Jul 2022 13:17:39 +0200
-Subject: d-rustc-i686-baseline
-
-===================================================================
----
- compiler/rustc_target/src/spec/targets/i686_unknown_linux_gnu.rs | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-Index: rust/compiler/rustc_target/src/spec/targets/i686_unknown_linux_gnu.rs
-===================================================================
---- rust.orig/compiler/rustc_target/src/spec/targets/i686_unknown_linux_gnu.rs
-+++ rust/compiler/rustc_target/src/spec/targets/i686_unknown_linux_gnu.rs
-@@ -2,7 +2,7 @@ use crate::spec::{base, Cc, LinkerFlavor
-
- pub fn target() -> Target {
- let mut base = base::linux_gnu::opts();
-- base.cpu = "pentium4".into();
-+ base.cpu = "pentiumpro".into();
- base.max_atomic_width = Some(64);
- base.supported_sanitizers = SanitizerSet::ADDRESS;
- base.add_pre_link_args(LinkerFlavor::Gnu(Cc::Yes, Lld::No), &["-m32"]);
-Index: rust/tests/ui/sse2.rs
-===================================================================
---- rust.orig/tests/ui/sse2.rs
-+++ rust/tests/ui/sse2.rs
-@@ -15,7 +15,7 @@ fn main() {
- }
- Err(_) => return,
- }
-- if cfg!(any(target_arch = "x86", target_arch = "x86_64")) {
-+ if cfg!(any(target_arch = "x86_64")) {
- assert!(cfg!(target_feature = "sse2"),
- "SSE2 was not detected as available on an x86 platform");
- }
-Index: rust/tests/ui/abi/homogenous-floats-target-feature-mixup.rs
-===================================================================
---- rust.orig/tests/ui/abi/homogenous-floats-target-feature-mixup.rs
-+++ rust/tests/ui/abi/homogenous-floats-target-feature-mixup.rs
-@@ -24,7 +24,8 @@ fn main() {
- match std::env::var("TARGET") {
- Ok(s) => {
- // Skip this tests on i586-unknown-linux-gnu where sse2 is disabled
-- if s.contains("i586") {
-+ // Debian: our i686 doesn't have SSE 2..
-+ if s.contains("i586") || s.contains("i686") {
- return
- }
- }