Author Topic: Borland setup in Code::Blocks  (Read 7808 times)

Offline williamrouse

  • Single posting newcomer
  • *
  • Posts: 4
Borland setup in Code::Blocks
« 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
 

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Borland setup in Code::Blocks
« Reply #1 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 )...
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline williamrouse

  • Single posting newcomer
  • *
  • Posts: 4
Re: Borland setup in Code::Blocks
« Reply #2 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

Offline williamrouse

  • Single posting newcomer
  • *
  • Posts: 4
Re: Borland setup in Code::Blocks
« Reply #3 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!

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Borland setup in Code::Blocks
« Reply #4 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
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline williamrouse

  • Single posting newcomer
  • *
  • Posts: 4
Re: Borland setup in Code::Blocks
« Reply #5 on: March 24, 2011, 01:54:09 am »
Thanks again!