summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-02-04 12:51:17 +0100
committerCarl Hetherington <cth@carlh.net>2024-02-04 12:51:17 +0100
commit32dcd32b2c87766a1248bb078826ce9b83efacc4 (patch)
treea989cbcc74782189e250d06912f94c1035436226
parent604a5f9343eebfa0108a19bb6b8ec60bc81f4819 (diff)
Suppress some warnings when building with Xcode 15.
-rw-r--r--wscript7
1 files changed, 7 insertions, 0 deletions
diff --git a/wscript b/wscript
index b0bc02270..8313a1f70 100644
--- a/wscript
+++ b/wscript
@@ -110,7 +110,14 @@ def configure(conf):
'-Wall',
'-Wextra',
'-Wwrite-strings',
+ # These next 5 are for Xcode 15.0.1 with the v2.16.x-era
+ # dependencies; maybe they aren't necessary when building
+ # v2.1{7,8}.x
'-Wno-error=deprecated',
+ '-Wno-deprecated-builtins',
+ '-Wno-deprecated-declarations',
+ '-Wno-enum-constexpr-conversion',
+ '-Wno-deprecated-copy',
# I tried and failed to ignore these with _Pragma
'-Wno-ignored-qualifiers',
'-D_FILE_OFFSET_BITS=64',