Hello,
I have a Form Application that makes use of CGT tools (Compiler and Linker) . I want to be able to get all the messages errors/warnings from Compiler and Linker at runtime and display them to a console window, similarly to what CCS does. How can I catch all these messages? I added "--write_diagnostics_file" as option that produces an .err output file, that contains only messages from Compiler and not From Linker.
1) Is there any way to get Linker messages?
2) Is there any other simpler way to get messages at runtime without needing to save them in a .err file?
Thanks
Ilias
There is no equivalent to --write_diagnostics_file for linker diagnostics. The only other way I know to capture the diagnostics is to use the OS supplied functionality to redirect the output streams stdout and stderr.
Thanks and regards,
-George
TI C/C++ Compiler Forum ModeratorPlease click Verify Answer on the best reply to your question.The Compiler Wiki answers most common questions.Track an issue with SDOWP. Enter your bug id in the "Find Record ID" box.
Thanks for the reply. I think I will try to redirect output stream and the get messages.
Kind Regards,