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.
25 lines
965 B
25 lines
965 B
# |
|
# Google CHRE Reference Implementation for Hexagon v62 Architecture on SLPI |
|
# |
|
|
|
include $(CHRE_PREFIX)/build/clean_build_template_args.mk |
|
|
|
TARGET_NAME = google_hexagonv62_slpi |
|
# 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 += $(GOOGLE_HEXAGONV62_SLPI_CFLAGS) |
|
TARGET_VARIANT_SRCS = $(GOOGLE_HEXAGONV62_SLPI_SRCS) |
|
TARGET_SO_LATE_LIBS = $(GOOGLE_HEXAGONV62_SLPI_LATE_LIBS) |
|
HEXAGON_ARCH = v62 |
|
|
|
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
|
|
|