diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2021-11-15 14:29:13 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2021-11-16 16:19:53 +0000 |
commit | a399f9143e801efbc574495c7df0eba3bd729e9f (patch) | |
tree | 3acdba64399b74770dbff8d2d0d14ae674b1d681 /accel | |
parent | ebd654aabc1a9128b2ea390faa23c2fb6b4b13b8 (diff) | |
download | qemu-a399f9143e801efbc574495c7df0eba3bd729e9f.zip qemu-a399f9143e801efbc574495c7df0eba3bd729e9f.tar.gz qemu-a399f9143e801efbc574495c7df0eba3bd729e9f.tar.bz2 |
meson: remove useless libdl test
dlopen is never used after it is sought via cc.find_library, because
plugins use gmodule instead; remove the test.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20211110092454.30916-1-pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20211115142915.3797652-5-alex.bennee@linaro.org>
Diffstat (limited to 'accel')
-rw-r--r-- | accel/tcg/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/tcg/meson.build b/accel/tcg/meson.build index 137a1a4..7a0a79d 100644 --- a/accel/tcg/meson.build +++ b/accel/tcg/meson.build @@ -10,7 +10,7 @@ tcg_ss.add(files( )) tcg_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user-exec.c')) tcg_ss.add(when: 'CONFIG_SOFTMMU', if_false: files('user-exec-stub.c')) -tcg_ss.add(when: 'CONFIG_PLUGIN', if_true: [files('plugin-gen.c'), libdl]) +tcg_ss.add(when: 'CONFIG_PLUGIN', if_true: [files('plugin-gen.c')]) specific_ss.add_all(when: 'CONFIG_TCG', if_true: tcg_ss) specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: files( |