Skip to content
Snippets Groups Projects
Commit 38924bee authored by Yuri Victorovich's avatar Yuri Victorovich
Browse files

audio/py-soxr: Fix build by removing -Werror

Reported by:	fallout
parent d850e5df
No related branches found
No related tags found
No related merge requests found
- workaround for https://github.com/dofuuz/python-soxr/issues/25
--- setup.py.orig 2024-01-24 02:08:37 UTC
--- setup.py.orig 2024-07-25 13:58:38 UTC
+++ setup.py
@@ -122,7 +122,8 @@ if '-arm' in platform:
@@ -122,12 +122,13 @@ if '-arm' in platform:
platform = sysconfig.get_platform()
if '-arm' in platform:
......@@ -12,3 +12,9 @@
elif '-i686' in platform:
compile_args.append('-msse')
if get_default_compiler() in ['unix', 'mingw32']:
- compile_args += ['-std=gnu99', '-Werror=implicit']
+ compile_args += ['-std=gnu99']
extensions = [
CySoxrExtension(
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment