secp256k1 extmod: compile with -Wextra and static analyzer enabled

This commit is contained in:
The MMGen Project 2026-08-18 14:21:25 +00:00
commit 05b297efca
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
2 changed files with 2 additions and 1 deletions

View file

@ -1 +1 @@
16.2.dev12
16.2.dev13

View file

@ -63,5 +63,6 @@ setup(
libraries = ['gmp', 'secp256k1', 'bcrypt'] if sys.platform == 'win32' else ['secp256k1'],
include_dirs = ['/usr/local/include'] if sys.platform == 'darwin' else [],
library_dirs = ['/usr/local/lib'] if sys.platform == 'darwin' else [],
extra_compile_args = ['-Wextra', '-fanalyzer'] if sys.platform == 'linux' else [],
)]
)