Remove the unused define NOPREFIX

Nothing in the x86 assembly reacts to that define (nor anything
else within the code base).
This commit is contained in:
Martin Storsjö 2014-03-15 12:47:03 +02:00
parent c6c1691799
commit 00849100f8
4 changed files with 2 additions and 4 deletions

View File

@ -17,7 +17,7 @@ else ifeq ($(ARCH), x86)
APP_ABI = x86
TOOLCHAINPREFIX = $(shell NDK_PROJECT_PATH=./codec/build/android/dec make --no-print-dir -f $(NDKROOT)/build/core/build-local.mk DUMP_TOOLCHAIN_PREFIX APP_ABI=x86)
ifeq (Yes, $(USE_ASM))
ASMFLAGS += -DNOPREFIX -f elf32
ASMFLAGS += -f elf32
endif
else
APP_ABI = $(ARCH)

View File

@ -4,7 +4,7 @@ SHARED = -dynamiclib
CFLAGS += -Werror -fPIC -DMACOS -DMT_ENABLED -MMD -MP
LDFLAGS += -lpthread
ifeq ($(ASM_ARCH), x86)
ASMFLAGS += --prefix _ -DNOPREFIX
ASMFLAGS += --prefix _
ifeq ($(ENABLE64BIT), Yes)
ASMFLAGS += -f macho64
else

View File

@ -3,7 +3,6 @@ SHAREDLIBSUFFIX = so
CFLAGS += -fPIC -DMT_ENABLED
LDFLAGS += -lpthread
ifeq ($(ASM_ARCH), x86)
ASMFLAGS += -DNOPREFIX
ifeq ($(ENABLE64BIT), Yes)
ASMFLAGS += -f elf64
else

View File

@ -3,7 +3,6 @@ SHAREDLIBSUFFIX = so
CFLAGS += -Werror -fPIC -DLINUX -DMT_ENABLED -MMD -MP
LDFLAGS += -lpthread
ifeq ($(ASM_ARCH), x86)
ASMFLAGS += -DNOPREFIX
ifeq ($(ENABLE64BIT), Yes)
ASMFLAGS += -f elf64
else