[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: installing ns on win98




[email protected] said:
>         cl -c -Ox -c -W3 -DCRTAPI1=_cdecl -DCRTAPI2=_cdecl -nologo
> -D_X86_=1 -DW INVER=0x0400 -DWIN32  -D_WIN32 -D_MT -D_DLL -MD -Ox
> -Zm1000 -DNO_TK -I..\tk8.0.4 \win -I..\tk8.0.4\generic
> -I..\tcl8.0.4\win -I..\tcl8.0.4\generic -I..\otcl-1.0 a4
> -I..\tclcl-1.0b8  -I..\tk8.0.4\xlib  -I. -Ic:\program
> files\DevStudio\VC\incl ude -Fotrafgen.o -Tp trafgen.cc Command line
> warning D4024 : unrecognized source file type 'files\DevStudio\VC\inclu
> de', object file assumed Command line warning D4027 : source file
> 'files\DevStudio\VC\include' ignored trafgen.cc trafgen.cc(42) :
> warning C4355: 'this' : used in base member initializer list


My guess is that you need to either (1) use the dos compatible (short form 
with ~ something) for the include directive -Ic:\program files\ or (2) 
install MSVC in an alternative way with no white chars in it (such as 
space). The problem you encounter is that the compiler uses -Ic:\program as 
include directive and thus interprets files\DevStudio\VC\include as 
something unrecognized else.

Cheers,

/ChJ