Code::Blocks Forums
User forums => Using Code::Blocks => Topic started by: williamrouse on March 23, 2011, 03:08:15 am
-
I received the following errors after setting up Code::Blocks for the Borland Compiler 5.5. These errors a generated when trying to build a simple Hello program.
As anyone run into this and resolved this issue?
Error: Unresolved external '__setargv__' referenced from C:\PROGRAM FILES\BORLAND\BCC55\LIB\C0X32.OBJ
Error: Unresolved external '__setenvp__' referenced from C:\PROGRAM FILES\BORLAND\BCC55\LIB\C0X32.OBJ
Error: Unresolved external '__turboFloat' referenced from C:\PROGRAM FILES\BORLAND\BCC55\LIB\C0X32.OBJ
Process terminated with status 2 (0 minutes, 0 seconds)
0 errors, 0 warnings
-
Have you tied to search in google or your favourite search engine? You don't have one?
If you've not, try this: http://tinyurl.com/4cnujdn (if it doesn't work paste the Error: Unresolved external '__setargv__' referenced from C:\PROGRAM FILES\BORLAND\BCC55\LIB\C0X32.OBJ in the search box )...
-
Thanks! I was able to find a note on this site bassed on your search suggestion.
http://forums.codeblocks.org/index.php?topic=425.0
WBR
-
Next question on Borland with Code::Blocks--
Please point me to a note on how to get a debugger attached to using Borland Complier 5.5
Thanks!
-
Steps (a):
1. Find a command line debugger or a debugger lib
2. Check out the debugger's branch sources of C::B
3. Start writing a debugger plugin
or steps(b):
1. Switch to gcc or VC++ :)
p.s. You can try to debug with CDB, but I'm not sure if it will work with BCC
-
Thanks again!