Hi Raju,
If you build your SW under control of a self-written makefile then you would add the red text literally to the command line of the compiler.
If you use the project wizard of S32DS to create a project and then you compile it in the IDE (e.g. hammer icon), then you would open the properties of the project and click to C/C++ Build/Settings, tab Tool Settings, Standard S32DS C Compiler/Miscellaneous. On the right hand side you can check "Save temporary files" and more. I presume that "Save temporary files" will relate to -save-temps=obj and "Verbose" may relate to -fverbose-asm (although this is less likely). Checking "Generate assembler listing" will also be a good idea:

Alternatively, you can place any compiler command line switches at C/C++ Build/Settings, tab Tool Settings, Standard S32DS C Compiler/Optimization/Other optimization flags:

Note, all of these configuration settings relate to the basic compilation configuration (mostly Debug or Release), which is selected in drop-down box "Configuration" at the top of the property page.
After any change of these settings, recompile and carefully look at the console output of the build to see whether your configuration changes are reflected by according changes of the echoed compiler command lines.
Regards,
Peter