You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While trying to compile the monitor DLLs, I received the following error:
objects/code/insns.c:414:9: error: ‘SIG_vbscript_COleScript_Compile’ undeclared (first use in this function); did you mean ‘SIG_jscript_COleScript_Compile’?
SIG_vbscript_COleScript_Compile,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SIG_jscript_COleScript_Compile
Looking at the generated C files, the symbol was in fact missing however the signature looked to be correct.
Please see #71 for a pull request that fixes the issue. The duplication check last does not differentiate between functions in different modules/DLLs. Since the variable last is not used anywhere else, I added the module name to the last string to help differentiate. Afterwards all binaries are correctly generated.
Thanks for writing Cuckoo. It has been a huge help.
The text was updated successfully, but these errors were encountered:
While trying to compile the monitor DLLs, I received the following error:
Looking at the generated C files, the symbol was in fact missing however the signature looked to be correct.
Please see #71 for a pull request that fixes the issue. The duplication check
last
does not differentiate between functions in different modules/DLLs. Since the variable last is not used anywhere else, I added the module name to the last string to help differentiate. Afterwards all binaries are correctly generated.Thanks for writing Cuckoo. It has been a huge help.
The text was updated successfully, but these errors were encountered: