Another strange issue from the depths of plugin development…
When attempting to compile my project from within the editor (it succeeds in Visual Studio), I get the following error:
[0030.82][648]CompilerResultsLog:Error: Error LINK : fatal error LNK1181: cannot open input file 'C:\Users\William\Documents\Rocket Projects\ParseProj\Plugins\ParsePlugin\Intermediate/BuildData/Win64\Dynamic\Development\RocketEditor-ParsePlugin.lib'
Now apart from the irking change from \
to /
in the filepath, I actually do have a .lib
file at the required directory, only it’s RocketEditor-ParsePlugin-Win64-Debug.lib
instead. It appears that the editor build system doesn’t take the configuration into account…?
Also oddly enough, I don’t build on Debug
at all, but on Development
. And as a side note (not sure if this is intended behavior), when compiling from Visual Studio I get about a 100 of these errors:
1>RocketLib.lib(PackUniformBuffers.obj) : warning LNK4099: PDB 'hlslcc_64.pdb' was not found with 'RocketLib.lib(PackUniformBuffers.obj)' or at 'C:\Users\William\Documents\Rocket Projects\ParseProj\Binaries\Win64\hlslcc_64.pdb'; linking object as if no debug info
1>RocketLib.lib(OptValueNumbering.obj) : warning LNK4099: PDB 'hlslcc_64.pdb' was not found with 'RocketLib.lib(OptValueNumbering.obj)' or at 'C:\Users\William\Documents\Rocket Projects\ParseProj\Binaries\Win64\hlslcc_64.pdb'; linking object as if no debug info
1>RocketLib.lib(symbol_table.obj) : warning LNK4099: PDB 'hlslcc_64.pdb' was not found with 'RocketLib.lib(symbol_table.obj)' or at 'C:\Users\William\Documents\Rocket Projects\ParseProj\Binaries\Win64\hlslcc_64.pdb'; linking object as if no debug info
1>RocketLib.lib(strtod.obj) : warning LNK4099: PDB 'hlslcc_64.pdb' was not found with 'RocketLib.lib(strtod.obj)' or at 'C:\Users\William\Documents\Rocket Projects\ParseProj\Binaries\Win64\hlslcc_64.pdb'; linking object as if no debug info
These do not cause the compilation to fail, but I thought I’d mention it anyway. The more pressing issue however is that I cannot compile from within the editor. Thanks in advance!