Skip to content

Commit 0a701dd

Browse files
committed
Auto merge of #195 - alexcrichton:32-darwin-empty, r=alexcrichton
Disable empty intrinsics on i686-apple-darwin These all currently just produce empty object files
2 parents 4d9df62 + 6b90a70 commit 0a701dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4112,7 +4112,7 @@ mod c {
41124112
]);
41134113
}
41144114

4115-
if target_os != "ios" {
4115+
if target_os != "ios" && (target_vendor != "apple" || target_arch != "x86") {
41164116
sources.extend(
41174117
&[
41184118
"absvti2.c",

0 commit comments

Comments
 (0)