Thread: Borland C++ Builder?

  1. #1
    Registered User
    Join Date
    Aug 2001
    Posts
    403

    Borland C++ Builder?

    Am I missing something?
    It appears to me as if C++Builder doesn't include the standard c++ headers.
    The code:

    #include <iostream>
    using namespace std;

    Fails to work due to several issues including a lack of an <iostream> header.

    Does anyone have the free version working with the .h-less headers.

    Does anyone have standard or pro? Do these include the new headers? Thanks.

  2. #2
    Registered User
    Join Date
    Aug 2001
    Posts
    403

    stl files missing too??

    after a fresh install of the free command line builder i did the following in my command prompt

    c:\> cd bcc55\Examples\StdLib
    c:\bcc55\Examples\StdLib> make

    and make failed due to missing stl files. Can anybody explain this to me? I was once quite impressed with Borland but this Free Command Line Builder seems to be quite incomplete.

  3. #3
    Registered User
    Join Date
    Dec 2001
    Posts
    32
    Did you make the additions to the environment search path and create the .cfg files as is written in the readme.txt? I believe that you can choose to include or not include the .h . Both should work.

    I'm using the free version and it is working very well.

    Seron

  4. #4
    ....
    Join Date
    Aug 2001
    Location
    Groningen (NL)
    Posts
    2,380
    Everything works fine with me.

    Did you create BCC32.CFG and ILINK32.CFG in C:\BORLAND\BCC55\BIN?

    BCC32.CFG:

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

    ILINK32.CFG:

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

    Did you add C:\BORLAND\BCC55\BIN to PATH in autoexec.bat?

  5. #5
    Registered User
    Join Date
    Aug 2001
    Posts
    403

    ah my .cfg file were not in the bin directory

    I knew i had made them but they were placed incorrectly. thanks for the help

  6. #6
    Unregistered
    Guest
    Hey I'm just wondering how you add C:\BORLAND\BCC55\BIN to PATH?

  7. #7
    aurė entuluva! mithrandir's Avatar
    Join Date
    Aug 2001
    Posts
    1,209
    Add this line to your autoexec.bat file:

    SET PATH=C:\BORLAND\BCC55\BIN ;%PATH%

  8. #8
    Unregistered
    Guest
    I seem to have two autoexec.bat files. Should I post the line into each one? The first one is located in C:\ and the other autoexec.bat is in C:\WINDOWS\COMMAND\EBD which one should i edit?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. THE END - Borland C++ Builder, Delphi, J Builder?
    By Davros in forum A Brief History of Cprogramming.com
    Replies: 5
    Last Post: 02-28-2006, 11:23 PM
  2. Converting from Borland Builder -> MSVC++ guide?
    By _Elixia_ in forum Windows Programming
    Replies: 4
    Last Post: 08-02-2003, 09:00 AM
  3. TAutoObject: Builder 1.0 vs. 6.0
    By pimming in forum C++ Programming
    Replies: 2
    Last Post: 06-11-2003, 10:47 PM
  4. Dynamically programme in C++ Builder..Help
    By Gugge in forum C++ Programming
    Replies: 2
    Last Post: 08-01-2002, 12:14 PM
  5. borland c++ builder 6 trial
    By Klinerr1 in forum C++ Programming
    Replies: 3
    Last Post: 06-12-2002, 11:59 PM