Skip to content

Commit 6b90a70

Browse files
committed
Disable empty intrinsics on i686-apple-darwin
These all currently just produce empty object files
1 parent 4d9df62 commit 6b90a70

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)