summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9795358)
raw | patch | inline | side by side (parent: 9795358)
author | Jianzhong Xu <xuj@ti.com> | |
Mon, 12 Mar 2018 20:04:51 +0000 (16:04 -0400) | ||
committer | Frank Livingston <frank-livingston@ti.com> | |
Mon, 19 Mar 2018 17:38:08 +0000 (12:38 -0500) |
installer_builder/rtsc/Makefile | patch | blob | history | |
installer_builder/rtsc/readme.txt | patch | blob | history |
index fbd38733614f6391848656f492fded2ebc0c629f..9bcdeb54dfec0b6e83bfe0e823c26c625f961159 100644 (file)
##\r
\r
# Path to C6000 compiler tools\r
-ifeq ($(CGTROOT),)\r
-$(call error,ERROR - CGTROOT NOT DEFINED)\r
+ifeq ($(CG_TOOLS),)\r
+$(call error,ERROR - CG_TOOLS NOT DEFINED)\r
endif\r
\r
-ifeq ($(XDC_DIR),)\r
-$(call error,ERROR - XDC_DIR NOT DEFINED)\r
+ifeq ($(XDCROOT),)\r
+$(call error,ERROR - XDCROOT NOT DEFINED)\r
endif\r
\r
ifeq ($(PASDK_BASE_DIR),)\r
\r
XDCPATH = $(PDK_DIR)/packages;$(OMP_DIR)/packages;$(BIOS_DIR)/packages;$(IPC_DIR)/packages;$(XDAIS_DIR)/packages;$(EDMA3_DIR)/packages;\r
\r
-XDC=$(XDC_DIR)/xdc\r
-XS=$(XDC_DIR)/xs\r
-XDCPKG=$(XDC_DIR)/bin/xdcpkg\r
+XDC=$(XDCROOT)/xdc\r
+XS=$(XDCROOT)/xs\r
+XDCPKG=$(XDCROOT)/bin/xdcpkg\r
\r
COMPONENT_NAME = pasdk\r
-VERSION = 1_2_0_0\r
+VERSION = 1_3_0_0\r
\r
ifeq ($(TARGET),SOC_K2G)\r
target=k2g\r
all: package\r
\r
.lib:\r
+# to add compilation of the libraries\r
\r
.eclipse: .exports\r
@echo creating product plugin\r
package: .lib .docs .exports .eclipse\r
@echo "copying files ..."\r
@cp -R $(PASDK_BASE_DIR)/pasdk exports/$(PACKAGE_NAME)/packages/ti\r
- @cp -R $(PASDK_PAF_DIR) exports/$(PACKAGE_NAME)/packages/ti\r
@echo "archive files to tar ball ..."\r
@cd exports; zip -q -r $(PACKAGE_NAME).zip $(PACKAGE_NAME)\r
\r
index 10166fbc5c744186c8e04650a4c291208bc77f9d..a46f1aff157bf0de1a394375146f8c82fcbdfec0 100644 (file)
This folder contains makefile and other files needed to create a RTSC product for PASDK.
-Issue the following command from root folder of PASDK:
+1. setup the following environment variables (use right paths and versions):
+export CG_TOOLS=/home/a0869574local/ti/ti-cgt-c6000_8.2.2
+export BIOS_PCKGS="/home/a0869574local/ti/bios_6_52_00_12/packages"
+export XDCROOT="/home/a0869574local/ti/xdctools_3_50_03_33_core"
+export XDAIS_PCKGS="/home/a0869574local/ti/xdais_7_24_00_04/packages"
+export DSPLIB_PCKGS="/home/a0869574local/ti/dsplib_c66x_3_4_0_0/packages"
+export EDMA3LLD_PCKGS="/home/a0869574local/ti/edma3_lld_2_12_05_30B/packages"
+export IPC_PCKGS="/home/a0869574local/ti/ipc_3_47_01_00/packages"
+export PDK_PCKGS="/home/a0869574local/ti/pdk_k2g_1_0_9/packages"
+
+2. Issue the following command from root folder of PASDK:
make -f installer_builder/rtsc/Makefile TARGET=SOC_K2G