Генерация тестов покрытия кода

В этом примере показано, как использовать Simulink® Design Verifier™, чтобы сгенерировать тесты, чтобы получить полное покрытие кода.

Вы сначала собираете покрытие кода для модели в качестве примера, сконфигурированной для программного обеспечения в цикле (SIL) режим симуляции. Затем вы используете Simulink® Design Verifier™, чтобы создать тестовый набор, который генерирует тестовые случаи, чтобы достигнуть недостающего покрытия. Наконец, вы выполняете сгенерированные тесты в режиме SIL симуляции, чтобы проверить полный обзор.

Проверьте наличие продукта

Убедитесь, что у вас есть Simulink® Coder™ и программное обеспечение Embedded Coder™, установленное на вашей машине.

if ~(license('test', 'Real-Time_Workshop') && ...
    license('test','RTW_Embedded_Coder'))
    return
end

Начальная настройка

Убедитесь, что неотредактированная версия модели открыта.

model = 'sldvdemo_cruise_control';
close_system(model, 0)
open_system(model)

Сконфигурируйте модель, чтобы измерить покрытие кода

Прежде, чем запустить симуляцию, установленную параметры модели, чтобы запуститься в режиме SIL и собрать метрики покрытия кода при помощи Simulink® Coverage™.

set_param(model,...
    'SimulationMode', 'Software-in-the-Loop (SIL)',...
    'SystemTargetFile', 'ert.tlc',...
    'LaunchReport', 'off',...
    'PortableWordSizes', 'on',...
    'CovEnable', 'on');

% Remove any existing build folders.
buildFolder = RTW.getBuildDir(model);
if exist(buildFolder.BuildDirectory, 'dir')
    rmdir(buildFolder.BuildDirectory, 's');
end

Запустите симуляции в режиме SIL

Соберите результаты покрытия кода при помощи cvsim команда и представление отчета покрытия. cvhtml функция представляет отчет покрытия, который указывает на начальное покрытие sldvdemo_cruise_control модель.

initialCov = cvsim(model);

cvhtml('sil_initial_coverage', initialCov);
### Starting build procedure for: sldvdemo_cruise_control
### Generating code and artifacts to 'Model specific' folder structure
### Generating code into build folder: /tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw
### Invoking Target Language Compiler on sldvdemo_cruise_control.rtw
### Using System Target File: /mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert/ert.tlc
        ### Loading TLC function libraries
......
### Initial pass through model to cache user defined code
.
### Caching model source code
...............................
### Writing header file sldvdemo_cruise_control_types.h
.
### Writing header file sldvdemo_cruise_control.h
### Writing header file rtwtypes.h
### Writing source file sldvdemo_cruise_control.c
### Writing header file sldvdemo_cruise_control_private.h
### Writing source file ert_main.c
### TLC code generation complete.
.### Saving binary information cache.
### Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
### Creating '/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented/sldvdemo_cruise_control.mk' ...
### Building 'sldvdemo_cruise_control': "/mathworks/devel/bat/BR2021bd/build/matlab/bin/glnxa64/gmake"  -f sldvdemo_cruise_control.mk buildobj
gmake[5]: Entering directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented'
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -o "sldvdemo_cruise_control.o" "/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sldvdemo_cruise_control.c"
### Successfully generated all binary outputs.
gmake[5]: Nothing to be done for `buildobj'.
gmake[5]: Leaving directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented'
### Successful completion of build procedure for: sldvdemo_cruise_control
### Simulink cache artifacts for 'sldvdemo_cruise_control' were created in '/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control.slxc'.

Build Summary

Top model targets built:

Model                    Action                       Rebuild Reason                                    
========================================================================================================
sldvdemo_cruise_control  Code generated and compiled  Code generation information file does not exist.  

1 of 1 models built (0 models already up to date)
Build duration: 0h 0m 18.2s
### Preparing to start SIL simulation ...
Building with 'gcc'.
MEX completed successfully.
### Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
### Creating '/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions/pwslib/sldvdemo_cruise_control_ca.mk' ...
### Building 'sldvdemo_cruise_control_ca': "/mathworks/devel/bat/BR2021bd/build/matlab/bin/glnxa64/gmake"  -f sldvdemo_cruise_control_ca.mk all
gmake[5]: Entering directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions/pwslib'
gcc -c -fwrapv -fPIC -O0 -DINTEGER_CODE=0  -DCA_CHECK_FLOATING_POINT_ENABLED=1 -DPORTABLE_WORDSIZES -DCA_CHECK_LONG_LONG_ENABLED=0 -DCA_CHECK_DYNAMIC_MEMORY=0 -DCA_CHECK_DAZ_ENABLED=1 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -o "coder_assumptions_hwimpl.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_hwimpl.c"
gcc -c -fwrapv -fPIC -O0 -DINTEGER_CODE=0  -DCA_CHECK_FLOATING_POINT_ENABLED=1 -DPORTABLE_WORDSIZES -DCA_CHECK_LONG_LONG_ENABLED=0 -DCA_CHECK_DYNAMIC_MEMORY=0 -DCA_CHECK_DAZ_ENABLED=1 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -o "coder_assumptions_flt.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_flt.c"
gcc -c -fwrapv -fPIC -O0 -DINTEGER_CODE=0  -DCA_CHECK_FLOATING_POINT_ENABLED=1 -DPORTABLE_WORDSIZES -DCA_CHECK_LONG_LONG_ENABLED=0 -DCA_CHECK_DYNAMIC_MEMORY=0 -DCA_CHECK_DAZ_ENABLED=1 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -o "sldvdemo_cruise_control_ca.o" "/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions/sldvdemo_cruise_control_ca.c"
### Creating static library ./sldvdemo_cruise_control_ca.a ...
ar ruvs  ./sldvdemo_cruise_control_ca.a coder_assumptions_hwimpl.o coder_assumptions_flt.o sldvdemo_cruise_control_ca.o
ar: creating ./sldvdemo_cruise_control_ca.a
a - coder_assumptions_hwimpl.o
a - coder_assumptions_flt.o
a - sldvdemo_cruise_control_ca.o
### Created: ./sldvdemo_cruise_control_ca.a
### Successfully generated all binary outputs.
gmake[5]: Nothing to be done for `all'.
gmake[5]: Leaving directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions/pwslib'
### Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
### Creating '/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/sldvdemo_cruise_control.mk' ...
### Building 'sldvdemo_cruise_control': "/mathworks/devel/bat/BR2021bd/build/matlab/bin/glnxa64/gmake"  -f sldvdemo_cruise_control.mk all
gmake[5]: Entering directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil'
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xil_interface_lib.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/xil_interface_lib.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xil_data_stream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/xil_data_stream.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xil_services.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/xil_services.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xil_interface.o" "/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/xil_interface.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xilcomms_rtiostream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/xilcomms_rtiostream.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xil_rtiostream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/xil_rtiostream.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "rtiostream_utils.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils/rtiostream_utils.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "coder_assumptions_app.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_app.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "coder_assumptions_data_stream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_data_stream.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "coder_assumptions_rtiostream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_rtiostream.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "sil_main.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/sil_main.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "target_io.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/target_io.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "rtiostream_tcpip.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/rtiostreamtcpip/rtiostream_tcpip.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xil_instrumentation.o" "/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/xil_instrumentation.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "codeinstr_data_stream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/codeinstr_data_stream.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "codeinstr_rtiostream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/codeinstr_rtiostream.c"
### Creating standalone executable ./sldvdemo_cruise_control ...
g++  -o ./sldvdemo_cruise_control xil_interface_lib.o xil_data_stream.o xil_services.o xil_interface.o xilcomms_rtiostream.o xil_rtiostream.o rtiostream_utils.o coder_assumptions_app.o coder_assumptions_data_stream.o coder_assumptions_rtiostream.o sil_main.o target_io.o rtiostream_tcpip.o xil_instrumentation.o codeinstr_data_stream.o codeinstr_rtiostream.o -Wl,--start-group hostobj/instrumented/sldvdemo_cruise_control.o -Wl,--end-group -Wl,--start-group /tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions/pwslib/sldvdemo_cruise_control_ca.a -Wl,--end-group  
### Created: ./sldvdemo_cruise_control
### Successfully generated all binary outputs.
gmake[5]: Nothing to be done for `all'.
gmake[5]: Leaving directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil'
### Starting SIL simulation for component: sldvdemo_cruise_control
rtw.connectivity.HostLauncher: started executable with host process identifier <a href="matlab: targets_hyperlink_manager('run',2);">130314</a>
rtw.connectivity.HostLauncher: stopped executable with host process identifier <a href="matlab: targets_hyperlink_manager('run',2);">130314</a>
### Stopping SIL simulation for component: sldvdemo_cruise_control
### Completed code coverage analysis

Найдите тесты для недостающего покрытия

Анализируйте sldvdemo_cruise_control модель при помощи Simulink® Design Verifier™, чтобы сгенерировать тестовый набор, который достигает увеличенного покрытия кода. Установите опции Simulink® Design Verifier™ генерировать тесты, чтобы достигнуть покрытия MCDC для топ-модели.

opts = sldvoptions;
opts.TestgenTarget = 'GenCodeTopModel';
opts.Mode = 'TestGeneration';
opts.ModelCoverageObjectives = 'MCDC';
opts.SaveHarnessModel = 'off';
opts.SaveReport = 'off';
[~, files] = sldvrun(model, opts, true, initialCov);

Проверьте полный обзор

sldvruntest функция симулирует модель при помощи сгенерированного тестового набора. cvhtml функция представляет отчет покрытия, который указывает на итоговое покрытие sldvdemo_cruise_control модель.

[~, finalCov] = sldvruntest(model, files.DataFile, [], true);
cvhtml('sil_final_coverage', finalCov);
close_system(model, 0);
### Starting build procedure for: sldvdemo_cruise_control
### Generating code and artifacts to 'Model specific' folder structure
### Generating code into build folder: /tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw
### Invoking Target Language Compiler on sldvdemo_cruise_control.rtw
### Using System Target File: /mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert/ert.tlc
        ### Loading TLC function libraries
......
### Initial pass through model to cache user defined code
.
### Caching model source code
................................
### Writing header file sldvdemo_cruise_control_types.h
.
### Writing header file sldvdemo_cruise_control.h
### Writing header file rtwtypes.h
### Writing source file sldvdemo_cruise_control.c
### Writing header file sldvdemo_cruise_control_private.h
### Writing source file ert_main.c
### TLC code generation complete.
.### Saving binary information cache.
### Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
### Creating '/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented/sldvdemo_cruise_control.mk' ...
### Building 'sldvdemo_cruise_control': "/mathworks/devel/bat/BR2021bd/build/matlab/bin/glnxa64/gmake"  -f sldvdemo_cruise_control.mk buildobj
gmake[5]: Entering directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented'
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -o "sldvdemo_cruise_control.o" "/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sldvdemo_cruise_control.c"
### Successfully generated all binary outputs.
gmake[5]: Nothing to be done for `buildobj'.
gmake[5]: Leaving directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented'
### Successful completion of build procedure for: sldvdemo_cruise_control
### Simulink cache artifacts for 'sldvdemo_cruise_control' were created in '/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control.slxc'.

Build Summary

Top model targets built:

Model                    Action                       Rebuild Reason                   
=======================================================================================
sldvdemo_cruise_control  Code generated and compiled  Generated code was out of date.  

1 of 1 models built (0 models already up to date)
Build duration: 0h 0m 9.4094s
### Preparing to start SIL simulation ...
Building with 'gcc'.
MEX completed successfully.
### Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
### '/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions/pwslib/sldvdemo_cruise_control_ca.mk' is up to date
### Building 'sldvdemo_cruise_control_ca': "/mathworks/devel/bat/BR2021bd/build/matlab/bin/glnxa64/gmake"  -f sldvdemo_cruise_control_ca.mk all
gmake[5]: Entering directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions/pwslib'
gcc -c -fwrapv -fPIC -O0 -DINTEGER_CODE=0  -DCA_CHECK_FLOATING_POINT_ENABLED=1 -DPORTABLE_WORDSIZES -DCA_CHECK_LONG_LONG_ENABLED=0 -DCA_CHECK_DYNAMIC_MEMORY=0 -DCA_CHECK_DAZ_ENABLED=1 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -o "sldvdemo_cruise_control_ca.o" "/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions/sldvdemo_cruise_control_ca.c"
### Creating static library ./sldvdemo_cruise_control_ca.a ...
ar ruvs  ./sldvdemo_cruise_control_ca.a coder_assumptions_hwimpl.o coder_assumptions_flt.o sldvdemo_cruise_control_ca.o
ar: creating ./sldvdemo_cruise_control_ca.a
a - coder_assumptions_hwimpl.o
a - coder_assumptions_flt.o
a - sldvdemo_cruise_control_ca.o
### Created: ./sldvdemo_cruise_control_ca.a
### Successfully generated all binary outputs.
gmake[5]: Nothing to be done for `all'.
gmake[5]: Leaving directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions/pwslib'
### Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
### '/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/sldvdemo_cruise_control.mk' is up to date
### Building 'sldvdemo_cruise_control': "/mathworks/devel/bat/BR2021bd/build/matlab/bin/glnxa64/gmake"  -f sldvdemo_cruise_control.mk all
gmake[5]: Entering directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil'
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xil_interface_lib.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/xil_interface_lib.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xil_data_stream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/xil_data_stream.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xil_services.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/xil_services.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xil_interface.o" "/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/xil_interface.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xilcomms_rtiostream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/xilcomms_rtiostream.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xil_rtiostream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/xil_rtiostream.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "rtiostream_utils.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils/rtiostream_utils.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "coder_assumptions_app.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_app.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "coder_assumptions_data_stream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_data_stream.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "coder_assumptions_rtiostream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_rtiostream.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "sil_main.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/sil_main.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "target_io.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/target_io.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "rtiostream_tcpip.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/rtiostreamtcpip/rtiostream_tcpip.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "xil_instrumentation.o" "/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/xil_instrumentation.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "codeinstr_data_stream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/codeinstr_data_stream.c"
gcc -c -fwrapv -fPIC -O0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0  -DTID01EQ=0 -DPORTABLE_WORDSIZES -DXIL_SIGNAL_HANDLER=1 -DCODER_ASSUMPTIONS_ENABLED=1 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=sldvdemo_cruise_control -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968 -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include -I/mathworks/devel/bat/BR2021bd/build/matlab/simulink/include -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/BR2021bd/build/matlab/rtw/c/ert -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions -I/mathworks/devel/bat/BR2021bd/build/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -o "codeinstr_rtiostream.o" "/mathworks/devel/bat/BR2021bd/build/matlab/toolbox/rtw/targets/pil/c/codeinstr_rtiostream.c"
### Creating standalone executable ./sldvdemo_cruise_control ...
g++  -o ./sldvdemo_cruise_control xil_interface_lib.o xil_data_stream.o xil_services.o xil_interface.o xilcomms_rtiostream.o xil_rtiostream.o rtiostream_utils.o coder_assumptions_app.o coder_assumptions_data_stream.o coder_assumptions_rtiostream.o sil_main.o target_io.o rtiostream_tcpip.o xil_instrumentation.o codeinstr_data_stream.o codeinstr_rtiostream.o -Wl,--start-group hostobj/instrumented/sldvdemo_cruise_control.o -Wl,--end-group -Wl,--start-group /tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/coderassumptions/pwslib/sldvdemo_cruise_control_ca.a -Wl,--end-group  
### Created: ./sldvdemo_cruise_control
### Successfully generated all binary outputs.
gmake[5]: Nothing to be done for `all'.
gmake[5]: Leaving directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil'
### Starting SIL simulation for component: sldvdemo_cruise_control
rtw.connectivity.HostLauncher: started executable with host process identifier <a href="matlab: targets_hyperlink_manager('run',5);">132564</a>
rtw.connectivity.HostLauncher: stopped executable with host process identifier <a href="matlab: targets_hyperlink_manager('run',5);">132564</a>
### Stopping SIL simulation for component: sldvdemo_cruise_control
### Completed code coverage analysis
### Starting build procedure for: sldvdemo_cruise_control
### Generating code and artifacts to 'Model specific' folder structure
### Generating code into build folder: /tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw
### Generated code for 'sldvdemo_cruise_control' is up to date because no structural, parameter or code replacement library changes were found.
### Saving binary information cache.
### Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
### '/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented/sldvdemo_cruise_control.mk' is up to date
### Building 'sldvdemo_cruise_control': "/mathworks/devel/bat/BR2021bd/build/matlab/bin/glnxa64/gmake"  -f sldvdemo_cruise_control.mk buildobj
gmake[5]: Entering directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented'
### Successfully generated all binary outputs.
gmake[5]: Nothing to be done for `buildobj'.
gmake[5]: Leaving directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented'
### Successful completion of build procedure for: sldvdemo_cruise_control

Build Summary

Top model targets built:

Model                    Action         Rebuild Reason                           
=================================================================================
sldvdemo_cruise_control  Code compiled  Compilation artifacts were out of date.  

1 of 1 models built (0 models already up to date)
Build duration: 0h 0m 2.3314s
### Preparing to start SIL simulation ...
### Skipping makefile generation and compilation because /tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/sldvdemo_cruise_control is up to date
### Starting SIL simulation for component: sldvdemo_cruise_control
rtw.connectivity.HostLauncher: started executable with host process identifier <a href="matlab: targets_hyperlink_manager('run',6);">132957</a>
rtw.connectivity.HostLauncher: stopped executable with host process identifier <a href="matlab: targets_hyperlink_manager('run',6);">132957</a>
### Stopping SIL simulation for component: sldvdemo_cruise_control
### Completed code coverage analysis
### Starting build procedure for: sldvdemo_cruise_control
### Generating code and artifacts to 'Model specific' folder structure
### Generating code into build folder: /tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw
### Generated code for 'sldvdemo_cruise_control' is up to date because no structural, parameter or code replacement library changes were found.
### Saving binary information cache.
### Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
### '/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented/sldvdemo_cruise_control.mk' is up to date
### Building 'sldvdemo_cruise_control': "/mathworks/devel/bat/BR2021bd/build/matlab/bin/glnxa64/gmake"  -f sldvdemo_cruise_control.mk buildobj
gmake[5]: Entering directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented'
### Successfully generated all binary outputs.
gmake[5]: Nothing to be done for `buildobj'.
gmake[5]: Leaving directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented'
### Successful completion of build procedure for: sldvdemo_cruise_control

Build Summary

Top model targets built:

Model                    Action         Rebuild Reason                           
=================================================================================
sldvdemo_cruise_control  Code compiled  Compilation artifacts were out of date.  

1 of 1 models built (0 models already up to date)
Build duration: 0h 0m 1.9984s
### Preparing to start SIL simulation ...
### Skipping makefile generation and compilation because /tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/sldvdemo_cruise_control is up to date
### Starting SIL simulation for component: sldvdemo_cruise_control
rtw.connectivity.HostLauncher: started executable with host process identifier <a href="matlab: targets_hyperlink_manager('run',7);">133224</a>
rtw.connectivity.HostLauncher: stopped executable with host process identifier <a href="matlab: targets_hyperlink_manager('run',7);">133224</a>
### Stopping SIL simulation for component: sldvdemo_cruise_control
### Completed code coverage analysis
### Starting build procedure for: sldvdemo_cruise_control
### Generating code and artifacts to 'Model specific' folder structure
### Generating code into build folder: /tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw
### Generated code for 'sldvdemo_cruise_control' is up to date because no structural, parameter or code replacement library changes were found.
### Saving binary information cache.
### Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
### '/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented/sldvdemo_cruise_control.mk' is up to date
### Building 'sldvdemo_cruise_control': "/mathworks/devel/bat/BR2021bd/build/matlab/bin/glnxa64/gmake"  -f sldvdemo_cruise_control.mk buildobj
gmake[5]: Entering directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented'
### Successfully generated all binary outputs.
gmake[5]: Nothing to be done for `buildobj'.
gmake[5]: Leaving directory `/tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/hostobj/instrumented'
### Successful completion of build procedure for: sldvdemo_cruise_control

Build Summary

Top model targets built:

Model                    Action         Rebuild Reason                           
=================================================================================
sldvdemo_cruise_control  Code compiled  Compilation artifacts were out of date.  

1 of 1 models built (0 models already up to date)
Build duration: 0h 0m 2.401s
### Preparing to start SIL simulation ...
### Skipping makefile generation and compilation because /tmp/BR2021bd_1724986_151598/publish_examples2/tp5d9feef0/ex15502968/sldvdemo_cruise_control_ert_rtw/sil/sldvdemo_cruise_control is up to date
### Starting SIL simulation for component: sldvdemo_cruise_control
rtw.connectivity.HostLauncher: started executable with host process identifier <a href="matlab: targets_hyperlink_manager('run',8);">133497</a>
rtw.connectivity.HostLauncher: stopped executable with host process identifier <a href="matlab: targets_hyperlink_manager('run',8);">133497</a>
### Stopping SIL simulation for component: sldvdemo_cruise_control
### Completed code coverage analysis

Для просмотра документации необходимо авторизоваться на сайте