Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: williamrouse on March 23, 2011, 03:08:15 am

Title: Borland setup in Code::Blocks
Post 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
 
Title: Re: Borland setup in Code::Blocks
Post by: oBFusCATed on March 23, 2011, 09:10:44 am
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 )...
Title: Re: Borland setup in Code::Blocks
Post by: williamrouse on March 23, 2011, 12:56:08 pm
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
Title: Re: Borland setup in Code::Blocks
Post by: williamrouse on March 23, 2011, 01:15:46 pm
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!
Title: Re: Borland setup in Code::Blocks
Post by: oBFusCATed on March 23, 2011, 01:19:17 pm
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
Title: Re: Borland setup in Code::Blocks
Post by: williamrouse on March 24, 2011, 01:54:09 am
Thanks again!