PDA

Click to See Complete Forum and Search --> : Installing Borland c++ 5.5


abdul
Feb 18th, 2001, 09:07 AM
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

sail3005
Feb 18th, 2001, 10:37 AM
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)

abdul
Feb 18th, 2001, 11:25 AM
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!

Feb 18th, 2001, 12:17 PM
Try looking for the other thread thats about the exact same subject.

Feb 18th, 2001, 03:09 PM
In your bcc55\bin directory, create two files.

Name one of them 'bcc32.cfg'(without the quotes).
and add this to it:


-I"c:\Borland\Bcc55\include"
-L"c:\Borland\Bcc55\lib"


create another called 'ilink32.cfg',
and add this to it:

-L"c:\Borland\Bcc55\lib"


Now, create a new C++ file. (test.cpp)


#include <iostream>
#include <conio.h>

using namespace std;

int main()
{
cout << "Testing..." << endl;
getch();
return(0);
}

Then, open up a Console window, and type:


C:\WINDOWS>cd ..\borland\bcc55\bin
C:\Borland\BCC55\Bin>bcc32 test.cpp
<compiler output>
C:\Borland\BCC55\Bin>test.exe
<program output>