aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-02 23:13:56 +0200
committerDavid Robillard <d@drobilla.net>2020-07-02 23:13:56 +0200
commit4dca797221b66c707e572427e2c4448e322b03f2 (patch)
tree53e6f2f5a71f728ab04a31601ae9fef57f5cab77
parentdaa0f2724d56a4cfc787d33c78cce48f844de587 (diff)
downloadpugl-4dca797221b66c707e572427e2c4448e322b03f2.tar.gz
pugl-4dca797221b66c707e572427e2c4448e322b03f2.tar.bz2
pugl-4dca797221b66c707e572427e2c4448e322b03f2.zip
Mac: Disable Wno-direct-ivar-access
This should probably be fixed as well, but that seems like quite a boilerplate project, so just disable it for now.
-rw-r--r--wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/wscript b/wscript
index f3b0361..0c1f5a4 100644
--- a/wscript
+++ b/wscript
@@ -100,7 +100,8 @@ def configure(conf):
if conf.env.TARGET_PLATFORM == 'darwin':
append_cflags(['-DGL_SILENCE_DEPRECATION',
- '-Wno-deprecated-declarations'])
+ '-Wno-deprecated-declarations',
+ '-Wno-direct-ivar-access'])
conf.check_cc(lib='m', uselib_store='M', mandatory=False)
conf.check_cc(lib='dl', uselib_store='DL', mandatory=False)