Claudio Fontana | 999b53e | 2014-02-05 17:27:28 +0000 | [diff] [blame] | 1 | |
Paolo Bonzini | 0008234 | 2013-01-19 11:06:47 +0100 | [diff] [blame] | 2 | common-obj-$(CONFIG_ALPHA_DIS) += alpha.o |
| 3 | common-obj-$(CONFIG_ARM_DIS) += arm.o |
Claudio Fontana | 999b53e | 2014-02-05 17:27:28 +0000 | [diff] [blame] | 4 | common-obj-$(CONFIG_ARM_A64_DIS) += arm-a64.o |
| 5 | common-obj-$(CONFIG_ARM_A64_DIS) += libvixl/ |
| 6 | libvixldir = $(SRC_PATH)/disas/libvixl |
Peter Maydell | 8acc216 | 2016-01-12 13:10:04 +0000 | [diff] [blame] | 7 | # The -Wno-sign-compare is needed only for gcc 4.6, which complains about |
| 8 | # some signed-unsigned equality comparisons in libvixl which later gcc |
| 9 | # versions do not. |
| 10 | arm-a64.o-cflags := -I$(libvixldir) -Wno-sign-compare |
Paolo Bonzini | 0008234 | 2013-01-19 11:06:47 +0100 | [diff] [blame] | 11 | common-obj-$(CONFIG_CRIS_DIS) += cris.o |
Paolo Bonzini | 0008234 | 2013-01-19 11:06:47 +0100 | [diff] [blame] | 12 | common-obj-$(CONFIG_I386_DIS) += i386.o |
| 13 | common-obj-$(CONFIG_IA64_DIS) += ia64.o |
| 14 | common-obj-$(CONFIG_M68K_DIS) += m68k.o |
| 15 | common-obj-$(CONFIG_MICROBLAZE_DIS) += microblaze.o |
| 16 | common-obj-$(CONFIG_MIPS_DIS) += mips.o |
Anthony Green | bd86a88 | 2013-03-18 15:49:23 -0400 | [diff] [blame] | 17 | common-obj-$(CONFIG_MOXIE_DIS) += moxie.o |
Paolo Bonzini | 0008234 | 2013-01-19 11:06:47 +0100 | [diff] [blame] | 18 | common-obj-$(CONFIG_PPC_DIS) += ppc.o |
| 19 | common-obj-$(CONFIG_S390_DIS) += s390.o |
| 20 | common-obj-$(CONFIG_SH4_DIS) += sh4.o |
| 21 | common-obj-$(CONFIG_SPARC_DIS) += sparc.o |
| 22 | common-obj-$(CONFIG_LM32_DIS) += lm32.o |
Paolo Bonzini | 76cad71 | 2012-10-24 11:12:21 +0200 | [diff] [blame] | 23 | |
Stefan Weil | 5034833 | 2013-01-01 18:43:56 +0100 | [diff] [blame] | 24 | # TODO: As long as the TCG interpreter and its generated code depend |
| 25 | # on the QEMU target, we cannot compile the disassembler here. |
Paolo Bonzini | 0008234 | 2013-01-19 11:06:47 +0100 | [diff] [blame] | 26 | #common-obj-$(CONFIG_TCI_DIS) += tci.o |