Commit 6581f1bc45 for qemu.org
commit 6581f1bc45998e6ddcadb8699419deb71055a772
Author: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>
Date: Fri Sep 18 20:27:04 2026 +0000
tests/tcg/meson.build: reintroduce build-tcg target
The refactoring introduced a new target named tcg-tests to build all
... tcg tests.
Previously, this target was named build-tcg. Keep both for compatiblity
sake if people were relying on it.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Link: https://lore.kernel.org/qemu-devel/20260918202704.9790-1-pierrick.bouvier@oss.qualcomm.com
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>
diff --git a/tests/tcg/meson.build b/tests/tcg/meson.build
index 75f0a52fd2..3151c5bd63 100644
--- a/tests/tcg/meson.build
+++ b/tests/tcg/meson.build
@@ -524,4 +524,6 @@ endforeach
if exe_targets.length() > 0
# finally create a top level target to rebuild all tests
alias_target('tcg-tests', exe_targets)
+ # before, this target was called build-tcg. Keep it for compatibility sake.
+ alias_target('build-tcg', exe_targets)
endif