mirror of https://github.com/xqemu/xqemu.git
Move ia64 QEMU_CFLAGS target to configure
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Message-Id:
This commit is contained in:
parent
6ee7126f7c
commit
c60d0afa65
|
@ -23,10 +23,6 @@ ifeq ($(subst ppc64,ppc,$(ARCH))$(TARGET_BASE_ARCH),ppcppc)
|
||||||
translate.o: QEMU_CFLAGS := $(QEMU_CFLAGS) $(call cc-option, $(QEMU_CFLAGS), -fno-unit-at-a-time,)
|
translate.o: QEMU_CFLAGS := $(QEMU_CFLAGS) $(call cc-option, $(QEMU_CFLAGS), -fno-unit-at-a-time,)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(ARCH),ia64)
|
|
||||||
QEMU_CFLAGS+=-mno-sdata
|
|
||||||
endif
|
|
||||||
|
|
||||||
LIBS+=-lm
|
LIBS+=-lm
|
||||||
ifdef CONFIG_SOLARIS
|
ifdef CONFIG_SOLARIS
|
||||||
ifdef CONFIG_NEEDS_LIBSUNMATH
|
ifdef CONFIG_NEEDS_LIBSUNMATH
|
||||||
|
|
|
@ -2078,6 +2078,9 @@ alpha)
|
||||||
# Ensure there's only a single GP
|
# Ensure there's only a single GP
|
||||||
cflags="-msmall-data $cflags"
|
cflags="-msmall-data $cflags"
|
||||||
;;
|
;;
|
||||||
|
ia64)
|
||||||
|
cflags="-mno-sdata $cflags"
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
|
linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
|
||||||
|
|
Loading…
Reference in New Issue