summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorErik Faye-Lund <kusmabite@gmail.com>2017-10-23 20:54:03 +0200
committerErik Faye-Lund <kusmabite@gmail.com>2017-10-25 14:05:24 +0200
commit9e5a5a11ed93637fe28735e3dd161e59c4c3e5d0 (patch)
tree9c52d8b6ab8ca3deaf468d227a8f376ee28e012c /meson_options.txt
parentd37bcf3cc2bfea79a7130ab123e94f6b881a5b7e (diff)
meson: add opt-out of libunwind
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>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 1b90f5ced8..b44c93df00 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -143,6 +143,12 @@ option(
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',
value : false,