From bae9d2bdb32ee8cdc717537ae498eee03a25543b Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Fri, 24 Sep 2021 04:39:58 +0300 Subject: libcamera: base: Add Backtrace class Create a new class to abstract generation and access to call stack backtraces. The current implementation depends on the glibc backtrace() implementation and is copied from the logger. Future development will bring support for libunwind, transparently for the users of the class. The logger backtrace implementation is dropped, replaced by usage of the new Backtrace class. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- meson.build | 4 ---- 1 file changed, 4 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index a49c484f..dfed01ba 100644 --- a/meson.build +++ b/meson.build @@ -29,10 +29,6 @@ cc = meson.get_compiler('c') cxx = meson.get_compiler('cpp') config_h = configuration_data() -if cc.has_header_symbol('execinfo.h', 'backtrace') - config_h.set('HAVE_BACKTRACE', 1) -endif - if cc.has_header_symbol('unistd.h', 'issetugid') config_h.set('HAVE_ISSETUGID', 1) endif -- cgit v1.2.1