Compile messages / results from custom compile CLLE program not displayed in VS Code #3052
-
DescriptionWe have implemented a custom CLLE compile program It seems that VS Code does not show the actual compile errors or messages produced by our CLLE program. QuestionHow do we need to modify our compile program so that compile errors and messages are properly displayed in VS Code? Additional contextWe use a similar compile procedure in RDi, and there it works fine — RDi correctly displays the compile results and error messages. We decided to store all our source code on the IFS instead of using traditional source files. Our naming convention is: Where:
Examples
I will attach our CLLE compile program source to this issue for review. DescriptionWe have implemented a custom CLLE compile program e to compile our IFS-based source files. It seems that VS Code does not show the actual compile errors or messages produced by our CLLE program. QuestionHow do we need to modify our compile program so that compile errors and messages are properly displayed in VS Code? Additional contextWe use a similar compile procedure in RDi, and there it works fine — RDi correctly displays the compile results and error messages. We decided to store all our source code on the IFS instead of using traditional source files. Our naming convention is: Where:
Examples
I will attach our CLLE compile program source to this issue for review. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
|
Hi @YD-123456 , |
Beta Was this translation helpful? Give feedback.


I think I know what's wrong.
Here:
Since the name of the compiled object is derived from the source file name based on a naming convention of yours, Code for i fails to retrieve the member from the EVFEVENT file, because that member is named after the compiled object.
But since this pull request has been merged, there should be a solution: #2926
Code for i can now find EVFEVENT members to retrieve based on the joblog. It will look for messages following this pattern:
or
So I assume that if your cu…