Newbie needs a help with Vis C++ Toolkit 2003

  • Thread starter Thread starter cld
  • Start date Start date
C

cld

UNABLE TO COMPILE

Good morning:


I would like to ask for the help, with compiling on Visual C++ Toolkit
2003.

I have no experience with C++, nor with C language. This is my first
try. I follow instruction, but I am not able to get through.

Have downloaded and installed Visual C++ Toolkit 2003. Compiler sits
at

C:\ Program Files\Microsoft Visual C++ Toolkit 2003 >_

When I try to compile from SAMPLES folder program Conformance.cpp with
command


C:\ cl /EHsc conformance.cpp

I have error

clxx : fatal error C1083: Cannot open source file: 'conformance.cpp':
No such file or directory.


Before I run cl, vcvars32.bat runs on command prompt without error.



Thank you,

Cedomilj
 
cld said:
UNABLE TO COMPILE

Good morning:


I would like to ask for the help, with compiling on Visual C++ Toolkit
2003.

I have no experience with C++, nor with C language. This is my first
try. I follow instruction, but I am not able to get through.

Have downloaded and installed Visual C++ Toolkit 2003. Compiler sits
at

C:\ Program Files\Microsoft Visual C++ Toolkit 2003 >_

When I try to compile from SAMPLES folder program Conformance.cpp with
command


C:\ cl /EHsc conformance.cpp

You need to navigate to the sample folder before trying to compile:

cd c:\program files\microsoft visual C++ toolkit 2003\samples

(or whatever the correct path is)

-cd
 
Back
Top