File tree Expand file tree Collapse file tree 2 files changed +2
-16
lines changed
branches/stable/src/bootstrap/build Expand file tree Collapse file tree 2 files changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
29
29
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
30
30
refs/tags/homu-tmp: c0221c8897db309a79990367476177b1230bb264
31
31
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32
- refs/heads/stable: e9a897c10f1636fca5c99bdbf12d02ea7ffd6e4c
32
+ refs/heads/stable: 506522ff4b7d25da6623791f4d620e3b1457fbdf
33
33
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
34
34
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
35
35
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e
Original file line number Diff line number Diff line change @@ -437,21 +437,7 @@ impl Build {
437
437
}
438
438
439
439
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 ( ) ;
455
441
if target != self . config . build && !target. contains ( "msvc" ) {
456
442
base. push ( format ! ( "-Clinker={}" , self . cc( target) . display( ) ) ) ;
457
443
}
You can’t perform that action at this time.
0 commit comments