diff options
author | Aleksandar Markovic | 2019-02-11 17:09:29 +0100 |
---|---|---|
committer | Aleksandar Markovic | 2019-02-14 17:47:28 +0100 |
commit | 0454728c2283097cfa3e4e26d459725fa2c67f10 (patch) | |
tree | 87eeb2f2c0497e705391fd4c2c0f39b95175ae1c /configure | |
parent | hw/mips_cpc: kick a VP when putting it into Run statewq (diff) | |
download | qemu-0454728c2283097cfa3e4e26d459725fa2c67f10.tar.gz qemu-0454728c2283097cfa3e4e26d459725fa2c67f10.tar.xz qemu-0454728c2283097cfa3e4e26d459725fa2c67f10.zip |
target/mips: introduce MTTCG-enabled builds
Introduce MTTCG-enabled QEMU builds for mips32, mipsn32, and mips64.
Signed-off-by: Miodrag Dinic <miodrag.dinic@imgtec.com>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Acked-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -7192,11 +7192,13 @@ case "$target_name" in target_compiler=$cross_cc_microblaze ;; mips|mipsel) + mttcg="yes" TARGET_ARCH=mips target_compiler=$cross_cc_mips echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak ;; mipsn32|mipsn32el) + mttcg="yes" TARGET_ARCH=mips64 TARGET_BASE_ARCH=mips target_compiler=$cross_cc_mipsn32 @@ -7204,6 +7206,7 @@ case "$target_name" in echo "TARGET_ABI32=y" >> $config_target_mak ;; mips64|mips64el) + mttcg="yes" TARGET_ARCH=mips64 TARGET_BASE_ARCH=mips target_compiler=$cross_cc_mips64 |