Using the VC++ 2003 Toolkit with Visual C++ .NET 2003 Standard Edition

Z

zorro

Hi,

I use the Visual C++ .NET 2003 Standard Edition which doesn't include an
optimizing compiler. But Microsoft released the VC++ 2003 Toolkit
(http://msdn.microsoft.com/visualc/vctoolkit2003/) which provides an
optimizing compiler. Is it possible to replace the original "Standard"
compiler with this one ?

How could I do this ?

Thanks for your help,
Denis
 
C

Carl Daniel [VC++ MVP]

zorro said:
Hi,

I use the Visual C++ .NET 2003 Standard Edition which doesn't include
an optimizing compiler. But Microsoft released the VC++ 2003 Toolkit
(http://msdn.microsoft.com/visualc/vctoolkit2003/) which provides an
optimizing compiler. Is it possible to replace the original "Standard"
compiler with this one ?

How could I do this ?

I haven't tried it, and it isn't supported, but all you should need to do is
drop the files from .../vc7/bin from the VC++ toolkit into the corresponding
location in VC++ Standard edition. I'm certain that you'd need c2.dll,
since that's the compiler backend where the optimizer is implemented, but
I'd just go ahead and copy the entire directory.

-cd
 
Z

zorro

zorro said:
I haven't tried it, and it isn't supported, but all you should need to do is
drop the files from .../vc7/bin from the VC++ toolkit into the corresponding
location in VC++ Standard edition. I'm certain that you'd need c2.dll,
since that's the compiler backend where the optimizer is implemented, but
I'd just go ahead and copy the entire directory.

-cd

Thank you, I'll try.

Denis
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top