Part Number: CCSTUDIO
Tool/software: TI C/C++ Compiler
I need to generate the ppm and ppi information within one compile step. But this seems not to be possible as the following example shows:
C:\ti\ccs910\ccs\tools\compiler\ti-cgt-arm_18.12.2.LTS\bin\armcl.exe --silicon_version=7R5 --code_state=32 --float_support=VFPv3D16 -g --diag_warning=225 --diag_wrap=off -display_error_number --enum_type=packed --abi=eabi --c99 --gen_cross_reference_listing --gen_func_info_listing --gen_preprocessor_listing --preproc_with_compile --preproc_includes=ti_fee_read.ppm --preproc_macros=ti_fee_read.ppi ti_fee_read.c --output_file=ti_fee_read.obj
But then I get this warning, which is essentially an error for me, as I need the ppi/ppm files to be generated for the further processes.
warning #24003-D: option --preproc_macros overrides preceding option --preproc_includes
Is there an option get get ppi and ppm information in one step?