diff options
author | Alexander Graf | 2013-09-03 21:12:22 +0200 |
---|---|---|
committer | Peter Maydell | 2013-09-10 20:11:29 +0200 |
commit | 6a49fa95c98cd155f7aaf48e5c6fa6bb6adea862 (patch) | |
tree | 4b8bd42ebc711f3e6bdbcc2f0c0b56f32f21a286 /configure | |
parent | linux-user: Add AArch64 support (diff) | |
download | qemu-6a49fa95c98cd155f7aaf48e5c6fa6bb6adea862.tar.gz qemu-6a49fa95c98cd155f7aaf48e5c6fa6bb6adea862.tar.xz qemu-6a49fa95c98cd155f7aaf48e5c6fa6bb6adea862.zip |
configure: Add handling code for AArch64 targets
Add the necessary code to configure to handle AArch64 as a target
CPU (we already have some code for supporting it as host). Note
that this doesn't enable the AArch64 targets yet.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: John Rigby <john.rigby@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1378235544-22290-23-git-send-email-peter.maydell@linaro.org
Message-id: 1368505980-17151-12-git-send-email-john.rigby@linaro.org
[PMM:
* don't need to set TARGET_ABI_DIR to aarch64 as that is the default
* don't build nwfpe -- this is 32 bit legacy only
* rewrite commit message
* add aarch64 to the list of "fdt required" targets
]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2522,7 +2522,7 @@ fi fdt_required=no for target in $target_list; do case $target in - arm*-softmmu|ppc*-softmmu|microblaze*-softmmu) + aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu) fdt_required=yes ;; esac @@ -4272,6 +4272,11 @@ case "$target_name" in bflt="yes" gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" ;; + aarch64) + TARGET_BASE_ARCH=arm + bflt="yes" + gdb_xml_files="aarch64-core.xml" + ;; cris) ;; lm32) |