Een paar dagen geleden heeft Microsoft de Visual C++ Toolkit 2003 online gezet. Dit pakket bevat onder andere de C++ compiler die ook in Visual Studio Professional (
) zit, de optimaliserende compiler dus! Ook de STL en andere standaard libraries zitten erbij, kortom een gratis versie van Microsoft's C++ compiler.
Volgens de FAQ zijn er in het algemeen geen restricties op het gebruik, je mag programma's dus ook gewoon distribueren. Wat je uiteraard niet krijgt is support en documentatie, maar dat laatste is online ook gewoon te lezen.
Lijkt me dat dit ook heel goed te gebruiken is in combinatie met de standaard editie van VC++, aangezien die veel goedkoper is dan het hele studio pakket, maar wel een standaard (niet-optimaliserende) compiler heeft. De optimaliserende compiler zat al bij de (XP) Driver Development Kits maar die waren met een licentie beperkt tot het gebruik voor drivers.
De link:
http://msdn.microsoft.com/visualc/vctoolkit2003/
Stukje uit de FAQ op die site:
Versie is iets ouder dan die in m'n Visual Studio (3077) maar voor het geld mag je niet klagen lijkt me
.
Volgens de FAQ zijn er in het algemeen geen restricties op het gebruik, je mag programma's dus ook gewoon distribueren. Wat je uiteraard niet krijgt is support en documentatie, maar dat laatste is online ook gewoon te lezen.
Lijkt me dat dit ook heel goed te gebruiken is in combinatie met de standaard editie van VC++, aangezien die veel goedkoper is dan het hele studio pakket, maar wel een standaard (niet-optimaliserende) compiler heeft. De optimaliserende compiler zat al bij de (XP) Driver Development Kits maar die waren met een licentie beperkt tot het gebruik voor drivers.
De link:
http://msdn.microsoft.com/visualc/vctoolkit2003/
Stukje uit de FAQ op die site:
Voor de geinteresseerden, compiler logo is:What is the Visual C++ Toolkit 2003?
The Visual C++ Toolkit is a free edition of Microsoft’s professional Visual C++ optimizing compiler and standard libraries – the same optimizing compiler and standard libraries that ship in Visual Studio .NET 2003 Professional!
Are there any restrictions on how I use the Visual C++ Toolkit?
In general, no. You may use the Toolkit to build C++ -based applications, and you may redistribute those applications. Please read the End User License Agreement (EULA), included with the Toolkit, for complete details.
I have Visual Studio or Visual C++. Do I need the Visual C++ Toolkit?
The Visual C++ Toolkit will work fine alongside installed versions of Visual Studio and Visual C++. If you already use Visual Studio .NET 2003, you do not need the Visual C++ Toolkit, unless you want to see the included samples. Everything else included in the Toolkit is included with Visual Studio .NET 2003.
Is there any technical support available for the Visual C++ Toolkit?
No. The Visual C++ Toolkit is a free download and is provided without formal technical support. Documentation for the Visual C++ compiler is available online, and it is recommended that further assistance be obtained by posing questions in online programming newsgroups and community forums.
What does the Visual C++ Toolkit install on my machine?
The Toolkit installsWhat do I do after I’ve downloaded and installed the Visual C++ Toolkit?
- The Visual C++ command-line compiler and linker, and their dependencies.
- The Visual C++ C Runtime Library and static-link modules, and the Standard C++ Library, including STL
- The Microsoft .NET Framework Runtime, including library files necessary for building C++ applications that run on the .NET Common Language Runtime,
- Four samples demonstrating key features of the Visual C++ compiler and libraries.
Start by familiarizing yourself with the included samples. Learn how Visual C++ can help you write better applications. Learn how Visual C++ can better optimize your applications, and make them more robust. Learn how to incorporate advanced ISO C++ template features in your code. Learn how to optionally incorporate the .NET Framework in to your applications. Then, build your own C++ programs using the Toolkit. You might decide you want to augment the Toolkit with additional free tools from Microsoft, including the Platform SDK, or the .NET Framework SDK. You might also wish to evaluate and upgrade to Visual Studio .NET Professional, which includes many additional tools and features for C++ developers, including a professional debugger and code editor.
code:
1
2
3
| C:\Program Files\Microsoft Visual C++ Toolkit 2003\bin>cl /? Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13.10.3052 for 80x86 Copyright (C) Microsoft Corporation 1984-2002. All rights reserved. |
Versie is iets ouder dan die in m'n Visual Studio (3077) maar voor het geld mag je niet klagen lijkt me