Merge change 2631
* changes: Added support for TARGET_ARCH_VERSION=armv5te-vfp.
This commit is contained in:
commit
fe626b775f
|
@ -39,6 +39,17 @@ ARCH_ARM_HAVE_HALFWORD_MULTIPLY := true
|
|||
ARCH_ARM_HAVE_CLZ := true
|
||||
ARCH_ARM_HAVE_FFS := true
|
||||
|
||||
arch_version_cflags := -march=armv5te -mtune=xscale -D__ARM_ARCH_5__ \
|
||||
-D__ARM_ARCH_5T__ -D__ARM_ARCH_5TE__
|
||||
else
|
||||
ifeq ($(TARGET_ARCH_VERSION),armv5te-vfp)
|
||||
ARCH_ARM_HAVE_THUMB_SUPPORT := true
|
||||
ARCH_ARM_HAVE_FAST_INTERWORKING := true
|
||||
ARCH_ARM_HAVE_64BIT_DATA := true
|
||||
ARCH_ARM_HAVE_HALFWORD_MULTIPLY := true
|
||||
ARCH_ARM_HAVE_CLZ := true
|
||||
ARCH_ARM_HAVE_FFS := true
|
||||
|
||||
arch_version_cflags := -march=armv5te -mtune=xscale -D__ARM_ARCH_5__ \
|
||||
-D__ARM_ARCH_5T__ -D__ARM_ARCH_5TE__
|
||||
else
|
||||
|
@ -58,6 +69,7 @@ else
|
|||
$(error Unknown ARM architecture version: $(TARGET_ARCH_VERSION))
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
# You can set TARGET_TOOLS_PREFIX to get gcc from somewhere else
|
||||
ifeq ($(strip $($(combo_target)TOOLS_PREFIX)),)
|
||||
|
|
Loading…
Reference in New Issue