Softune FR Family: Is there any possibility to save compiler messages

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
RiPe_3968971
Level 1
Level 1
First reply posted First question asked First like given

Hello.

Softune FR Family IDE/Compiler: Is there any possibility to save compiler messages (Errors, Warnings, ...) in one file and use it in another tool?

Thank you!

0 Likes
1 Solution

You can create make file to call the compiler/linker in command line mode and now you can save all messages with forwarding of stout to a file.

Example: fcc911s.exe -V > c:\log.txt

Best regards,

Amy Wang

View solution in original post

3 Replies
HongyanW_86
Moderator
Moderator
Moderator
100 solutions authored 100 replies posted 50 solutions authored

Hello,

Please try to right click in the build message output window and select Logging>>Start. Then build your project and all messages will be save in one log file. Please check if this meet your requirement.

Best regards,

Amy Wang

0 Likes

Hello,

Thank you very much for your answer.

Probably was my email to short. I like to generate "listing file" outside of IDE (probably I may call Compiler from one batch file)... Then we may parse this file for messages...

Regards,

Petar Ristanovic

0 Likes

You can create make file to call the compiler/linker in command line mode and now you can save all messages with forwarding of stout to a file.

Example: fcc911s.exe -V > c:\log.txt

Best regards,

Amy Wang