diff options
author | Jan Kiszka <jan.kiszka@web.de> | 2009-05-08 09:01:00 +0200 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-05-08 13:24:12 +0100 |
commit | 322f9d0153cd0a05dfba6e02927fe10e3549e461 (patch) | |
tree | e8c6f8186ab2c9f47eaf6129ff1a35387ec360c9 /Makefile.target | |
parent | c599710f5ce5f521cc6f036af2063611527dde3d (diff) | |
download | qemu-322f9d0153cd0a05dfba6e02927fe10e3549e461.tar.gz qemu-322f9d0153cd0a05dfba6e02927fe10e3549e461.tar.bz2 qemu-322f9d0153cd0a05dfba6e02927fe10e3549e461.zip |
Drop CONFIG_GDBSTUB
This is no user-flippable switch, and no arch makes use of disabling
gdbstub support. So it's pointless to keep the related #ifdefs and
configure hunks around - and risking breakages like 711c410fdd again.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 26 |
1 files changed, 7 insertions, 19 deletions
diff --git a/Makefile.target b/Makefile.target index f73510524c..fe83837cd3 100644 --- a/Makefile.target +++ b/Makefile.target @@ -317,7 +317,7 @@ CFLAGS+=-p endif OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \ - elfload.o linuxload.o uaccess.o envlist.o + elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o LIBS+= $(PTHREADLIBS) LIBS+= $(CLOCKLIBS) ifdef TARGET_HAS_BFLT @@ -340,10 +340,6 @@ ifeq ($(TARGET_ARCH), m68k) OBJS+= m68k-sim.o m68k-semi.o endif -ifdef CONFIG_GDBSTUB -OBJS+=gdbstub.o gdbstub-xml.o -endif - OBJS+= libqemu.a # Note: this is a workaround. The real fix is to avoid compiling @@ -373,14 +369,11 @@ LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000 LIBS+=-lmx -OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o +OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \ + gdbstub.o gdbstub-xml.o OBJS+= libqemu.a -ifdef CONFIG_GDBSTUB -OBJS+=gdbstub.o gdbstub-xml.o -endif - # Note: this is a workaround. The real fix is to avoid compiling # cpu_signal_handler() in cpu-exec.c. signal.o: CFLAGS += $(HELPER_CFLAGS) @@ -476,15 +469,12 @@ LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld endif endif -OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o +OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \ + gdbstub.o gdbstub-xml.o OBJS+= uaccess.o OBJS+= libqemu.a -ifdef CONFIG_GDBSTUB -OBJS+=gdbstub.o -endif - # Note: this is a workaround. The real fix is to avoid compiling # cpu_signal_handler() in cpu-exec.c. signal.o: CFLAGS += $(HELPER_CFLAGS) @@ -498,7 +488,8 @@ endif #CONFIG_BSD_USER # System emulator target ifndef CONFIG_USER_ONLY -OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o +OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o \ + gdbstub.o gdbstub-xml.o # virtio has to be here due to weird dependency between PCI and virtio-net. # need to fix this properly OBJS+=virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o @@ -686,9 +677,6 @@ ifeq ($(TARGET_BASE_ARCH), m68k) OBJS+= an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o OBJS+= m68k-semi.o dummy_m68k.o endif -ifdef CONFIG_GDBSTUB -OBJS+=gdbstub.o gdbstub-xml.o -endif ifdef CONFIG_COCOA COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit ifdef CONFIG_COREAUDIO |