⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xdcpaths.mak

📁 视频解码程序
💻 MAK
字号:
##  Copyright 2006 by Texas Instruments Incorporated.#  #  All rights reserved. Property of Texas Instruments Incorporated.#  Restricted rights to use, duplicate or disclose this code are#  granted through contract.#  ###  ======== xdcpaths.mak ========#  definition of XDC paths and commands## You must set these variables to match your environment.  Note that# BIOS_INSTALL_DIR is only required to build DSP-side servers# (for multi-core devices) or DSP-side executables (for single core devices).CE_INSTALL_DIR = /home/zhe/dvevm_1_10/codec_engine_1_02XDC_INSTALL_DIR = /home/zhe/dvevm_1_10/xdctools_1_21BIOS_INSTALL_DIR = /home/zhe/dvevm_1_10/bios_5_30LINUXKERNEL_INSTALL_DIR=/home/zhe/workdir/lsp/ti-davinci/includeTI_CODEC_DIR=/home/zhe/dvevm_1_10/codec_servers_1_00/packages# If you're not building DSP-side content, you should set REQUIRE_BIOS to 0.REQUIRE_BIOS = 1ifeq ($(REQUIRE_BIOS), 1)# BIOS_INSTALL_DIR is the location of your DSP/BIOS installation.ifeq ($(wildcard $(BIOS_INSTALL_DIR)/packages/ti/bios/package.xdc),)$(error BIOS_INSTALL_DIR is set to "$(BIOS_INSTALL_DIR)", which is invalid.  Set this in <codec engine examples>/xdcpaths.mak! See the build documentation to correct this error.)endifendif# CE_INSTALL_DIR is the location of your Codec Engine.ifeq ($(wildcard $(CE_INSTALL_DIR)/packages/ti/sdo/ce/package.xdc),)$(error CE_INSTALL_DIR is set to "$(CE_INSTALL_DIR)", which is invalid.  Set this in <codec engine examples>/xdcpaths.mak! See the build documentation to correct this error.)endif# XDC_INSTALL_DIR is the location of your XDCTOOLS installation.ifeq ($(wildcard $(XDC_INSTALL_DIR)/packages/xdc/package.xdc),)$(error XDC_INSTALL_DIR is set to "$(XDC_INSTALL_DIR)", which is invalid.  Set this in <codec engine examples>/xdcpaths.mak! See the build documentation to correct this error.)endif# The Codec Engine depends on other packages.  Add the paths to those# other packages here.## Note that some distributions of the Codec Engine include a directory named# "cetools" which contains these packages.  If this script detects# the existence of that directory, it addes the cetools directory only.ifeq ($(wildcard $(CE_INSTALL_DIR)/cetools), )# no cetools directoryXDAIS_INSTALL_DIR     = /home/zhe/dvevm_1_10/xdais_5_00DSPLINK_INSTALL_DIR = /home/zhe/dvevm_1_10/dsplink_1_30_08_02CMEM_INSTALL_DIR    = /home/zhe/dvevm_1_10/cmem_1_01FC_INSTALL_DIR      = /home/zhe/dvevm_1_10/framework_components_1_00_03# more validation, just to be sure...ifeq ($(wildcard $(XDAIS_INSTALL_DIR)/packages/ti/xdais/package.xdc),)$(error XDAIS_INSTALL_DIR is set to "$(XDAIS_INSTALL_DIR)", which is invalid.  Set this in <codec engine examples>/xdcpaths.mak! See the build documentation to correct this error.)endififeq ($(wildcard $(DSPLINK_INSTALL_DIR)/packages/dsplink/gpp/package.xdc),)$(error DSPLINK_INSTALL_DIR is set to "$(DSPLINK_INSTALL_DIR)", which is invalid.  Set this in <codec engine examples>/xdcpaths.mak! See the build documentation to correct this error.)endififeq ($(wildcard $(CMEM_INSTALL_DIR)/packages/ti/sdo/linuxutils/cmem/package.xdc),)$(error CMEM_INSTALL_DIR is set to "$(CMEM_INSTALL_DIR)", which is invalid.  Set this in <codec engine examples>/xdcpaths.mak! See the build documentation to correct this error.)endififeq ($(wildcard $(FC_INSTALL_DIR)/packages/ti/sdo/fc/dskt2/package.xdc),)$(error FC_INSTALL_DIR is set to "$(FC_INSTALL_DIR)", which is invalid.  Set this in <codec engine examples>/xdcpaths.mak! See the build documentation to correct this error.)endifMISC_PACKAGES = $(XDAIS_INSTALL_DIR)/packages;$(DSPLINK_INSTALL_DIR)/packages;$(CMEM_INSTALL_DIR)/packages/;$(FC_INSTALL_DIR)/packageselseMISC_PACKAGES = $(CE_INSTALL_DIR)/cetools/packagesendif# XDC_PATH is a semi-colon seperated list of package repositories.  To# build this example, it needs to include:#  * Codec Engine examples repository#  * Codec Engine repository ($(CE_INSTALL_DIR)/packages)#  * Codec Engine tools repository ($(CE_INSTALL_DIR)/cetools/packages)#  * BIOS repository ($(BIOS_INSTALL_DIR)/packages), if BIOS_INSTALL_DIR is setXDC_PATH := $(CE_INSTALL_DIR)/packages;$(MISC_PACKAGES);$(LINUXKERNEL_INSTALL_DIR);$(TI_CODEC_DIR)ifeq ($(REQUIRE_BIOS), 1)    # if BIOS_INSTALL_DIR is set, add it to the XDC_PATH    XDC_PATH := $(XDC_PATH);$(BIOS_INSTALL_DIR)/packagesendif##  @(#) codec_engine_1_02 1,0,0,147 7-14-2006 ce-d14#

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -