android_build/target/board/sim/BoardConfig.mk
Andy McFadden 5f2b36f854 Atomic/SMP update.
Added "TARGET_CPU_SMP := true" to simulator configuration, since it's
likely the simulator will be running on SMP hardware.

Change-Id: I7527895abe70ffaece5c52fd3ffcfe4b0d698fd2
2010-06-01 08:37:16 -07:00

32 lines
804 B
Makefile

# config.mk
#
# Product-specific compile-time definitions.
#
# Don't try prelinking or compressing the shared libraries
# used by the simulator. The host OS won't know what to do
# with them, and they may not even be ELF files.
#
# These definitions override the defaults in config/config.make.
TARGET_COMPRESS_MODULE_SYMBOLS := false
TARGET_PRELINK_MODULE := false
# Don't try to build a bootloader.
TARGET_NO_BOOTLOADER := true
# Don't bother with a kernel
TARGET_NO_KERNEL := true
# The simulator does not support native code at all
TARGET_CPU_ABI := none
# But it is very likely SMP.
TARGET_CPU_SMP := true
#the simulator partially emulates the original HTC /dev/eac audio interface
HAVE_HTC_AUDIO_DRIVER := true
BOARD_USES_GENERIC_AUDIO := true
# no hardware camera
USE_CAMERA_STUB := true