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++ - [bug?] Strange compiler behaviour
I'm working on releasing the shwild library, and getting some problems with DMC++. The following line compiles successfully: dmc -c -wc -wx -Ae -Ar -DWIN32 -DSHWILD_NO_IMPLICIT_LINK -I..\..\include -I"H:\freelibs\openrj\current\include" -I"H:\STLSoft\Releases\current\STLSoft\include" -o.\matches.debug.obj ..\..\src\Matches.cpp However, the following line does not: dmc -c -wc -wx -Ae -Ar -DWIN32 -DSHWILD_NO_IMPLICIT_LINK -I..\..\include -Ih:\freelibs\cstring\current\include -I"H:\freelibs\openrj\current\include" -I"H:\STLSoft\Releases\current\STLSoft\include" -o.\matches.debug.obj ..\..\src\Matches.cpp with the error: Fatal error: unable to open input file 'h:\freelibs\cstring\current\include\cstring' --- errorlevel 1 I'm at a bit of a loss here. Any ideas? Cheers Matthew Apr 29 2006
Matthew wrote:Fatal error: unable to open input file 'h:\freelibs\cstring\current\include\cstring' --- errorlevel 1 I'm at a bit of a loss here. Any ideas? May 01 2006
"Walter Bright" <newshound digitalmars.com> wrote in message news:e34j2c$1pdu$2 digitaldaemon.com...Matthew wrote:Fatal error: unable to open input file 'h:\freelibs\cstring\current\include\cstring' --- errorlevel 1 I'm at a bit of a loss here. Any ideas? May 01 2006
Matthew wrote:"Walter Bright" <newshound digitalmars.com> wrote in message news:e34j2c$1pdu$2 digitaldaemon.com...Matthew wrote:Fatal error: unable to open input file 'h:\freelibs\cstring\current\include\cstring' --- errorlevel 1 I'm at a bit of a loss here. Any ideas? May 01 2006
|