qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] target/ppc: Only generate decodetree files when TCG is enabl


From: Daniel Henrique Barboza
Subject: Re: [PATCH] target/ppc: Only generate decodetree files when TCG is enabled
Date: Fri, 30 Jun 2023 13:45:13 -0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.12.0



On 6/26/23 11:01, Philippe Mathieu-Daudé wrote:
No need to generate TCG-specific decodetree files
when TCG is disabled.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---

Queued in gitlab.com/danielhb/qemu/tree/ppc-next. Thanks,


Daniel

  target/ppc/meson.build | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/ppc/meson.build b/target/ppc/meson.build
index a69f174f41..4c2635039e 100644
--- a/target/ppc/meson.build
+++ b/target/ppc/meson.build
@@ -28,7 +28,7 @@ gen = [
                       extra_args: ['--static-decode=decode_insn64',
                                    '--insnwidth=64']),
  ]
-ppc_ss.add(gen)
+ppc_ss.add(when: 'CONFIG_TCG', if_true: gen)
ppc_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'), if_false: files('kvm-stub.c'))
  ppc_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user_only_helper.c'))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]