Skip to content

Commit 43d785f

Browse files
committed
---
yaml --- r: 275308 b: refs/heads/stable c: 506522f h: refs/heads/master
1 parent 38f66ab commit 43d785f

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: c0221c8897db309a79990367476177b1230bb264
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: e9a897c10f1636fca5c99bdbf12d02ea7ffd6e4c
32+
refs/heads/stable: 506522ff4b7d25da6623791f4d620e3b1457fbdf
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
3535
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e

branches/stable/src/bootstrap/build/mod.rs

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -437,21 +437,7 @@ impl Build {
437437
}
438438

439439
fn rustc_flags(&self, target: &str) -> Vec<String> {
440-
let mut base = match target {
441-
"arm-unknown-linux-gnueabihf" => {
442-
vec!["-Ctarget-feature=+v6,+vfp2".to_string()]
443-
}
444-
"mips-unknown-linux-gnu" => {
445-
vec!["-Ctarget-cpu=mips32r2".to_string(),
446-
"-Ctarget-feature=+mips32r2".to_string(),
447-
"-Csoft-float".to_string()]
448-
}
449-
"mipsel-unknown-linux-gnu" => {
450-
vec!["-Ctarget-cpu=mips32".to_string(),
451-
"-Ctarget-feature=+mips32".to_string()]
452-
}
453-
_ => Vec::new(),
454-
};
440+
let mut base = Vec::new();
455441
if target != self.config.build && !target.contains("msvc") {
456442
base.push(format!("-Clinker={}", self.cc(target).display()));
457443
}

0 commit comments

Comments
 (0)