Any particular reason why src\update.bat copies archive (i.e., .a) files to src\output31_64?
The command doing this is:
echo Transferring LIB files from devel to output folder
xcopy "%CB_DEVEL_DIR%\*.a" "%CB_OUTPUT_DIR%" /D /y > nul
As you can see, I'm building CodeBlocks on a windows machine,
I'm letting xcopy commands fall through to windows, which wants it's options
at the end of the command rather than at the beginning, but that's nether here nor there, I'm guessing.