From: Paolo Bonzini Date: Tue, 1 Sep 2020 16:48:00 +0000 (-0400) Subject: meson: remove b_lundef option X-Git-Tag: v5.2.0-rc0~129^2~39 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3e0e519026841977c1c00b067af52faa0311133c;p=thirdparty%2Fqemu.git 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 --- diff --git a/meson.build b/meson.build index f010e2da17a..c0ba8cd6031 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)