My post of build log for bcc 5.5
-------------- Build: Debug in Test ---------------
bcc32.exe -q -w -x -v -IC:\Apps\BCC55\include -IF:\SourceCode\Projects\IDEs\CodeBlocks\Test\Test -oobj\Debug\main.obj -c main.cpp
main.cpp:
ilink32.exe -q -ap -v -LC:\Apps\BCC55\lib c0x32 obj\Debug\main.obj ,bin\Debug\Test.exe,,cw32mt.lib import32.lib ,,
Output size is 119.00 KB
Based on your output above, your search directory is wrong for the linker or a library is missing.
Does the folder "C:\Borland\BCC55\lib" exist?
It looks like library cw32mt is not on the linker command line.
Try adding it.
How to add libraries
"Project" -> "Build Options"
Select "Linker Settings"
Add Libraries under "Link Libraries"
Mine shows these two
cw32mt.lib
import32.lib
Note, the library order may matter; mine was in the order shown above.
What version of Code::Blocks are you using?
I am using SVN 4697.
What is your bcc install base folder? The one that contains sub-folders of bin, lib and include.
Tim S