Tool/software: TI C/C++ Compiler
Here is my command line with relevant parts in red:
"C:/CCS7.3.0/ccsv7/tools/compiler/ti-cgt-arm_17.9.0.STS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="C:/CCS7.3.0/ccsv7/ccs_base/arm/include" --include_path="C:/CCS7.3.0/ccsv7/ccs_base/arm/include/CMSIS" --include_path="C:/Users/a0868339/workspace_v7_3/alignmentTest" --include_path="C:/CCS7.3.0/ccsv7/tools/compiler/ti-cgt-arm_17.9.0.STS/include" --advice:power=all --define=__MSP432P401R__ --define=ccs --define=xdc_target_types="ti/sysbios/BIOS.h" -g --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --check_misra="all" --preproc_with_compile --preproc_dependency="system_msp432p401r.d_raw" "../main.c"
Without --check_misra option, the compilation succeeds, but with --check_misra, it fails with the following error:
Command-line error #1046: invalid macro definition: xdc_target_types=ti/sysbios/BIOS.h
1 catastrophic error detected in the compilation of "../main.c".
Is that supposed to happen? Should MISRA checks only tag the problems and let the compilation finish as if there were no checks? How should I set a macro on the command line without triggering this error?
I haven't seen this problem with the 16.9.4 compiler. There is nothing special about main.c, it's basically a blink LED type of a test.