vote up 1 vote down star

I want to use a recent MS C++ compiler (I need TR1) with old IDE (Visual C 6.0). I heard that I can download free command line MS C++ compiler only. Is it possible? Can I use new compiler with old IDE? If so what additional problems may arise?

I want to keep VS6 cause I'm familiar with it. I want to use MS implementation of TR1 cause I expect it to be faster than Boost.

flag

Explaining why you want to do this will help answer the question. – Richard Feb 22 at 12:32

3 Answers

vote up 4 vote down check

You can actually download a free version of the new IDE, the Express Edition. It has a few limitations compared to the non-free versions (e.g. no plugin support) but for most applications it's still vastly superior to VS6.

link|flag
+1, bite the bullet now and learn the new VS, MS put alot of effort in to making it easier for both VB and C++ developers to upgrade – Patrick McDonald Feb 22 at 12:43
vote up 0 vote down

Visual Studio versions will install side by side quite happily.

Just avoid double clicking on solution files (this will open the latest), instead open from the correct version.

link|flag
vote up 0 vote down

Have you considered using Boost.TR1?

link|flag
I thought that MS implementation is faster. Is it really so? – Muxecoid Feb 22 at 12:34
I don't know of any performance benchmarks, but Boost.TR1 can be configured to use the native TR1 if it is available (by defining BOOST_HAS_TR1, I believe). That way you can use the boost implementation until you are able to switch to a version of VC++ which has TR1 without much effort. – Ferruccio Feb 22 at 12:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.