mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
0b499eb862
cffi uses a technique to find the offset of a struct that causes newer clangs to issue a warning regarding null pointer subtraction. This patch silences the warning, so cffi can build.
12 lines
511 B
Diff
12 lines
511 B
Diff
diff -r c649a735cf82 testing/support.py
|
|
--- a/testing/support.py Thu Feb 23 05:42:01 2023 +0100
|
|
+++ b/testing/support.py Sat May 20 21:46:56 2023 -0400
|
|
@@ -112,6 +112,7 @@
|
|
'-Wno-unreachable-code']
|
|
# special things for clang
|
|
extra_compile_args.append('-Qunused-arguments')
|
|
+ extra_compile_args.append('-Wno-null-pointer-subtraction')
|
|
else:
|
|
# assume a standard gcc
|
|
extra_compile_args = ['-Werror', '-Wall', '-Wextra', '-Wconversion',
|