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

📄 pzsetup_1500.bat

📁 ZPAV (H265) pnxNNNN(PHILIPS) demo ZPAV (H265) 是 音视频 压缩解压 协议
💻 BAT
字号:

@echo off

if not defined BUILD_INC  set BUILD_INC="NO"

set _PZ_ROOT=C:/Nexperia_PZ/pz
set _PZ_ROOT1=C:\Nexperia_PZ\pz

copy %_PZ_ROOT1%\project\prjlist.txt %_PZ_ROOT1%\prjlist.txt


set _NXROOT=C:/Nexperia
set _TMROOT=%_NXROOT%/NDK5.8
set TCS=%_NXROOT%/TCS5.1


rem =============================================================================================
rem Add NDK executable paths to the DOS PATH:
    
set NDK_PATH=%_TMROOT%/sde/cygwin;%TCS%/bin;%_TMROOT%/tool/hosttarget/bin;%_TMROOT%/sde/scripts;

rem: not needed if you use MDS version
set JCON_PATH=%_TMROOT%/prod/mptk/comps/jtagStdio;

PATH=%MDS_TOOL_PATH%;%NDK_PATH%;%JCON_PATH%;%CYGWIN_PATH%;%PATH%;

rem =============================================================================================

rem -----------------------------------------------------------------------------------------
rem BUILD TYPE VARIABLES (sets the type of build, or the build "flavor"):

    set _TMTGTREL=retail

rem Choices:
rem     =retail
rem     =assert
rem     =trace
rem     =debug

rem -----------------------------------------------------------------------------------------
rem HOST TYPE VARIABLES:

    set _TMTCSHOST=WinNT

rem Choices:
rem     =nohost
rem     =WinNT

set _TMPROJECT=%_PZ_ROOT%
set _TMTGTBUILDROOT=%_TMPROJECT%/%_TMTGTREL%_%_TMTCSHOST%_pnx1500

rem -----------------------------------------------------------------------------------------
rem HOST TYPE VARIABLES:

    set _TMTGTCPUTYPE=tm3260

rem Choices:
rem    =tm3260 for PNX1500
rem    =tm5250 for PNX1700

rem -----------------------------------------------------------------------------------------
rem Diversity:
              
    set _TMDIVERSITY=_pnx1500_rpc_sp_td_

rem If you need to change the defaults, do something like this to have the exProductionBurn
rem makefile build the main app to be booted from flash:
rem set _MAINAPP_DIVERSITY=_bffsro_jcon_pnx1500_sp_
rem set _MAINAPP_DIVERSITY=_jcon_pnx1500_sp_

rem -----------------------------------------------------------------------------------------
rem Boards:
              
    set _TMTGTBOARDS=pzbslLcp 
    
rem -----------------------------------------------------------------------------------------
rem Other options:

    set JTAGCARD=mdsPci
    set _TMECHO=
	rem set _TMECHO=1
        rem:  Setting _TMECHO=1 gives a verbose output from the build for debugging
        rem:  We prefer this as the default so that customers sharing their build
        rem:   logs for debugging will have complete info.
        rem:  You can choose to set _TMECHO= to reduce the amount of information logged.
    set _TMDBG=
    rem set _TMDBG=1

rem -----------------------------------------------------------------------------------------
rem:  These will usually not need to be changed:

    set _TMBSL=_dvp1
    set _TMLINKTYPE=static
    set _TMSITE=svlbhs
    set _TMTGTCPUCLASS=tm
    set _TMTGTENDIAN=el
    set _TMTGTOS=psos250
    set _TMTGTOSCLASS=psos
    set  UNAME=cygwin
    set _TMDIVERSITYMKLOC=tool/hosttarget/mk
    set  MAKE=gmake

rem -----------------------------------------------------------------------------------------
rem Set the title of the command window to show handy info:

title %~n0: %1 (proj=%_TMPROJECT%) - %_TMDIVERSITY%  (%_TMTCSHOST%) (%_TMTGTREL%)


rem =============================================================================================
rem Location of the temp directories used by the SDE2 builds.  
rem

    set MY_TEMP_DIR=C:\Nexperia_PZ\tmp

    if not defined TEMP (
        echo TEMP var is not set.  Setting it to %MY_TEMP_DIR%
        set TEMP=%MY_TEMP_DIR%
    )  
     
    if not exist %TEMP%\nul (
        echo Directory '%TEMP%' does not exist.  Creating it now.
        mkdir %TEMP%
    )
    
    if not defined TMP      set TMP=%TEMP%
    if not defined TMPDIR   set TMPDIR=%TEMP%
    if not defined TMPTMP   set TMPTMP=%TEMP%


rem -----------------------------------------------------------------------------------------
rem Launch the SDE2 build:

if %BUILD_INC% == "YES" goto use_incremental_build

build_exeWin -gh %1 2>&1 | tee build_out.txt

if %BUILD_INC% == "NO" goto use_end

:use_incremental_build

gmake -C %1

:use_end

⌨️ 快捷键说明

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