Board index » cppbuilder » Borland C/C++ free compiler

Borland C/C++ free compiler


2005-01-14 05:08:30 AM
cppbuilder86
I Installed Borland 5.5 free compiler under Windows ME and it doesn't allow
me to use the comands for compiling
Could somebody please help me with this?
I don't know if it is the path that we must add to the autoexec.bat file.
The command i use to compile is bcc32.
 
 

Re:Borland C/C++ free compiler

JSS,
The Supplementary Information document will walk you through configuration
of the free compiler:
community.borland.com/article/0,1410,21205,00.html
-- YH --
 

Re:Borland C/C++ free compiler

JSS wrote:
Quote
I Installed Borland 5.5 free compiler under Windows ME and it doesn't allow
me to use the comands for compiling
Could somebody please help me with this?

I don't know if it is the path that we must add to the autoexec.bat file.

The command i use to compile is bcc32.


Inlude these lines on aoutoexec file ...
--------------------------------------------
PATH=C:\BCC55\BIN
Set LIB=C:\BCC55\LIB
Set INCLUDE=C:\BCC55\INCLUDE
---------------------------------------------
For compile CONSOLE programs and link :bcc32 Source.cpp Dest.exe
ForWindows prog.(winAPI) and link :bcc32 -tw Source.cppDest.exe
BUT FIRST you must make 2 cfg file .
On /bin/ Directory.
Make 2 file and include these lines
--------------------------------
bcc32.cfg:
-I"c:\Bcc55\include"
-L"c:\Bcc55\lib"
--------------------------------
ilink32.cfg
-L"c:\Bcc55\lib"
----------------------------------------------
I suggset you to use an exclent FREE editor Crimson Editor.
You can make auto compile and run the program with this editor
 

{smallsort}