diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2013-09-03 20:12:07 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2013-09-10 19:11:28 +0100 |
commit | d14d42f19bf3dcef5c81ec2324843121f552a6fc (patch) | |
tree | e0a1cfeb24dfe19a2405baf15b07ec3857bfc832 /target-arm/Makefile.objs | |
parent | eaed129deaea393640cf6bff006cd5cec3b38d8f (diff) |
target-arm: Add new AArch64CPUInfo base class and subclasses
Create a new AArch64CPU class; all 64-bit capable ARM
CPUs are subclasses of this. (Currently we only support
one, the "any" CPU used by linux-user.)
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1378235544-22290-8-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'target-arm/Makefile.objs')
-rw-r--r-- | target-arm/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-arm/Makefile.objs b/target-arm/Makefile.objs index 2d9f77fa9b..baebc50f68 100644 --- a/target-arm/Makefile.objs +++ b/target-arm/Makefile.objs @@ -5,3 +5,4 @@ obj-$(CONFIG_NO_KVM) += kvm-stub.o obj-y += translate.o op_helper.o helper.o cpu.o obj-y += neon_helper.o iwmmxt_helper.o obj-y += gdbstub.o +obj-$(TARGET_AARCH64) += cpu64.o |