From d21c23b46e0536753bdaa78d02250e0c0a9028eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20B=C3=A1lint=20Misius?= Date: Sat, 13 Jan 2024 22:44:55 +0100 Subject: [PATCH] Don't export everything for nice stack traces in release builds Because this blows up the size of the executable. This was meant to be done only with debug builds anyway. The release stack traces are all sorts of wonky anyway, no need to complicate them further. --- src/common/platform/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/platform/meson.build b/src/common/platform/meson.build index 230c078a1..5dc9d1787 100644 --- a/src/common/platform/meson.build +++ b/src/common/platform/meson.build @@ -84,7 +84,7 @@ subdir('stacktrace') if use_bluescreen common_files += stacktrace_files - if bluescreen_export_symbols + if bluescreen_export_symbols and is_debug project_export_dynamic = true endif else