mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 05:26:23 +00:00
meson: use -fno-strict-aliasing if supported
https://bugzilla.gnome.org/show_bug.cgi?id=769183
This commit is contained in:
parent
cd10f14726
commit
e1fdb5bf03
1 changed files with 5 additions and 0 deletions
|
@ -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')))
|
||||
|
|
Loading…
Reference in a new issue