* commit '683e8e17f7c20b54da74c05b3a044f46d4b3bddf': emulator: Build emulator platform images as ARMv7-A
This commit is contained in:
commit
4f9479bfdb
1 changed files with 16 additions and 1 deletions
|
@ -6,7 +6,22 @@
|
|||
# The generic product target doesn't have any hardware-specific pieces.
|
||||
TARGET_NO_BOOTLOADER := true
|
||||
TARGET_NO_KERNEL := true
|
||||
TARGET_CPU_ABI := armeabi
|
||||
|
||||
# Note: we build the platform images for ARMv7-A _without_ NEON.
|
||||
#
|
||||
# Technically, the emulator supports ARMv7-A _and_ NEON instructions, but
|
||||
# emulated NEON code paths typically ends up 2x slower than the normal C code
|
||||
# it is supposed to replace (unlike on real devices where it is 2x to 3x
|
||||
# faster).
|
||||
#
|
||||
# What this means is that the platform image will not use NEON code paths
|
||||
# that are slower to emulate. On the other hand, it is possible to emulate
|
||||
# application code generated with the NDK that uses NEON in the emulator.
|
||||
#
|
||||
TARGET_ARCH_VARIANT := armv7-a
|
||||
TARGET_CPU_ABI := armeabi-v7a
|
||||
TARGET_CPU_ABI2 := armeabi
|
||||
|
||||
HAVE_HTC_AUDIO_DRIVER := true
|
||||
BOARD_USES_GENERIC_AUDIO := true
|
||||
|
||||
|
|
Loading…
Reference in a new issue