From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from zen.linaroharston ([51.148.130.216]) by smtp.gmail.com with ESMTPSA id i14sm7046121wmq.1.2021.04.28.10.07.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 28 Apr 2021 10:07:39 -0700 (PDT) Received: from zen (localhost [127.0.0.1]) by zen.linaroharston (Postfix) with ESMTP id A8C9B1FF7E; Wed, 28 Apr 2021 18:07:38 +0100 (BST) References: <20210415163304.4120052-1-philmd@redhat.com> <20210415163304.4120052-13-philmd@redhat.com> <03eed9c3-0670-f262-a2fa-172639b8ad77@redhat.com> User-agent: mu4e 1.5.12; emacs 28.0.50 From: Alex =?utf-8?Q?Benn=C3=A9e?= To: Philippe =?utf-8?Q?Mathieu-Daud=C3=A9?= Cc: qemu-devel@nongnu.org, "Michael S. Tsirkin" , Claudio Fontana , Igor Mammedov , Eduardo Habkost , qemu-arm@nongnu.org, Paolo Bonzini , Marcel Apfelbaum , Markus Armbruster , =?utf-8?Q?Daniel_P_=2E_Berrang?= =?utf-8?Q?=C3=A9?= , Laurent Vivier , Andrew Jones , Richard Henderson , Juan Quintela , Thomas Huth , Peter Maydell , "Dr. David Alan Gilbert" , Eric Blake , "Emilio G . Cota" Subject: Re: [PATCH v4 12/12] tests/meson: Only build softfloat objects if TCG is selected Date: Wed, 28 Apr 2021 18:06:55 +0100 In-reply-to: <03eed9c3-0670-f262-a2fa-172639b8ad77@redhat.com> Message-ID: <874kfqs5gl.fsf@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-TUID: 5NxfuGROgLDe Philippe Mathieu-Daud=C3=A9 writes: > Alex, Richard, do you mind reviewing this one please? Isn't it already merged (with my r-b tag no less ;-) f77147cd4de8c726f89b2702f7a9d0c9711d8875 Author: Philippe Mathieu-Daud=C3=A9 AuthorDate: Fri Jan 22 21:44:31 2021 +0100 Commit: Paolo Bonzini CommitDate: Mon Feb 8 14:43:55 2021 +0100 > > On 4/15/21 6:33 PM, Philippe Mathieu-Daud=C3=A9 wrote: >> From: Philippe Mathieu-Daud=C3=A9 >>=20 >> The previous attempt (commit f77147cd4de) doesn't work as >> expected, as we still have CONFIG_TCG=3D1 when using: >>=20 >> configure --disable-system --disable-user >>=20 >> Now than we have removed the use of CONFIG_TCG from target-dependent >> files in tests/qtest/, we can remove the unconditional definition of >> CONFIG_TCG in config_host. >>=20 >> This avoid to build a bunch of unrequired objects when building with >> --disable-tcg (in particular the softfloat tests): >>=20 >> Before: >>=20 >> $ make >> [1/812] Generating trace-qom.h with a custom command >> ... >>=20 >> After: >>=20 >> $ make >> [1/349] Generating trace-qom.h with a custom command >> ... >>=20 >> A difference of 463 objects... >>=20 >> Reported-by: Claudio Fontana >> Suggested-by: Paolo Bonzini >> Signed-off-by: Philippe Mathieu-Daud=C3=A9 >> --- >> v3: Include Paolo's feedback: >> https://www.mail-archive.com/qemu-devel@nongnu.org/msg793872.html >> therefore o not include Alex's R-b tag. >>=20 >> Cc: Richard Henderson >> Cc: Alex Benn=C3=A9e >> Cc: Emilio G. Cota >> --- >> meson.build | 1 - >> 1 file changed, 1 deletion(-) >>=20 >> diff --git a/meson.build b/meson.build >> index c6f4b0cf5e8..623cbe50685 100644 >> --- a/meson.build >> +++ b/meson.build >> @@ -262,7 +262,6 @@ >> language: ['c', 'cpp', 'objc']) >>=20=20 >> accelerators +=3D 'CONFIG_TCG' >> - config_host +=3D { 'CONFIG_TCG': 'y' } >> endif >>=20=20 >> if 'CONFIG_KVM' not in accelerators and get_option('kvm').enabled() >>=20 --=20 Alex Benn=C3=A9e