From: Philippe Mathieu-Daudé Date: Fri, 27 Jun 2025 11:25:00 +0000 (+0100) Subject: semihosting/uaccess: Compile once X-Git-Tag: v10.1.0-rc0~36^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b8e6bfd6695331c24a6a8c49db1321ef24ddecaf;p=thirdparty%2Fqemu.git semihosting/uaccess: Compile once Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-ID: <20250526095213.14113-3-philmd@linaro.org> Signed-off-by: Alex Bennée Message-ID: <20250627112512.1880708-5-alex.bennee@linaro.org> --- diff --git a/semihosting/meson.build b/semihosting/meson.build index f3d38dda91d..b1ab2506c6e 100644 --- a/semihosting/meson.build +++ b/semihosting/meson.build @@ -3,15 +3,12 @@ specific_ss.add(when: 'CONFIG_SEMIHOSTING', if_true: files( 'syscalls.c', )) -specific_ss.add(when: ['CONFIG_SEMIHOSTING', 'CONFIG_SYSTEM_ONLY'], if_true: files( - 'uaccess.c', -)) - common_ss.add(when: 'CONFIG_SEMIHOSTING', if_false: files('stubs-all.c')) user_ss.add(when: 'CONFIG_SEMIHOSTING', if_true: files('user.c')) system_ss.add(when: 'CONFIG_SEMIHOSTING', if_true: files( 'config.c', 'console.c', + 'uaccess.c', ), if_false: files( 'stubs-system.c', ))