vote up 2 vote down star

Hello,

I am just wondering why programmers who program in C++ for windows always use Visual Studio 6 instead of Visual Studio 2008?

Isn't the compiler in 2008 much better than the one in VS6?

The reason I ask as I have used many sdk's that are always written in VS6?

Many thanks,

Steve

flag

60% accept rate
1  
stackoverflow.com/questions/733495/… – aJ Oct 7 at 10:30
hoho, it's the same story with delphi 7 – x2 Oct 7 at 10:31
"Isn't the compiler in 2008 much better than the one in VS6?" -- actually, they are both trash. See liranuna.com/sse-intrinsics-optimizations-in-popu… – LiraNuna Oct 7 at 11:01
2  
@LiraNuna: totally irrelevant. Anyone considering VS6 is not at the technical level where SSE matters. – MSalters Oct 7 at 13:59

7 Answers

vote up 0 vote down

:) i am working on VC6 on work and Home both Reasons are :

At work : -> Our legacy code is VC6 based, So no other option then using this.

At Home

-> As from college time i am using this only so i am reluctant to moving to newer ones.

-> i tried 2005 and 2008 and Express Edition , But do not want to use because

-> They are very heavy in term of process and memory , and slow as compare to vc6

-> I believe in simplicity and sensibility , i found newer version are less easy to operate then vc6

link|flag
Well, I believe in simplicity, too, which is why I want to use modern C++ features that reduce the risk of errors. With VC6, which comes with a std lib implementation that doesn't even have member templates, this is nigh impossible. Heck, I don't think there's even a current implementation of shared_ptr out there that will work on VC6! How can you write simple code without all this?! – sbi Oct 8 at 8:47
:) you took my message in wrong way.I just wanted to say at work i don't have any control on choosing any other same would be with you if you are working in a big organization and you have 700 MB legacy code :) . At home i use vc6 when i need to see some thing which is work related otherwise i will use GCC(i hv not mentioned). any thx for your comment – singh Oct 8 at 9:22
I have seen a several MLoC application being dragged from VC6 to VC7.1 to VC8 to VC9. (That was almost a decade.) But that was cross-platform code being compiled on several platforms anyway, which presumably made it easier to port this thing to yet another compiler version. (Well, from VC6 to VC7.1 it was merely removing all the kludges and workarounds necessary for VC6...) – sbi Oct 9 at 10:02
vote up -2 vote down

For project where MSVC compiler quality was really critical, reason is "Managed C++" ;o(

Managed C++, is a painfull episode that everyone wants to forget ... My mole tells me than MSFT is back to "pure" C++ (from the "managed" goose chase) since Win7 started.( And it shows ). MSFT is also back to ATL (with new security related patch). So it is all good times for C++ inside MSFT, and you/us C++ and VS users.

If you are starting a new C++ project, download the latest "express" edition:

http://en.wikipedia.org/wiki/Visual_C%2B%2B#Visual_C.2B.2B_2008_Express

And check that it can compile (and link!) all your C++. Then either proceed using it, on your own desktop or proceed with VS2008 for your team.

VS2010 is very significant for "pure" C++. Ignore the marketing talk about its WPF/WCF roots etc ...It will contain MSVC 10.

--DBJ

link|flag
-1, VC7 did intorduce a managed compiler but it also improved the unmanaged compiler a lot. – MSalters Oct 7 at 12:37
1  
@MSalters: Actually, the C++ language compliance improvements mainly came with VC7.1. Before (and after) that, the compiler team was more focused on .NET - unfortunately. – sbi Oct 7 at 13:18
Er .. actually VC7 did not improve unmanaged c++ at all. The list of simple templates it could not handle is long. Because of VC7.X , MSFT has a tough time convincing developers to drop VS 6. VC10 seems to be the first convincingly ISO C++ compliant compiler released by MSFT, after a (too) long time. – DBJDBJ Oct 16 at 7:39
vote up 3 vote down

Aside from there being a great deal of "legacy" code (as other answers point out) there is a much more direct reason for many projects: dependencies.

The runtime DLL for Visual Studio 6 ships on just about every PC going back to something like Windows 98. It is the only runtime that you can rely on being installed on a user's system, which means you don't necessarily need to ship the runtime DLL with your application. Just copying the executable over should be sufficient (other installation issues notwithstanding).

If you use Visual C++ 2008, you have to worry about shipping the correct version of MSVCR90.DLL, MSVCP90.DLL (and potentially many more), and correctly installing the DLLs using the side-by-side mechanism (which usually means building an msi installer).

I know of at least one browser plugin that relies on this to avoid having to download the runtime on a user's machine, which would effectively double the distribution size.

TL;DR? It's simpler!

link|flag
Isn't this what the "Microsoft Visual C++ 2008 Redistributable Package" does? (Link: microsoft.com/DOWNLOADS/…) – mxp Oct 7 at 11:26
mxp: Yes, but you as a developer have to worry about that your customers have the redistributable package installed, or your installer must trigger installation. It makes things much more complicated. – MP24 Oct 7 at 11:52
interesting point but I don't think anyone will consider huge distribution size as a problem nowadays. You can always use torrents to deliver it to users after all :) – vava Oct 7 at 11:55
Linking everything statically removes any problems with dependencies. – vava Oct 7 at 11:55
1  
@vava Sure, statically linking avoids one issue. But imagine you ship a plugin that is 350kB when dynamically linked. If you (or your customer) is paying for the bandwidth, statically linking will double the size. When you're talking about thousands and thousands of downloads, doubling the size adds cost and time! – gavinb Oct 7 at 19:54
show 2 more comments
vote up 0 vote down

Visual Studio 2008 has compile keys that can ensure compatibility with VS6. So I think reason is that Visual Studio is not free. It cost a lot of money if we are talking about large enough teams.

link|flag
Visual Studio Express is free, with an IDE too. – Evan Teran Oct 7 at 13:42
1  
Express edition has no some important features compared to Standard edition, which is not free. – Kirill V. Lyadvinsky Oct 7 at 14:03
1  
More importantly, you can't use Express Edition to develop commercial software. – vava Oct 7 at 14:57
vote up 10 vote down

Partly it may be because earlier compilers are often (though not always) faster than later, and more feature-rich/standards-compliant, ones. I don't know whether this applies with VC6 vs later, but it may well do.

In the case of VC6 I think the two major factors are that the IDE is much faster to use than any of the painfully slow and greedy Visual Studio 200x IDEs, and that there's a huge amount of legacy code that will not compile with later, and more standards-compliant, VC++ compilers.

link|flag
3  
Good point about the IDE speed. What I'd give for VS6 responsiveness! – Rob Sanders Oct 7 at 10:42
vote up 0 vote down

The only thing I can think of is that Visual Studio 6 doesn't support .Net (C++.Net in particular) and therefore if you are writing something purely in unmanaged code you don't have to deal with project settings which apply to managed code.

Also, some legacy code base may be written with VS6 and they do not want to deal with upgrading the code base to compile under newer editions of Visual Studio. Especially if the code base is large and complex, or has many 3rd party dependencies or is used with old tools (e.g Purify).

A better question would be whether people would start a brand new project with MSVC++ in VS6 or VS 2008...(no legacy issue)

link|flag
What gives with the downvote? Did I say something inherently wrong? – Rob Sanders Oct 7 at 23:37
vote up 10 vote down

It's a legacy thing. Too much code is written in VC6. There was 4 years between it and VS 2003. And it is always painful to drag the code to new compiler so a lot of developers and managers just don't want to do it.

link|flag

Your Answer

Get an OpenID
or

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