aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2020-09-01 12:48:00 -0400
committerPaolo Bonzini <pbonzini@redhat.com>2020-09-08 07:17:09 +0200
commit3e0e519026841977c1c00b067af52faa0311133c (patch)
treef095734fb22ff806e878ceb414fb6da4f16b7500 /meson.build
parent40d9b74eafc9db5d19b92e32932ba915e6e2e664 (diff)
downloadqemu-3e0e519026841977c1c00b067af52faa0311133c.zip
qemu-3e0e519026841977c1c00b067af52faa0311133c.tar.gz
qemu-3e0e519026841977c1c00b067af52faa0311133c.tar.bz2
meson: remove b_lundef option
Meson automatically adds "-undefined dynamic_lookup" to shared_module build targets; b_lundef is only needed for executables. Therefore, we can remove this option. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index f010e2d..c0ba8cd 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project('qemu', ['c'], meson_version: '>=0.55.0',
default_options: ['warning_level=1', 'c_std=gnu99', 'cpp_std=gnu++11',
- 'b_lundef=false','b_colorout=auto'],
+ 'b_colorout=auto'],
version: run_command('head', meson.source_root() / 'VERSION').stdout().strip())
not_found = dependency('', required: false)