Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 363 | 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:\SAMO\Programi\NI\cvi\instr\PicoTech |
||
| 15 | @echo Compiling %FileNum% %SrcFileName% |
||
| 16 | @"c:\program files (x86)\national instruments\cvi2019\bin\clang\3.3\clang.exe" -cc1 -nostdsysteminc -fno-builtin-include-notes -emit-obj -add-plugin cvi-emit-defprots -plugin-arg-cvi-emit-defprots %DefProts% -target-cpu x86-64 %REST% -std=gnu89 -trigraphs @"CC_no_dep_options.txt" @"CC_options.txt" -D_CVI_="1900" -D_NI_x64_="1" -D_NI_mswin_="1" -D_NI_mswin64_="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" -D_WIN64="1" -DWIN32="1" -DWIN64="1" -D__WIN32__="1" -D__WIN64__="1" -D_WINDOWS="1" -D__NT__="1" -D_M_X64="1" -D_M_AMD64="1" -D__FLAT__="1" -D_PUSHPOP_SUPPORTED="1" -D_CVI_C99_EXTENSIONS_="0" -D_CVI_PROFILE_LEVEL_="0" -D_TARGET_FILE_VERSION_="\"1.0.0.0\"" -D_TARGET_PRODUCT_VERSION_="\"1.0.0.0\"" -D_CVI_CONFIGURATION_NAME_="\"Debug64\"" -D_CVI_RTE_SHARED_="1" -DWIN32_LEAN_AND_MEAN -DBELLEPTS -DXXCAEN_V1495 -DUSE_MIKRO -DXXCAEN_V288 -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 |