Does anybody know how t o install borland c++ 5.5. I have extracted it to c:/borland directory but I don't know how to install it. I am :confused:
Please help me
Printable View
Does anybody know how t o install borland c++ 5.5. I have extracted it to c:/borland directory but I don't know how to install it. I am :confused:
Please help me
Once you extract it to that folder, it is installed. Look for the readme file, because i think you have to edit a few things, but thats it!
(i am assuming that you are talking about the free command like tools)
I don't understand the read me file. It does not gives me usefull informations to install. If you know the procedure to install it then please reply to this thread.
thanks
:confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused:
Really confused!
Try looking for the other thread thats about the exact same subject.
In your bcc55\bin directory, create two files.
Name one of them 'bcc32.cfg'(without the quotes).
and add this to it:
create another called 'ilink32.cfg',Code:-I"c:\Borland\Bcc55\include"
-L"c:\Borland\Bcc55\lib"
and add this to it:
Now, create a new C++ file. (test.cpp)Code:-L"c:\Borland\Bcc55\lib"
Then, open up a Console window, and type:Code:#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
cout << "Testing..." << endl;
getch();
return(0);
}
Code:C:\WINDOWS>cd ..\borland\bcc55\bin
C:\Borland\BCC55\Bin>bcc32 test.cpp
<compiler output>
C:\Borland\BCC55\Bin>test.exe
<program output>