diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2018-05-13 11:05:57 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2018-05-13 11:05:57 +0200 |
commit | 6535cc6a7674455fb481b9980ceca11a277f88ff (patch) | |
tree | 392ba61cb063ca9c8649a97ab6aeaf50f9ec21d0 /meson.build | |
parent | b2546873a50b12ae05ec7e9557bcfe0147ebfd78 (diff) | |
download | synthpod-6535cc6a7674455fb481b9980ceca11a277f88ff.tar.xz |
fix/silence string function compiler warnings.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index a656f849..7027024a 100644 --- a/meson.build +++ b/meson.build @@ -137,7 +137,8 @@ c_args = ['-fvisibility=hidden', '-ffast-math', '-Wno-attributes', '-Wno-unused-function', - '-Wno-unused-variable'] + '-Wno-unused-variable', + '-Wno-stringop-overflow'] if cc.has_argument('-ftree-vectorize') c_args += '-ftree-vectorize' |