|
-
Feb 18th, 2001, 10:07 AM
#1
Thread Starter
PowerPoster
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 
Please help me
-
Feb 18th, 2001, 11:37 AM
#2
PowerPoster
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)
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
-
Feb 18th, 2001, 12:25 PM
#3
Thread Starter
PowerPoster
-
Feb 18th, 2001, 01:17 PM
#4
Try looking for the other thread thats about the exact same subject.
-
Feb 18th, 2001, 04:09 PM
#5
In your bcc55\bin directory, create two files.
Name one of them 'bcc32.cfg'(without the quotes).
and add this to it:
Code:
-I"c:\Borland\Bcc55\include"
-L"c:\Borland\Bcc55\lib"
create another called 'ilink32.cfg',
and add this to it:
Code:
-L"c:\Borland\Bcc55\lib"
Now, create a new C++ file. (test.cpp)
Code:
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
cout << "Testing..." << endl;
getch();
return(0);
}
Then, open up a Console window, and type:
Code:
C:\WINDOWS>cd ..\borland\bcc55\bin
C:\Borland\BCC55\Bin>bcc32 test.cpp
<compiler output>
C:\Borland\BCC55\Bin>test.exe
<program output>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|