Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line | 
|---|---|---|---|
| 351 | f9daq | 1 | @set INCLUDE=  | 
        
| 2 | @set LIB=  | 
        ||
| 3 | @set FileNum=%1  | 
        ||
| 4 | @shift  | 
        ||
| 5 | @set SrcFileName=%1  | 
        ||
| 6 | @shift  | 
        ||
| 7 | @set ObjFileName=%1  | 
        ||
| 8 | @shift  | 
        ||
| 9 | @set DefProts=%1  | 
        ||
| 10 | @shift  | 
        ||
| 11 | @set OutFileName=%1  | 
        ||
| 12 | @shift  | 
        ||
| 13 | @set REST=%1 %2 %3 %4 %5 %6 %7 %8 %9  | 
        ||
| 14 | @rem c:\home\Fourier | 
        ||
| 15 | @echo Compiling %FileNum% %SrcFileName%  | 
        ||
| 16 | @"c:\program files (x86)\national instruments\cvi2013\bin\clang\2.9\clang.exe" -cc1 -nostdinc -emit-obj -add-plugin cvi-emit-defprots -plugin-arg-cvi-emit-defprots %DefProts% %REST% -std=c99 @"CC_no_dep_options.txt" @"CC_options.txt" -D_CVI_="1302" -D_NI_i386_="1" -D_NI_mswin_="1" -D_NI_mswin32_="1" -D_CVI_DEBUG_="1" -D_CVI_EXE_="1" -D_LINK_CVIRTE_="1" -D_CVI_FDS_="1" -D_CVI_USE_FUNCS_FOR_VARS_="1" -D__DEFALIGN="8" -D_NI_VC_="220" -D_WIN32="1" -DWIN32="1" -D__WIN32__="1" -D_WINDOWS="1" -D__NT__="1" -D_M_IX86="400" -D__FLAT__="1" -D_PUSHPOP_SUPPORTED="1" -D_CVI_C99_EXTENSIONS_="1" -D_CVI_PROFILE_LEVEL_="0" -D_TARGET_FILE_VERSION_="\"1.0.0.0\"" -D_TARGET_PRODUCT_VERSION_="\"1.0.0.0\"" -D_OPENMP="200505" -D_CVI_CONFIGURATION_NAME_="\"Debug\"" -D_CVI_RTE_SHARED_="1" -DWIN32_LEAN_AND_MEAN -o %ObjFileName% %SrcFileName% > %OutFileName% 2>&1  | 
        ||
| 17 | @if errorlevel 1 goto err  | 
        ||
| 18 | @echo Compile succeeded for %FileNum% %SrcFileName%  | 
        ||
| 19 | @exit 0  | 
        ||
| 20 | :err | 
        ||
| 21 | @echo Compile failed for %FileNum% %SrcFileName%  | 
        ||
| 22 | @exit 1  |