Results 1 to 5 of 5

Thread: Installing Borland c++ 5.5

  1. #1

    Thread Starter
    PowerPoster abdul's Avatar
    Join Date
    Dec 2000
    Location
    Ontario,Canada
    Posts
    2,827

    Unhappy

    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
    Baaaaaaaaah

  2. #2
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340
    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

  3. #3

    Thread Starter
    PowerPoster abdul's Avatar
    Join Date
    Dec 2000
    Location
    Ontario,Canada
    Posts
    2,827

    Angry COuld not get it..

    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


    Really confused!
    Baaaaaaaaah

  4. #4
    Guest
    Try looking for the other thread thats about the exact same subject.

  5. #5
    Guest
    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
  •  



Click Here to Expand Forum to Full Width