meson: add opt-out of libunwind
authorErik Faye-Lund <kusmabite@gmail.com>
Mon, 23 Oct 2017 18:54:03 +0000 (20:54 +0200)
committerErik Faye-Lund <kusmabite@gmail.com>
Wed, 25 Oct 2017 12:05:24 +0000 (14:05 +0200)
Libunwind has some issues on some platforms, so let's allow people
who have issues to opt-out. This is similar to what we do in automake,
and the implementation is modelled after our opt-out for valgrind.

Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
meson.build
meson_options.txt

index 8db4699ec5c0fbdc9ae9dd7acd632c6ce121b23f..4d4f164087439883eb2865c0f6f8c63fe6199e30 100644 (file)
@@ -37,6 +37,7 @@ pre_args = [
 with_vulkan_icd_dir = get_option('vulkan-icd-dir')
 with_tests = get_option('build-tests')
 with_valgrind = get_option('valgrind')
+with_libunwind = get_option('libunwind')
 with_asm = get_option('asm')
 with_llvm = get_option('llvm')
 if get_option('texture-float')
@@ -687,7 +688,7 @@ dep_selinux = []
 # TODO: llvm-prefix and llvm-shared-libs
 
 dep_unwind = dependency('libunwind', required : false)
-if dep_unwind.found()
+if dep_unwind.found() and with_libunwind
   pre_args += '-DHAVE_LIBUNWIND'
 endif
 
index 1b90f5ced889f0b6df72e21451c516dc71cf82a5..b44c93df0015f828d9e10ff6488b4f0334040dcc 100644 (file)
@@ -142,6 +142,12 @@ option(
   value : true,
   description : 'Build with valgrind support if possible'
 )
+option(
+  'libunwind',
+  type : 'boolean',
+  value : true,
+  description : 'Use libunwind for stack-traces if possible'
+)
 option(
   'build-tests',
   type : 'boolean',