diff options
author | Juan Quintela <quintela@redhat.com> | 2009-07-22 22:37:38 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-27 14:10:55 -0500 |
commit | 4318e1a6900b0e5fe84e3eba51839fe53ea99ff9 (patch) | |
tree | cd0d6735549e21436df8da6aab4afe1a72549d5a /Makefile.target | |
parent | 161294d88650e5ee3612b7d2a85d23d28a70a4c6 (diff) |
our build system don't support mips little endian linux-user or bsd-user
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Makefile.target b/Makefile.target index dbb2263fa6..b7eabff961 100644 --- a/Makefile.target +++ b/Makefile.target @@ -228,19 +228,11 @@ LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld endif ifeq ($(ARCH),mips) -ifeq ($(HOST_WORDS_BIGENDIAN),y) LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -else -LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld -endif endif ifeq ($(ARCH),mips64) -ifeq ($(HOST_WORDS_BIGENDIAN),y) LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -else -LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld -endif endif # profiling code @@ -371,19 +363,11 @@ LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld endif ifeq ($(ARCH),mips) -ifeq ($(HOST_WORDS_BIGENDIAN),y) LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -else -LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld -endif endif ifeq ($(ARCH),mips64) -ifeq ($(HOST_WORDS_BIGENDIAN),y) LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -else -LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld -endif endif obj-y = main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \ |