1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/audio/py-soxr/files/patch-setup.py
Yuri Victorovich 65230ac413 audio/py-soxr: Fix build on arm64
Reported by:	fallout
2024-01-23 18:42:13 -08:00

15 lines
379 B
Python

- workaround for https://github.com/dofuuz/python-soxr/issues/25
--- setup.py.orig 2024-01-24 02:08:37 UTC
+++ setup.py
@@ -122,7 +122,8 @@ if '-arm' in platform:
platform = sysconfig.get_platform()
if '-arm' in platform:
- compile_args.append('-mfpu=neon')
+ #compile_args.append('-mfpu=neon')
+ pass
elif '-i686' in platform:
compile_args.append('-msse')