Disable empty intrinsics on i686-apple-darwin

These all currently just produce empty object files
master
Alex Crichton 2017-09-17 15:24:36 -07:00
parent 4d9df62fb7
commit 1be538be1e
1 changed files with 3 additions and 1 deletions

View File

@ -4112,7 +4112,9 @@ mod c {
]);
}
if target_os != "ios" {
// On iOS and 32-bit OSX these are all just empty intrinsics, no need to
// include them.
if target_os != "ios" && (target_vendor != "apple" || target_arch != "x86") {
sources.extend(
&[
"absvti2.c",