mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-10 09:21:44 -04:00
suppress compiler warning about CYTHON_FALLTHROUGH
This commit is contained in:
parent
4c45087698
commit
830c5c8fea
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -44,7 +44,7 @@ cpu_threads = multiprocessing.cpu_count() if multiprocessing and multiprocessing
|
|||
on_rtd = os.environ.get("READTHEDOCS")
|
||||
|
||||
# Extra cflags for all extensions, usually just warnings we want to enable explicitly
|
||||
cflags = ["-Wall", "-Wextra", "-Wpointer-arith"]
|
||||
cflags = ["-Wall", "-Wextra", "-Wpointer-arith", "-Wno-unreachable-code-fallthrough"]
|
||||
|
||||
compress_source = "src/borg/compress.pyx"
|
||||
crypto_ll_source = "src/borg/crypto/low_level.pyx"
|
||||
|
|
|
|||
Loading…
Reference in a new issue