Thread: Help with Borland C++ 5.5

  1. #1
    Registered User
    Join Date
    Feb 2003
    Posts
    41

    Help with Borland C++ 5.5

    For the install it says

    Installing and running the Command Line Tools
    -----------------------------------------------

    1. Run freecommandlinetools.exe; choose the
    drive and folder into which you want to
    install the free C++Builder 5 command line
    tool development system.

    2. From the bin directory of your installation:
    a. Add "c:\Borland\Bcc55"
    to the existing path
    b. Create a bcc32.cfg file which will set
    the compiler options for the Include
    and Lib paths (-I and -L switches to
    compiler) by adding these lines:
    -I"c:\Borland\Bcc55\include"
    -L"c:\Borland\Bcc55\lib"
    c. Create an ilink32.cfg file which will set
    the linker option for the Lib path by
    adding this line:
    -L"c:\Borland\Bcc55\lib"
    -------------------------------------------------

    what does it all mean?? and can someone explain it in plain english?

  2. #2
    Registered User MathFan's Avatar
    Join Date
    Apr 2002
    Posts
    190
    yeah, i also had problems understanding all that stuff in the beginning...
    I don't, know about version 5.5, but here is a discription of what I did when I installed BC++ 5.1:


    1. I put all the files into C:\Cpp\
    2. Then I created a file called "bcc32.cfg" in C:\Cpp\bin\. Edited it with Notepad and added following two lines:

    -I"C:\Cpp\include"
    -L"C:\Cpp\lib"

    3. Created a file called "ilink32.cfg" in the same directory, added the following line to it with Notepad:

    -L"C:\Cpp\lib"

    That's all.

    Hope this will help

  3. #3
    Registered User
    Join Date
    Feb 2003
    Posts
    41
    well y dont they just put it all in the setup file then

  4. #4
    Registered User
    Join Date
    Feb 2003
    Posts
    41
    now what file opens the compiler once i made those files....

  5. #5
    Registered User
    Join Date
    Feb 2003
    Posts
    41
    ok i have tryed every .exe file in the folders and not one of them works could someone help me out here?

  6. #6
    End Of Line Hammer's Avatar
    Join Date
    Apr 2002
    Posts
    6,231
    Try looking harder
    When all else fails, read the instructions.
    If you're posting code, use code tags: [code] /* insert code here */ [/code]

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Using DXUT with Borland 5.5 free compiler
    By Jedi Nescioquis in forum Game Programming
    Replies: 7
    Last Post: 02-11-2009, 12:04 PM
  2. Borland 4.5 -> 5.5
    By Jules in forum C++ Programming
    Replies: 1
    Last Post: 04-19-2004, 11:08 AM
  3. Creating a .cfg file for Borland C++ 5.5 Command line compiler
    By daveknowles in forum Windows Programming
    Replies: 2
    Last Post: 09-09-2003, 10:38 AM
  4. Borland 5.5 Makefile woes...
    By gprogga in forum C++ Programming
    Replies: 3
    Last Post: 06-01-2003, 02:20 AM
  5. delay() in Bc++ 5.5
    By Chiki Chiki Chalem in forum C++ Programming
    Replies: 1
    Last Post: 07-07-2002, 09:58 AM