Skip to content

Commit 1bffff7

Browse files
authored
Disable FFTW3 on musllinux.
1 parent 8712428 commit 1bffff7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def ignore_files_matching(files, *matches):
122122

123123

124124
# Platform-specific FFT speedup flags:
125-
if platform.system() == "Windows":
125+
if platform.system() == "Windows" or "musllinux" in os.getenv("CIBW_BUILD", ""):
126126
ALL_CPPFLAGS.append("-DUSE_BUILTIN_FFT")
127127
ALL_CPPFLAGS.append("-DNO_THREADING")
128128
elif platform.system() == "Darwin":

0 commit comments

Comments
 (0)