Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - iostream error
I tried to compile the hello world program it said Fatal error unable open input file iostream. Is it the way i installed it which was drag stlport to replace the one in the compiler then drag the file under lib and placed it in the compiler's lib folder. Mar 18 2006
Bill wrote:I tried to compile the hello world program it said Fatal error unable open input file iostream. Is it the way i installed it which was drag stlport to replace the one in the compiler then drag the file under lib and placed it in the compiler's lib folder. Mar 18 2006
"Bill" <Bill_member pathlink.com> wrote in message news:dvhc9u$2qhc$1 digitaldaemon.com...I tried to compile the hello world program it said Fatal error unable open Mar 18 2006
TK wrote:DMC uses .h header naming convention so either you edit the source files to #include <iostream.h> or copy over iostream.h in dm/include to a file named "iostream" or create a file called "iostream" with the line #include <iostream.h> in it to tell the compiler to include the required header without changing the source files. Mar 18 2006
|