You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.4 KiB
38 lines
1.4 KiB
#
|
|
# Google CHRE Reference Implementation for Hexagon v65 Architecture on ADSP
|
|
#
|
|
|
|
include $(CHRE_PREFIX)/build/clean_build_template_args.mk
|
|
|
|
TARGET_NAME = google_hexagonv65_adsp-see
|
|
# Sized based on the buffer allocated in the host daemon (4096 bytes), minus
|
|
# FlatBuffer overhead (max 80 bytes), minus some extra space to make a nice
|
|
# round number and allow for addition of new fields to the FlatBuffer
|
|
TARGET_CFLAGS = -DCHRE_MESSAGE_TO_HOST_MAX_SIZE=4000
|
|
TARGET_CFLAGS += -DCHRE_THREAD_UTIL_ENABLED
|
|
TARGET_CFLAGS += $(GOOGLE_HEXAGONV65_ADSP-SEE_CFLAGS)
|
|
TARGET_CFLAGS += -DCHRE_FIRST_SUPPORTED_API_VERSION=CHRE_API_VERSION_1_2
|
|
TARGET_VARIANT_SRCS = $(GOOGLE_HEXAGONV65_ADSP-SEE_SRCS)
|
|
TARGET_SO_LATE_LIBS = $(GOOGLE_HEXAGONV65_ADSP-SEE_LATE_LIBS)
|
|
TARGET_PLATFORM_ID = 0x476f6f676c000006
|
|
HEXAGON_ARCH = v65
|
|
|
|
TARGET_CFLAGS += $(SLPI_CFLAGS)
|
|
TARGET_VARIANT_SRCS += $(SLPI_SRCS)
|
|
|
|
# Add SLPI/SEE-specific compiler flags and source files
|
|
TARGET_CFLAGS += $(SLPI_SEE_CFLAGS)
|
|
TARGET_CFLAGS += $(SLPI_SEE_QMI_CFLAGS)
|
|
TARGET_VARIANT_SRCS += $(SLPI_SEE_SRCS)
|
|
TARGET_VARIANT_SRCS += $(SLPI_SEE_QMI_SRCS)
|
|
|
|
ifneq ($(filter $(TARGET_NAME)% all, $(MAKECMDGOALS)),)
|
|
ifneq ($(IS_NANOAPP_BUILD),)
|
|
TARGET_SO_LATE_LIBS += $(CHRE_PREFIX)/build/app_support/google_slpi/libchre_slpi_skel.so
|
|
include $(CHRE_PREFIX)/build/nanoapp/google_slpi.mk
|
|
endif
|
|
|
|
include $(CHRE_PREFIX)/build/arch/hexagon.mk
|
|
include $(CHRE_PREFIX)/build/build_template.mk
|
|
endif
|