[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 04/11] accel: Make accel-blocker.o target agnostic
From: |
Anton Johansson |
Subject: |
Re: [PATCH 04/11] accel: Make accel-blocker.o target agnostic |
Date: |
Fri, 15 Sep 2023 16:14:09 +0200 |
On 14/09/23, Philippe Mathieu-Daudé wrote:
> accel-blocker.c is not target specific, move it to system_ss[].
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
> accel/meson.build | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/accel/meson.build b/accel/meson.build
> index 638a9a03ba..76f3cbc530 100644
> --- a/accel/meson.build
> +++ b/accel/meson.build
> @@ -1,5 +1,5 @@
> -specific_ss.add(files('accel-common.c', 'accel-blocker.c'))
> -system_ss.add(files('accel-softmmu.c'))
> +specific_ss.add(files('accel-common.c'))
> +system_ss.add(files('accel-softmmu.c', 'accel-blocker.c'))
> user_ss.add(files('accel-user.c'))
>
> subdir('tcg')
> --
> 2.41.0
>
Reviewed-by: Anton Johansson <anjo@rev.ng>
- [PATCH 00/11] accel/tcg: Make more files target agnostic (& exec/ housekeeping), Philippe Mathieu-Daudé, 2023/09/14
- [PATCH 01/11] exec: Make EXCP_FOO definitions target agnostic, Philippe Mathieu-Daudé, 2023/09/14
- [PATCH 02/11] exec: Move cpu_loop_foo() target agnostic functions to 'cpu-common.h', Philippe Mathieu-Daudé, 2023/09/14
- [PATCH 03/11] accel/tcg: Restrict dump_exec_info() declaration, Philippe Mathieu-Daudé, 2023/09/14
- [PATCH 04/11] accel: Make accel-blocker.o target agnostic, Philippe Mathieu-Daudé, 2023/09/14
- Re: [PATCH 04/11] accel: Make accel-blocker.o target agnostic,
Anton Johansson <=
- [PATCH 05/11] accel: Rename accel-common.c -> accel-target.c, Philippe Mathieu-Daudé, 2023/09/14
- [PATCH 06/11] exec: Rename cpu.c -> cpu-target.c, Philippe Mathieu-Daudé, 2023/09/14
- [PATCH 07/11] exec: Rename target specific page-vary.c -> page-vary-target.c, Philippe Mathieu-Daudé, 2023/09/14
- [PATCH 08/11] accel/tcg: Rename target-specific 'internal.h' -> 'internal-target.h', Philippe Mathieu-Daudé, 2023/09/14
- [PATCH 10/11] accel/tcg: Make icount.o a target agnostic unit, Philippe Mathieu-Daudé, 2023/09/14