Fix the simulator build by setting TARGET_PRELINK_MODULE before including
BoardConfig.mk
This commit is contained in:
parent
8e2f2b9b20
commit
f4f85a277e
1 changed files with 6 additions and 4 deletions
|
@ -89,6 +89,12 @@ COMMON_ANDROID_PACKAGE_SUFFIX := .apk
|
|||
# list of flags to turn specific warnings in to errors
|
||||
TARGET_ERROR_FLAGS := -Werror=return-type
|
||||
|
||||
# TODO: do symbol compression
|
||||
TARGET_COMPRESS_MODULE_SYMBOLS := false
|
||||
|
||||
# Default is to prelink modules.
|
||||
TARGET_PRELINK_MODULE := true
|
||||
|
||||
# ###############################################################
|
||||
# Include sub-configuration files
|
||||
# ###############################################################
|
||||
|
@ -285,10 +291,6 @@ HOST_GLOBAL_CPPFLAGS += $(HOST_RELEASE_CPPFLAGS)
|
|||
TARGET_GLOBAL_CFLAGS += $(TARGET_RELEASE_CFLAGS)
|
||||
TARGET_GLOBAL_CPPFLAGS += $(TARGET_RELEASE_CPPFLAGS)
|
||||
|
||||
# TODO: do symbol compression
|
||||
TARGET_COMPRESS_MODULE_SYMBOLS := false
|
||||
TARGET_PRELINK_MODULE := true
|
||||
|
||||
PREBUILT_IS_PRESENT := $(if $(wildcard prebuilt/Android.mk),true)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue