Skip to content

Commit

Permalink
Workaround for developing with GCC 14 (#7480)
Browse files Browse the repository at this point in the history
  • Loading branch information
fantix authored and msullivan committed Jul 1, 2024
1 parent dc1ce48 commit f1746b4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@
SAFE_EXT_CFLAGS += ['-O2']

EXT_CFLAGS: list[str] = list(SAFE_EXT_CFLAGS)
# See also: https://github.com/cython/cython/issues/5240
EXT_CFLAGS += ['-Wno-error=incompatible-pointer-types']
EXT_LDFLAGS: list[str] = []

ROOT_PATH = pathlib.Path(__file__).parent.resolve()
Expand Down

0 comments on commit f1746b4

Please # to comment.