Board index » cppbuilder » Borland C/C++ free compiler
JSS
![]() CBuilder Developer |
JSS
![]() CBuilder Developer |
Borland C/C++ free compiler2005-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. |
Yu-Chen Hsueh
![]() CBuilder Developer |
2005-01-14 07:19:50 AM
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 -- |
Ercan MUTLU
![]() CBuilder Developer |
2005-07-03 03:12:43 AM
Re:Borland C/C++ free compiler
JSS wrote:
QuoteI Installed Borland 5.5 free compiler under Windows ME and it doesn't allow 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} |