473,414 Members | 1,766 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,414 software developers and data experts.

C++ compiler for ver 7.1

I looked into CLR path, but couldn't find a compiler for C++ that comes with
VS .NET 2003... I mean, C#, J#, VB .NET and even JScript compilers are in
that folder. Why not C++?
Nov 17 '05 #1
7 2770
Hayato Iriumi wrote:
I looked into CLR path, but couldn't find a compiler for C++ that
comes with VS .NET 2003... I mean, C#, J#, VB .NET and even JScript
compilers are in that folder. Why not C++?


Because it's in a different path? Seriously - why do you care?

-cd
Nov 17 '05 #2
My way of asking question was wrong... Sorry about that.

I meant I couldn't find a compiler for C++. I really don't care where it's
located at, but I want to compile C++ file using a command line instead of
from VS .NET. Could you tell me how to do it?
"Carl Daniel [VC++ MVP]" <cp*****************************@mvps.org.nospam >
wrote in message news:Oe**************@TK2MSFTNGP12.phx.gbl...
Hayato Iriumi wrote:
I looked into CLR path, but couldn't find a compiler for C++ that
comes with VS .NET 2003... I mean, C#, J#, VB .NET and even JScript
compilers are in that folder. Why not C++?


Because it's in a different path? Seriously - why do you care?

-cd

Nov 17 '05 #3
"Hayato Iriumi" <hi*****@hotmail.com> wrote in message
news:OO**************@TK2MSFTNGP09.phx.gbl...
My way of asking question was wrong... Sorry about that.

I meant I couldn't find a compiler for C++. I really don't care where it's
located at, but I want to compile C++ file using a command line instead of
from VS .NET. Could you tell me how to do it?

C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\bin\cl.exe


However you must set the environment variables through a batch file or
something first.


Ioannis Vranos

Nov 17 '05 #4
Yeah, that's what I thought... Well, I ran cl.exe /? from command line and I
got this error saying that it couldn't find mspdb71.dll. So I searched for
mspdb71.dll on my local drive and copied it to the directory where cl.exe is
located. It seems to work now... I never deleted mspdb71.dll before...
Weird, but anyway, it seems to be working. Thanks!

P.S.
Whenever I try to learn new language, I try to do command line tutorial. It
makes me understand the language better. ;-)
"Ioannis Vranos" <iv*@guesswh.at.emails.ru> wrote in message
news:up*************@TK2MSFTNGP09.phx.gbl...
"Hayato Iriumi" <hi*****@hotmail.com> wrote in message
news:OO**************@TK2MSFTNGP09.phx.gbl...
My way of asking question was wrong... Sorry about that.

I meant I couldn't find a compiler for C++. I really don't care where it's located at, but I want to compile C++ file using a command line instead of from VS .NET. Could you tell me how to do it?

C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\bin\cl.exe


However you must set the environment variables through a batch file or
something first.


Ioannis Vranos

Nov 17 '05 #5
Hayato Iriumi wrote:
Yeah, that's what I thought... Well, I ran cl.exe /? from command
line and I got this error saying that it couldn't find mspdb71.dll.


run vcvars32.bat before trying to call cl.exe : it puts all the necessary
environnement in place.

Arnaud
MVP - VC
Nov 17 '05 #6
In the start menu of windows,

under vs 2003 -> tools you'll find the 2003 command line.
this starts your cmd and automatically registers the environment variables.
this will help you with "missing files"

"Hayato Iriumi" <hi*****@hotmail.com> wrote in message
news:#G**************@TK2MSFTNGP09.phx.gbl...
Yeah, that's what I thought... Well, I ran cl.exe /? from command line and I got this error saying that it couldn't find mspdb71.dll. So I searched for
mspdb71.dll on my local drive and copied it to the directory where cl.exe is located. It seems to work now... I never deleted mspdb71.dll before...
Weird, but anyway, it seems to be working. Thanks!

P.S.
Whenever I try to learn new language, I try to do command line tutorial. It makes me understand the language better. ;-)
"Ioannis Vranos" <iv*@guesswh.at.emails.ru> wrote in message
news:up*************@TK2MSFTNGP09.phx.gbl...
"Hayato Iriumi" <hi*****@hotmail.com> wrote in message
news:OO**************@TK2MSFTNGP09.phx.gbl...
My way of asking question was wrong... Sorry about that.

I meant I couldn't find a compiler for C++. I really don't care where it's located at, but I want to compile C++ file using a command line
instead
of from VS .NET. Could you tell me how to do it?

C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\bin\cl.exe


However you must set the environment variables through a batch file or
something first.


Ioannis Vranos


Nov 17 '05 #7
Thank you guys for giving me tips! I appreciate it very much!
"Sebastian Dau" <se***********@gmx.de> wrote in message
news:40*********************@read.news.de.uu.net.. .
In the start menu of windows,

under vs 2003 -> tools you'll find the 2003 command line.
this starts your cmd and automatically registers the environment variables. this will help you with "missing files"

"Hayato Iriumi" <hi*****@hotmail.com> wrote in message
news:#G**************@TK2MSFTNGP09.phx.gbl...
Yeah, that's what I thought... Well, I ran cl.exe /? from command line and
I
got this error saying that it couldn't find mspdb71.dll. So I searched
for mspdb71.dll on my local drive and copied it to the directory where cl.exe is
located. It seems to work now... I never deleted mspdb71.dll before...
Weird, but anyway, it seems to be working. Thanks!

P.S.
Whenever I try to learn new language, I try to do command line tutorial.

It
makes me understand the language better. ;-)
"Ioannis Vranos" <iv*@guesswh.at.emails.ru> wrote in message
news:up*************@TK2MSFTNGP09.phx.gbl...
"Hayato Iriumi" <hi*****@hotmail.com> wrote in message
news:OO**************@TK2MSFTNGP09.phx.gbl...
> My way of asking question was wrong... Sorry about that.
>
> I meant I couldn't find a compiler for C++. I really don't care

where it's
> located at, but I want to compile C++ file using a command line

instead
of
> from VS .NET. Could you tell me how to do it?
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\bin\cl.exe


However you must set the environment variables through a batch file or
something first.


Ioannis Vranos



Nov 17 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Jeff Epler | last post by:
Hello. Recently, Generator Comprehensions were mentioned again on python-list. I have written an implementation for the compiler module. To try it out, however, you must be able to rebuild...
7
by: Tao Wang | last post by:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I saw cuj's conformance roundup, but the result is quite old. I think many people like me want to know newer c++ standard conformance test...
16
by: pj | last post by:
(Was originally, probably wrongly, posted to the vc subgroup.) (This doesn't appear to be a c# problem, but a problem with a bug in the Visual Studio c# compiler, but, any help will be welcome...)...
0
by: rollasoc | last post by:
Hi, I seem to be getting a compiler error Internal Compiler Error (0xc0000005 at address 535DB439): likely culprit is 'BIND'. An internal error has occurred in the compiler. To work around...
3
by: Mark Rockman | last post by:
------ Build started: Project: USDAver2, Configuration: Debug .NET ------ Preparing resources... Updating references... Performing main compilation... error CS0583: Internal Compiler Error...
1
by: Timur Safin | last post by:
Hi All, Sorry if it is offtopic here, I wasn't able to find any more relevant group... I'm slowly approaching AMD64 build for our product (as my personal fun project). And after I ran that...
0
by: skip | last post by:
Here's a trivial little Python session which attempts to use compiler.walk (mostly unsuccessfully): % python Python 2.4.2 (#1, Feb 23 2006, 12:48:31) on sunos5 Type "help", "copyright",...
6
by: toton | last post by:
Hi, Anyone have a link to comparative study of different C++ compilers and how much they conform to C++ language standard? Most of the big platforms I know have GCC which well supports C++...
41
by: Miroslaw Makowiecki | last post by:
Where can I download Comeau compiler as a trial version? Thanks in advice.
27
by: Dave | last post by:
I'm having a hard time tying to build gcc 4.3.1 on Solaris using the GNU compilers. I then decided to try to use Sun's compiler. The Sun Studio 12 compiler reports the following code, which is in...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.