Hi~
i used "ti.xdais.wizards.genalg.sh" to generate my own xdais alg ,but when i include <ti/sdo/fc/acpy3/acpy3.h> header file , make was failed and show
fatal error: could not open source file "ti/sdo/fc/acpy3/acpy3.h"
seems acpy3 is support by framework_componemt, but my make file didnt invoke this ...
how could i fix this error? because i need use idma resource,
my package is DVRRDK_02.00.00.23
follow is my makefile , this is also generate by tool "ti.xdais.wizards.genalg.sh"
# your XDCTOOLS installation directory
XDC_INSTALL_DIR=/home/frank/my_workspace/Project/AVM2/AVS2704T/working/co-work/RDK2.0/ti_tools/xdc/xdctools_3_22_04_46
# your XDAIS installation directory
XDAIS_INSTALL_DIR=/home/frank/my_workspace/Project/AVM2/AVS2704T/working/co-work/RDK2.0/ti_tools/xdais/xdais_7_21_01_07
# Uncomment this for verbose builds
#XDCOPTIONS=v
CODEGEN_INSTALL_DIR=/home/frank/my_workspace/Project/AVM2/AVS2704T/working/co-work/RDK2.0/ti_tools/cgt_dsp/cgt6x_7_3_1
# If we're a subcomponent, allow larger product settings to override our
# defaults. The variable $(RULES_MAKE) can be overridden on the 'make'
# command-line if the location below is not correct (for example, if you
# want to use a Rules.make from some other location.
RULES_MAKE := $(CE_INSTALL_DIR)/../Rules.make
ifneq ($(wildcard $(RULES_MAKE)),)
include $(RULES_MAKE)
endif
CGTOOLS_C674=$(CODEGEN_INSTALL_DIR)
XDCARGS= CGTOOLS_C674=\"$(CGTOOLS_C674)\"
XDCPATH=$(XDAIS_INSTALL_DIR)/packages
all:
"$(XDC_INSTALL_DIR)/xdc" XDCOPTIONS=$(XDCOPTIONS) XDCARGS="$(XDCARGS)" --xdcpath="$(XDCPATH)" release
clean:
"$(XDC_INSTALL_DIR)/xdc" XDCOPTIONS=$(XDCOPTIONS) clean