Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Prev Previous commit
[mypyc] librt base64: explicitly skip x86-64 CPU features on macos
Matches previous behavior
  • Loading branch information
mr-c committed Nov 27, 2025
commit 2cf7bffe21e3f2b25eabfe8787c2598a77586db7
2 changes: 1 addition & 1 deletion mypyc/lib-rt/base64/config.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef BASE64_CONFIG_H
#define BASE64_CONFIG_H

#if defined(__SSE__) && ((defined(__x86_64__) && defined(__LP64__)) || defined(_M_X64))
#if !defined(__APPLE__) && ((defined(__x86_64__) && defined(__LP64__)) || defined(_M_X64))
#define HAVE_SSSE3 1
#define HAVE_SSE41 1
#define HAVE_SSE42 1
Expand Down