projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5964247
)
meson: use -fno-strict-aliasing where supported
author
Tim-Philipp Müller
<tim@centricular.com>
Tue, 30 Jan 2018 20:35:21 +0000
(20:35 +0000)
committer
Tim-Philipp Müller
<tim@centricular.com>
Tue, 30 Jan 2018 20:35:24 +0000
(20:35 +0000)
https://bugzilla.gnome.org/show_bug.cgi?id=769183
meson.build
patch
|
blob
|
history
diff --git
a/meson.build
b/meson.build
index
9117a96
..
1e860a4
100644
(file)
--- a/
meson.build
+++ b/
meson.build
@@
-32,6
+32,11
@@
if cc.has_argument('-fvisibility=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('GETTEXT_PACKAGE', 'gst-rtsp-server-1.0')
cdata.set_quoted('PACKAGE', 'gst-rtsp-server')