File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
- Version 1.15.1 (2017-02-08 )
1
+ Version 1.15.1 (2017-02-09 )
2
2
===========================
3
3
4
4
* [ Fix IntoIter::as_mut_slice's signature] [ 39466 ]
5
+ * [ Compile compiler builtins with ` -fPIC ` on 32-bit platforms] [ 39523 ]
5
6
6
7
[ 39466 ] : https://github.com/rust-lang/rust/pull/39466
8
+ [ 39523 ] : https://github.com/rust-lang/rust/pull/39523
7
9
8
10
9
11
Version 1.15.0 (2017-02-02)
@@ -971,7 +973,7 @@ Tooling
971
973
* [ Test binaries now support a ` --test-threads ` argument to specify the number
972
974
of threads used to run tests, and which acts the same as the
973
975
` RUST_TEST_THREADS ` environment variable]
974
- (https://github.com/rust-lang/rust/pull/35414 )
976
+ (https://github.com/rust-lang/rust/pull/35414 )
975
977
* [ The test runner now emits a warning when tests run over 60 seconds]
976
978
(https://github.com/rust-lang/rust/pull/35405 )
977
979
* [ rustdoc: Fix methods in search results]
Original file line number Diff line number Diff line change @@ -812,6 +812,11 @@ impl Build {
812
812
} ,
813
813
_ => { } ,
814
814
}
815
+
816
+ if !target. contains ( "windows" ) && target. contains ( "i686" ) {
817
+ base. push ( "-fPIC" . into ( ) ) ;
818
+ }
819
+
815
820
return base
816
821
}
817
822
You can’t perform that action at this time.
0 commit comments