diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-06-27 12:25:00 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2025-07-02 10:09:48 +0100 |
commit | b8e6bfd6695331c24a6a8c49db1321ef24ddecaf (patch) | |
tree | 57bcedb87f1bd7818775badd8625e8e664aa05a5 | |
parent | 328c1a0b861e6c581880cf5831a0952ed92bcbf3 (diff) | |
download | qemu-b8e6bfd6695331c24a6a8c49db1321ef24ddecaf.zip qemu-b8e6bfd6695331c24a6a8c49db1321ef24ddecaf.tar.gz qemu-b8e6bfd6695331c24a6a8c49db1321ef24ddecaf.tar.bz2 |
semihosting/uaccess: Compile once
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20250526095213.14113-3-philmd@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-ID: <20250627112512.1880708-5-alex.bennee@linaro.org>
-rw-r--r-- | semihosting/meson.build | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/semihosting/meson.build b/semihosting/meson.build index f3d38dd..b1ab250 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', )) |