1
0
Fork 0
mutter-performance-source/mtk/meson.build
Robert Mader 5ffeb34251 build: Enable no-omit-frame-pointer for all non-plain builds
This is useful for local installations with e.g. the `release`
buildtype.
Further more, Fedora has been doing the same system wide and it
apparently was helpful in various ways, see also

Also add -mno-omit-leaf-frame-pointer, like Fedora.

https://blogs.gnome.org/chergert/2023/10/03/what-have-frame-pointers-given-us-anyway/

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3333>
2024-01-09 16:26:57 +00:00

45 lines
783 B
Meson

mtk_includesubdir = pkgname / 'mtk'
mtk_includedir = includedir / mtk_includesubdir
mtk_includepath = include_directories('.', 'mtk')
mtk_includes = [
mtk_includepath,
top_includepath,
]
mtk_c_args = [
'-DMTK_SYSCONFDIR="@0@"'.format(prefix / sysconfdir),
'-DMTK_COMPILATION=1',
'-DG_LOG_DOMAIN="Mtk"',
]
mtk_debug_c_args = []
if buildtype != 'plain'
if not get_option('debug')
mtk_debug_c_args += [
'-DG_DISABLE_ASSERT',
'-DG_DISABLE_CAST_CHECKS',
]
endif
endif
mtk_debug_c_args = cc.get_supported_arguments(mtk_debug_c_args)
mtk_c_args += mtk_debug_c_args
mtk_pkg_deps = [
glib_dep,
gobject_dep,
gio_dep,
graphene_dep,
pixman_dep,
]
if have_x11
mtk_pkg_deps += x11_dep
endif
mtk_deps = [
mtk_pkg_deps,
m_dep
]
subdir('mtk')