1. C++ problem
- Posted by alojz.hancic at siol.net Apr 01, 2001
- 636 views
This is a multi-part message in MIME format. ------=_NextPart_000_0289_01C0BAC2.863C62A0 charset="iso-8859-1" Hi all I know zou doun-t like this cind of questons but I will ask anyway. I have downloaded the borland C++ compiler. I ahve instaled it and then = read the radme.txt file it says: Run freecommandlinetools.exe; choose the=20 drive and folder into which you want to install the free C++Builder 5 command line=20 tool development system. =20 2. From the bin directory of your installation: a. Add "c:\Borland\Bcc55"=20 to the existing path b. Create a bcc32.cfg file which will set=20 the compiler options for the Include=20 and Lib paths (-I and -L switches to=20 compiler) by adding these lines: -I"c:\Borland\Bcc55\include" -L"c:\Borland\Bcc55\lib" c. Create an ilink32.cfg file which will set=20 the linker option for the Lib path by=20 adding this line: -L"c:\Borland\Bcc55\lib" I am weary interested in programming in C++, sou please help me here!!!! Lep Pozdrav=20 Jan ------=_NextPart_000_0289_01C0BAC2.863C62A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 5.50.4522.1800" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>Hi all</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> <DIV><FONT face=3DArial size=3D2> I know zou doun-t like this cind = of questons=20 but I will ask anyway.</FONT></DIV> <DIV><FONT face=3DArial size=3D2>I have downloaded the borland C++ = compiler. I ahve=20 instaled it and then read the radme.txt file it says:</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> <DIV><FONT face=3DArial size=3D2> Run freecommandlinetools.exe; = choose the=20 <BR> drive and folder into which you want to<BR> = install=20 the free C++Builder 5 command line <BR> tool development=20 system.<BR> <BR>2. From the bin directory of your=20 installation:<BR> a. Add "c:\Borland\Bcc55"=20 <BR> to the existing path<BR> = b.=20 Create a bcc32.cfg file which will set = <BR> the=20 compiler options for the Include <BR> and = Lib=20 paths (-I and -L switches to <BR> = compiler) by=20 adding these lines:<BR> =20 -I"c:\Borland\Bcc55\include"<BR> =20 -L"c:\Borland\Bcc55\lib"<BR> c. Create an ilink32.cfg file = which=20 will set <BR> the linker option for the = Lib path=20 by <BR> adding this=20 line:<BR> =20 -L"c:\Borland\Bcc55\lib"<BR>---------------------------------------------= -------------------------</FONT></DIV> <DIV><FONT face=3DArial size=3D2>I have comed to 1.</FONT></DIV> <DIV><FONT face=3DArial size=3D2>but then I doun't know what to = do.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> <DIV><FONT face=3DArial size=3D2>I am weary interested in programming in = C++, sou=20 please help me here!!!!</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> <DIV><FONT face=3DArial size=3D2>Lep Pozdrav </FONT></DIV> ------=_NextPart_000_0289_01C0BAC2.863C62A0--
2. Re: C++ problem
- Posted by stabmaster_ at HOTMAIL.COM Apr 01, 2001
- 553 views
>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" Open C:\AUTOEXEC.BAT and add the following line: SET PATH=%PATH%;C:\Borland\Bcc55 Create a file in C:\Borland\Bcc55\bin called bcc32.cfg (with Notepad, Edit or a similar program) and add the following lines: -I"c:\Borland\Bcc55\include" -L"c:\Borland\Bcc55\lib" Create another file in the same directory, this one called ilink32.cfg and add the following line: -L"c:\Borland\Bcc55\lib" That should be all there is to it. Although I haven't installed Bcc myself so I'm not sure about it.