mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-22 09:12:43 +00:00
Don't use pentium4 as i686 baseline (closes: #908561)
This commit is contained in:
parent
617a87c649
commit
a2f13a0221
4
debian/changelog
vendored
4
debian/changelog
vendored
@ -1,7 +1,11 @@
|
||||
rustc (1.28.0+dfsg1-3) UNRELEASED; urgency=medium
|
||||
|
||||
[ Ximin Luo ]
|
||||
* More sparc64 fixes, and increase allowed-test-failures there to 180.
|
||||
|
||||
[ Julien Cristau ]
|
||||
* Don't use pentium4 as i686 baseline (closes: #908561)
|
||||
|
||||
-- Ximin Luo <infinity0@debian.org> Mon, 13 Aug 2018 20:31:31 -0700
|
||||
|
||||
rustc (1.28.0+dfsg1-2) unstable; urgency=medium
|
||||
|
||||
13
debian/patches/d-i686-baseline.patch
vendored
Normal file
13
debian/patches/d-i686-baseline.patch
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
diff --git a/src/librustc_target/spec/i686_unknown_linux_gnu.rs b/src/librustc_target/spec/i686_unknown_linux_gnu.rs
|
||||
index c3ff34788..80b296980 100644
|
||||
--- a/src/librustc_target/spec/i686_unknown_linux_gnu.rs
|
||||
+++ b/src/librustc_target/spec/i686_unknown_linux_gnu.rs
|
||||
@@ -12,7 +12,7 @@ use spec::{LinkerFlavor, Target, TargetResult};
|
||||
|
||||
pub fn target() -> TargetResult {
|
||||
let mut base = super::linux_base::opts();
|
||||
- base.cpu = "pentium4".to_string();
|
||||
+ base.cpu = "pentiumpro".to_string();
|
||||
base.max_atomic_width = Some(64);
|
||||
base.pre_link_args.get_mut(&LinkerFlavor::Gcc).unwrap().push("-m32".to_string());
|
||||
base.stack_probes = true;
|
||||
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@ -37,6 +37,7 @@ d-ignore-removed-submodules.patch
|
||||
d-armel-disable-kernel-helpers.patch
|
||||
d-read-beta-version-from-file.patch
|
||||
d-ignore-impl-generic-mismatch-diff.patch
|
||||
d-i686-baseline.patch
|
||||
|
||||
d-no-web-dependencies-in-doc.patch
|
||||
# Work around for some porterboxes, keep this commented
|
||||
|
||||
Loading…
Reference in New Issue
Block a user