Hello,

When i was debug the project i receive this error message :-( Why ? It is
bug in VS.NET ? I saw a lot of "/I" switch without path argument, also why
:-(
This same project is functional in VS 6.0
Please help me.

Nicholas

Command Lines
Creating temporary file
"C:\DOCUME~1\miki\LOCALS~1\Temp\RSP000003.rsp" with contents
[
/Od /I "..\common\src" /I "..\tcl-8.0\generic" /I "..\tk-8.0\generic" /I
"..\tk-8.0\xlib" /I "\DDK\inc" /D "_WINDOWS" /D "DEBUG" /D "WIN32" /D
"_DEBUG" /D "DEBUG_MEM" /D "NEED_SNPRINTF" /D "SASR" /FD /EHsc /MLd
/YX"stdafx.h" /Fp".\Debug/rat.pch" /Fo".\Debug/" /Fd".\Debug/" /FR".\Debug/"
/W3 /c /ZI ../common /I ../common /I ../common /I ../common /I
../common /I ../common /I ../common /I ../common /I ../common /I
../common /I ../common /I ../common /I
process.c
mbus_control.c
main_control.c
codec_compat.c
cmd_parser.c
]
Creating command line "cl.exe @C:\DOCUME~1\miki\LOCALS~1\Temp\RSP000003.rsp
/nologo"

Output Window
Compiling...
cl : Command line error D2004 : '/I' requires an argument

Re: Command line error D2004 : '/I' requires an argument by Nick

Nick
Fri Nov 21 13:05:31 CST 2003

It seems that you're missing an argument for the last /I in your command
line.

You might also want to look at why you have so many "/I ../common".

Nick

"Mikulas Kankula" <kankula@kosice.upjs.sk> wrote in message
news:eROlI3EsDHA.3456@tk2msftngp13.phx.gbl...
> Hello,
>
> When i was debug the project i receive this error message :-( Why ? It is
> bug in VS.NET ? I saw a lot of "/I" switch without path argument, also why
> :-(
> This same project is functional in VS 6.0
> Please help me.
>
> Nicholas
>
> Command Lines
> Creating temporary file
> "C:\DOCUME~1\miki\LOCALS~1\Temp\RSP000003.rsp" with contents
> [
> /Od /I "..\common\src" /I "..\tcl-8.0\generic" /I "..\tk-8.0\generic" /I
> "..\tk-8.0\xlib" /I "\DDK\inc" /D "_WINDOWS" /D "DEBUG" /D "WIN32" /D
> "_DEBUG" /D "DEBUG_MEM" /D "NEED_SNPRINTF" /D "SASR" /FD /EHsc /MLd
> /YX"stdafx.h" /Fp".\Debug/rat.pch" /Fo".\Debug/" /Fd".\Debug/"
/FR".\Debug/"
> /W3 /c /ZI ../common /I ../common /I ../common /I ../common /I
> ../common /I ../common /I ../common /I ../common /I ../common /I
> ../common /I ../common /I ../common /I
> process.c
> mbus_control.c
> main_control.c
> codec_compat.c
> cmd_parser.c
> ]
> Creating command line "cl.exe
@C:\DOCUME~1\miki\LOCALS~1\Temp\RSP000003.rsp
> /nologo"
>
> Output Window
> Compiling...
> cl : Command line error D2004 : '/I' requires an argument
>
>
>
>



Re: Command line error D2004 : '/I' requires an argument by James

James
Fri Nov 21 15:21:33 CST 2003

"Nick Savoiu" <savoiu@ics_.uci_.edu_> wrote in message
news:untFtLGsDHA.2448@TK2MSFTNGP12.phx.gbl...
> You might also want to look at why you have so many "/I ../common".

I'm betting those were originally something like:
/I "../Common Files/Library1"
/I "../Common Files/Library2"
/I "../Common Files/Library3"
etc.