Skip to content

Commit

Permalink
Fix build on GCC 14 (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
fantix committed Jul 23, 2024
1 parent 7141d3c commit 45cf86a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@

if SYSTEM != 'win32':
CFLAGS.extend(['-std=gnu99', '-fsigned-char', '-Wall',
'-Wsign-compare', '-Wconversion'])
'-Wsign-compare', '-Wconversion',
# See also: https://github.com/cython/cython/issues/5240
'-Wno-error=incompatible-pointer-types',
])

if SYSTEM == 'darwin':
# Lots of warnings from the standard library on macOS 10.14
Expand Down

0 comments on commit 45cf86a

Please sign in to comment.