qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] Re: [Qemu-commits] [COMMIT 5ba6531] user: compile ioport-us


From: Filip Navara
Subject: [Qemu-devel] Re: [Qemu-commits] [COMMIT 5ba6531] user: compile ioport-user.c only for x86
Date: Sat, 15 Aug 2009 11:50:56 +0200

On Sat, Aug 15, 2009 at 11:30 AM, Anthony Liguori<address@hidden> wrote:
> From: Blue Swirl <address@hidden>
>
> Signed-off-by: Blue Swirl <address@hidden>
>
> diff --git a/Makefile.target b/Makefile.target
> index 93c555b..74f869d 100644
> --- a/Makefile.target
> +++ b/Makefile.target
> @@ -87,13 +87,17 @@ 
> VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
>  QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user 
> -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
>
>  obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
> -      elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o \
> -      ioport-user.o
> +      elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o
> +
>  obj-$(TARGET_HAS_BFLT) += flatload.o
>  obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o
>
>  obj-$(TARGET_I386) += vm86.o
>
> +ifeq ($(TARGET_BASE_ARCH), i386)
> +obj-y += ioport-user.o
> +endif

Shouldn't this be just

obj-$(TARGET_I386) += ioport-user.o

?

> +
>  nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
>  nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
>  obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
> @@ -118,7 +122,11 @@ LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 
> 0x0e000000
>  LIBS+=-lmx
>
>  obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
> -        gdbstub.o gdbstub-xml.o ioport-user.o
> +        gdbstub.o gdbstub-xml.o
> +
> +ifeq ($(TARGET_BASE_ARCH), i386)
> +obj-y += ioport-user.o
> +endif

Same here...

>
>  ARLIBS=libqemu.a
>
> @@ -133,8 +141,11 @@ VPATH+=:$(SRC_PATH)/bsd-user
>  QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
>
>  obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
> -        gdbstub.o gdbstub-xml.o ioport-user.o
> -obj-y += uaccess.o
> +        gdbstub.o gdbstub-xml.o uaccess.o
> +
> +ifeq ($(TARGET_BASE_ARCH), i386)
> +obj-y += ioport-user.o
> +endif
>
>  ARLIBS=libqemu.a ../libqemu_user.a
>
>
>
>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]