Skip to content

Commit 2cf7bff

Browse files
committed
[mypyc] librt base64: explicitly skip x86-64 CPU features on macos
Matches previous behavior
1 parent cb0c4ed commit 2cf7bff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/lib-rt/base64/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef BASE64_CONFIG_H
22
#define BASE64_CONFIG_H
33

4-
#if defined(__SSE__) && ((defined(__x86_64__) && defined(__LP64__)) || defined(_M_X64))
4+
#if !defined(__APPLE__) && ((defined(__x86_64__) && defined(__LP64__)) || defined(_M_X64))
55
#define HAVE_SSSE3 1
66
#define HAVE_SSE41 1
77
#define HAVE_SSE42 1

0 commit comments

Comments
 (0)