mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
meson: tracers: signal availability of libunwind and backtrace() to code
Not setting cdata here on purpose because of .. complications.
This commit is contained in:
parent
c4aed66eff
commit
9791669ac3
2 changed files with 12 additions and 2 deletions
|
@ -249,7 +249,6 @@ if host_machine.system() == 'windows'
|
||||||
else
|
else
|
||||||
gio_dep = [dependency('gio-2.0'), dependency('gio-unix-2.0')]
|
gio_dep = [dependency('gio-2.0'), dependency('gio-unix-2.0')]
|
||||||
endif
|
endif
|
||||||
unwind_dep = dependency('libunwind', required : false)
|
|
||||||
|
|
||||||
mathlib = cc.find_library('m', required : false)
|
mathlib = cc.find_library('m', required : false)
|
||||||
rt_lib = cc.find_library('rt', required : false) # clock_gettime
|
rt_lib = cc.find_library('rt', required : false) # clock_gettime
|
||||||
|
|
|
@ -10,9 +10,20 @@ if have_getrusage
|
||||||
gst_tracers_sources += ['gstrusage.c']
|
gst_tracers_sources += ['gstrusage.c']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
tracers_args = gst_c_args + ['-DGST_USE_UNSTABLE_API']
|
||||||
|
|
||||||
|
unwind_dep = dependency('libunwind', required : false)
|
||||||
|
if unwind_dep.found()
|
||||||
|
tracers_args += ['-DHAVE_UNWIND']
|
||||||
|
endif
|
||||||
|
|
||||||
|
if cc.has_header('execinfo.h') and cc.has_function('backtrace', prefix : '#include <execinfo.h>')
|
||||||
|
tracers_args += ['-DHAVE_BACKTRACE']
|
||||||
|
endif
|
||||||
|
|
||||||
gst_tracers = library('gstcoretracers',
|
gst_tracers = library('gstcoretracers',
|
||||||
gst_tracers_sources,
|
gst_tracers_sources,
|
||||||
c_args : gst_c_args + ['-DGST_USE_UNSTABLE_API'],
|
c_args : tracers_args,
|
||||||
include_directories : [configinc],
|
include_directories : [configinc],
|
||||||
dependencies : [gst_dep, unwind_dep],
|
dependencies : [gst_dep, unwind_dep],
|
||||||
link_with : printf_lib,
|
link_with : printf_lib,
|
||||||
|
|
Loading…
Reference in a new issue