meson: use -fno-strict-aliasing if supported
authorTim-Philipp Müller <tim@centricular.com>
Tue, 30 Jan 2018 20:30:47 +0000 (20:30 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Tue, 30 Jan 2018 20:30:54 +0000 (20:30 +0000)
https://bugzilla.gnome.org/show_bug.cgi?id=769183

meson.build

index 387e46f..642b60c 100644 (file)
@@ -54,6 +54,11 @@ if have_visibility_hidden
   add_project_arguments('-fvisibility=hidden', language: 'c')
 endif
 
+# Disable strict aliasing
+if cc.has_argument('-fno-strict-aliasing')
+  add_project_arguments('-fno-strict-aliasing', language: 'c')
+endif
+
 cdata = configuration_data()
 cdata.set_quoted('GST_API_VERSION', apiversion)
 cdata.set_quoted('GST_DATADIR', join_paths(prefix, get_option('datadir')))