Post compile hook functionality #570
|
Is the post compile hook supposed to trigger on a failed compile? If yes, then maybe a new parameter can be added to signify the compilation status Also the ipRcode comes as empty in the post compile procedure regardless of compile status |
Replies: 4 comments 3 replies
|
I just realised I can use the COMPILER:ERROR to find out the compile status, but would that be reliable? In the case of entire project builds, can it be problematic? |
|
The post compile hook is executed immediately after the compilation procedure, in a single-threaded process, so the COMPILER system handle will be exactly in the correct state. |
|
So, the compile happens on a single thread. I thought we could allocate multiple threads to the extension? Is that for the other tasks? |
|
Thanks for explaining.
I will probably do a pr to update the readme |
Thanks for explaining.
I will summarise it as follows.
I will probably do a pr to update the readme