diff --git a/setup.py b/setup.py index d84ddfa..3aa5bf0 100644 --- a/setup.py +++ b/setup.py @@ -22,16 +22,16 @@ def find_library(name, dirs=None, static=False): # # IMPORTANT: The following does not work at this time (Jan. 2024) for macOS on # Apple Silicon. + print(f'{out = }') print(os.name, sys.platform) print(sys.platform, platform.machine()) if (os.name, sys.platform) != ("posix", "linux"): - if (sys.platform, platform.machine()) == ("darwin", "arm64"): - pass - else: - out.append(ctypes_find_library(name)) + out.append(ctypes_find_library(name)) + #if (sys.platform, platform.machine()) == ("darwin", "arm64"): + # pass + #else: + # out.append(ctypes_find_library(name)) - stuff = out.append(ctypes_find_library(name)) - print(f'{stuff = }') print(f'{out = }') # For Linux and macOS (Apple Silicon), we have to search ourselves.