G
Guest
is there a way to compile the cpp source that i wrote at notepad ???
for example in c# you could use csc.exe or in j# > jsc.exe
for example in c# you could use csc.exe or in j# > jsc.exe
is there a way to compile the cpp source that i wrote at notepad ???
for example in c# you could use csc.exe or in j# > jsc.exe
Peter van der Goes said:is there a way to compile the cpp source that i wrote at notepad ???
for example in c# you could use csc.exe or in j# > jsc.exe
You've downloaded and installed the .NET Framework and .NET Framework SDK,
right?
http://www.microsoft.com/downloads/...28-7071-4979-8a67-3cffcb0c2524&displaylang=en
According to a post from a Microsoft rep,
<quote>
The C++ compiler is not shipped with .NET framework, though C++ is a
language supported by .NET. You may get a C++ compiler support Managed
Extension from VS.NET:
Microsoft Visual Studio .NET\Vc7\bin\cl.exe
I hope this information is helpful for you.
Best regards,
Lion Shi [MSFT]
MCSE, MCSD
Microsoft Support Engineer
<unquote>
However,
<quote>
C:\Program Files\Microsoft.NET\SDK\v1.1\Bin>cl
Microsoft (R) 32-bit C/C++ Standard Compiler Version 13.10.2292 for 80x86
Copyright (C) Microsoft Corporation 1984-2002. All rights reserved.
usage: cl [ option... ] filename... [ /link linkoption... ]
C++ complier installed by framework SDK setup in C:\Program Files\Microsoft
Visual Studio .NET 2003\Vc7\bin. You do not need VS.NET to use c++.
Framework SDK does not include windows headers and STL, you will need
download Platform SDK and STLPORT to fix that problem.
http://www.stlport.org/download.html
http://www.microsoft.com/msdownload/platformsdk/sdkupdate/psdk-full.htm
<unquote>
Hope this helps.
sadun said:hello.cpp
hello.cpp(1) : fatal error C1083: Cannot open include file:
'iostream': No such
file or directory
but i wonder why c# and j# does have compilers inside framework and
VC++ not ? isn't it run from CLR by using same libraries???
sadun said:i got it. thank you. do you know where i could get more information
about these diffrences forex. could we build fully binary executable
CLR independed project with VC++.NET in VS2003???. i ordered MS step
by step VC++.NET book for now.