Results 1 to 4 of 4

Thread: Borland Free C++ Compiler

  1. #1

    Thread Starter
    Frenzied Member Vlatko's Avatar
    Join Date
    Aug 2000
    Location
    Skopje, Macedonia
    Posts
    1,409
    Because i heard a lot about the free Borland C++ compiler i downloaded it. I've never used anything else than VC++ in my C++ life (never used command line tools) so i want to know if BCC can do something VC++ compiler can't or VC++ is more powerful any way you look at it. Anyway , i am curious how can i compile a windows application using BCC. I've tried "BCC32 -w filename" but unresolved external symbol _main error comes up. Any help is appreciated.
    I am become death, the destroyer of worlds.
    mail:[email protected]

    • Visual Basic 6.0 & .NET
    • Visual C++ 6.0 & .NET
    • ASP
    • LISP
    • PROLOG
    • C
    • Pascal

  2. #2
    Monday Morning Lunatic parksie's Avatar
    Join Date
    Mar 2000
    Location
    Mashin' on the motorway
    Posts
    8,169
    Use bcc32 -tW filename to make a Windows executable.
    I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
    -- Linus Torvalds

  3. #3
    Guest
    and to make an executable of a different filename of the original CPP, do this:


    Code:
    bcc32 -tW -enewfilename oldfilename
    the Main problem with BCC5.5 is it makes huge executables,
    VC++ makes huge debug exe's, but the release ones are tiny.....

    thats the same problem I have with code warrior(it makes huge exe's)



    and another problem I found with BCC5.5 is I can't seem to find out how to use resource files... I compiled it(res) Ok, but the resources wouldn't load. I can't seem to find a way to add it to my 'project'


  4. #4

    Thread Starter
    Frenzied Member Vlatko's Avatar
    Join Date
    Aug 2000
    Location
    Skopje, Macedonia
    Posts
    1,409
    Yes! That was my next question. Yhe executable size. Minimum is 120 or 130 KB and VC++ 20KB. What is the reason for this. 100KB difference is not so little.
    I am become death, the destroyer of worlds.
    mail:[email protected]

    • Visual Basic 6.0 & .NET
    • Visual C++ 6.0 & .NET
    • ASP
    • LISP
    • PROLOG
    • C
    • Pascal

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