View Single Post
Old 11-24-2005, 09:49 AM  
_panic_
Senior Member
 
Join Date: Jul 2005
Posts: 153
Default

Quote:
Originally Posted by lordoflife1
N:\Documents and Settings\Randall>c:\borland\bcc55\bin\bcc32.exe n:\pro\template
.cpp is what it shows befor i hit enter and the thing w/o .h didnt work........ill be playin half life
the error message you get is because bcc32.exe can't find the files iostream.h and string.h. you need to tell bcc32.exe how to find these files.

first, your're going to have to find the path to these files by searching for them on your computer. the are probably in c:\borland\... somewhere. second, you're going to have to use the /I option to bcc32.exe and include this path:

c:\borland\bcc55\bin\bcc32.exe /Ic:\path\to\includes template.cpp

i don't have documentation for bcc32.exe handy, so it *might* not be /I you need to use. you'll have to check your compiler documentation for how to specify "include header paths" if it doesn't work.

good luck!
_panic_ is offline