| Topic: |
DEVELOP > c-Plus-Plus |
| User: |
"SimonYingling" |
| Date: |
04 Dec 2004 03:44:40 PM |
| Object: |
What compilier for Windows? |
I'm a young programmer, but definitly see my self doing this for the
rest of my life. I'm 15 and into C++. I was wondering if a good
compilier for Windows would be Visual C++ 6.0. I have used Dev C++ and
Turbo C++ (at school =x) and am lucking into a better compilier now
that I have money to spend. Any comments are accepted, even if they
are for a different compilier. Thank you in advance.
.
|
|
| User: "le ténébreux" |
|
| Title: Re: What compilier for Windows? |
04 Dec 2004 04:21:49 PM |
|
|
(SimonYingling) wrote:
I'm a young programmer, but definitly see my self doing this for the
rest of my life. I'm 15 and into C++. I was wondering if a good
compilier for Windows would be Visual C++ 6.0. I have used Dev C++ and
Turbo C++ (at school =x) and am lucking into a better compilier now
that I have money to spend. Any comments are accepted, even if they
are for a different compilier. Thank you in advance.
If you go for VC++ 6, make sure you get the Professional edition.
When you buy the Standard edition, you install it then discover
that the compiler optimizations have been helpfully disabled by M$.
.
|
|
|
|
| User: "Matthias =?ISO-8859-1?Q?K=E4ppler?=" |
|
| Title: Re: What compilier for Windows? |
05 Dec 2004 03:40:38 AM |
|
|
SimonYingling wrote:
I'm a young programmer, but definitly see my self doing this for the
rest of my life. I'm 15 and into C++. I was wondering if a good
compilier for Windows would be Visual C++ 6.0. I have used Dev C++ and
Turbo C++ (at school =x) and am lucking into a better compilier now
that I have money to spend. Any comments are accepted, even if they
are for a different compilier. Thank you in advance.
Just curious: Since Dev-C++ is not a compiler but an IDE, and uses a gcc
Windows port called "Minimalist GNU for Win32" (mingw32), in how far do you
feel the MS compiler would be better?
In fact, my advise would be to NOT start off with a MS compiler when you're
a beginner. You will get used to all those Microsoft specific extensions,
and if you some day want to port your programs you'll have a hard time.
Regards,
Matthias
.
|
|
|
| User: "Ioannis Vranos" |
|
| Title: Re: What compilier for Windows? |
05 Dec 2004 12:36:01 PM |
|
|
Matthias Käppler wrote:
Just curious: Since Dev-C++ is not a compiler but an IDE, and uses a gcc
Windows port called "Minimalist GNU for Win32" (mingw32), in how far do you
feel the MS compiler would be better?
In fact, my advise would be to NOT start off with a MS compiler when you're
a beginner. You will get used to all those Microsoft specific extensions,
and if you some day want to port your programs you'll have a hard time.
Dev-C++ is OK to learn ISO C++. Also nowadays, VC++ is not suitable for
beginners to learn C++ but is oriented to experienced developers to
create Windows (.NET) software fast.
--
Ioannis Vranos
http://www23.brinkster.com/noicys
.
|
|
|
| User: "Duane" |
|
| Title: Re: What compilier for Windows? |
06 Dec 2004 08:56:20 AM |
|
|
"Ioannis Vranos" <ivr@remove.this.grad.com> wrote in message news:1102271760.415879@athnrd02...
Dev-C++ is OK to learn ISO C++. Also nowadays, VC++ is not suitable for
beginners to learn C++ but is oriented to experienced developers to
create Windows (.NET) software fast.
How so? We do most of our development these days with VC++/Qt.
No .Net at all. No MFC. No managed stuff.
The IDE is OK and the dinkumware libs work fine.
You're not forced to do any .Net or managed stuff. The first setting to
change in the IDE is to disable managed extensions. You can then
build console apps or win32 apps.
.
|
|
|
| User: "Ioannis Vranos" |
|
| Title: Re: What compilier for Windows? |
06 Dec 2004 12:22:48 PM |
|
|
Duane wrote:
How so? We do most of our development these days with VC++/Qt.
No .Net at all. No MFC. No managed stuff.
I did not say you couldn't do the above. What I said is that it takes
more effort (because it is needed to create a project) to write a "hello
world" program in VC++ 7.1 than in Dev-C++ (where you just create a
..cpp file and hit Compile).
By the way I heard that the latest version of QT supports .NET. :-)
The IDE is OK and the dinkumware libs work fine.
You're not forced to do any .Net or managed stuff. The first setting to
change in the IDE is to disable managed extensions. You can then
build console apps or win32 apps.
I did not say you couldn't do the above.
--
Ioannis Vranos
http://www23.brinkster.com/noicys
.
|
|
|
| User: "Duane" |
|
| Title: Re: What compilier for Windows? |
06 Dec 2004 01:59:02 PM |
|
|
"Ioannis Vranos" <ivr@remove.this.grad.com> wrote in message news:1102357367.19255@athnrd02...
I did not say you couldn't do the above. What I said is that it takes
more effort (because it is needed to create a project) to write a "hello
world" program in VC++ 7.1 than in Dev-C++ (where you just create a
.cpp file and hit Compile).
I'd have to agree with that.
By the way I heard that the latest version of QT supports .NET. :-)
We're using 3.3 and it doesn't but I think the 4.0 will. As I say, we don't
currently use .NET stuff so I haven't paid much attention to it yet.
.
|
|
|
| User: "Ioannis Vranos" |
|
| Title: Re: What compilier for Windows? |
06 Dec 2004 02:20:03 PM |
|
|
Duane wrote:
We're using 3.3 and it doesn't but I think the 4.0 will. As I say, we don't
currently use .NET stuff so I haven't paid much attention to it yet.
And by the way, you do not need to disable managed extensions to compile
a Win32, ISO C++ or other unmanaged code in VC++.
--
Ioannis Vranos
http://www23.brinkster.com/noicys
.
|
|
|
| User: "Duane" |
|
| Title: Re: What compilier for Windows? |
06 Dec 2004 03:05:49 PM |
|
|
"Ioannis Vranos" <ivr@remove.this.grad.com> wrote in message news:1102364403.480666@athnrd02...
And by the way, you do not need to disable managed extensions to compile
a Win32, ISO C++ or other unmanaged code in VC++.
Not if you don't mind a simple "hello world" program taking
15 seconds to complete...
.
|
|
|
|
|
|
|
|
| User: "20thCenturyBoy" |
|
| Title: Re: What compilier for Windows? |
05 Dec 2004 08:04:14 PM |
|
|
Ioannis Vranos <ivr@remove.this.grad.com> wrote in message news:<1102271760.415879@athnrd02>...
Matthias Käppler wrote:
Just curious: Since Dev-C++ is not a compiler but an IDE, and uses a gcc
Windows port called "Minimalist GNU for Win32" (mingw32), in how far do you
feel the MS compiler would be better?
In fact, my advise would be to NOT start off with a MS compiler when you're
a beginner. You will get used to all those Microsoft specific extensions,
and if you some day want to port your programs you'll have a hard time.
Dev-C++ is OK to learn ISO C++. Also nowadays, VC++ is not suitable for
beginners to learn C++ but is oriented to experienced developers to
create Windows (.NET) software fast.
I disagree. VC++ (2003 edition) is fine for learning C++. Just create
a Win32 console project and you're up and running. I used VC++ with
Accelerated C++ with no problem. To turn off MS extensions just use
the /Za switch.
--
Martin
.
|
|
|
|
| User: "Matthias =?ISO-8859-1?Q?K=E4ppler?=" |
|
| Title: Re: What compilier for Windows? |
05 Dec 2004 01:53:24 PM |
|
|
Ioannis Vranos wrote:
Dev-C++ is OK to learn ISO C++.
The point is, Dev-C++ is not a compiler, it's an IDE. Therefore, it doesn't
really have anyting to do with the "learning factor". In fact, it would
actually be best to start off with a bare text editor and a command line
compiler instead of a fully fledged IDE. It only hides those things from
you which you have to learn some day anyway.
Also nowadays, VC++ is not suitable for
beginners to learn C++ but is oriented to experienced developers to
create Windows (.NET) software fast.
My thoughts.
Regards,
Matthias
.
|
|
|
|
|
| User: "Mike Smith" |
|
| Title: Re: What compilier for Windows? |
06 Dec 2004 01:17:48 PM |
|
|
Matthias Käppler wrote:
SimonYingling wrote:
I'm a young programmer, but definitly see my self doing this for the
rest of my life. I'm 15 and into C++. I was wondering if a good
compilier for Windows would be Visual C++ 6.0. I have used Dev C++ and
Turbo C++ (at school =x) and am lucking into a better compilier now
that I have money to spend. Any comments are accepted, even if they
are for a different compilier. Thank you in advance.
Just curious: Since Dev-C++ is not a compiler but an IDE, and uses a gcc
Windows port called "Minimalist GNU for Win32" (mingw32), in how far do you
feel the MS compiler would be better?
Given that the guy is a beginner, he may not understand the difference
between a compiler and an IDE. Maybe it would be better to explain the
difference than to browbeat the poor guy?
--
Mike Smith
.
|
|
|
| User: "Matthias =?ISO-8859-1?Q?K=E4ppler?=" |
|
| Title: Re: What compilier for Windows? |
06 Dec 2004 02:22:56 PM |
|
|
Mike Smith wrote:
Given that the guy is a beginner, he may not understand the difference
between a compiler and an IDE. Maybe it would be better to explain the
difference than to browbeat the poor guy?
I'm not browbeating him. I'm just wondering why he seems to take it as given
that Borland and MS are better than anything else out there. I just wanted
to *subtly* tell him that the big ones are not necessarily the best ones.
(to original poster):
An IDE (Integrated Development Environment) is basically a set of tools
which form a complete programming environment for a given language. Like
Microsoft's Visual Studio. The compiler is just the backend which
translates a given language to another one (usually to machine code or some
form of intermediate language).
Regards,
Matthias
.
|
|
|
|
|
|
| User: "Ioannis Vranos" |
|
| Title: Re: What compilier for Windows? |
04 Dec 2004 04:39:20 PM |
|
|
SimonYingling wrote:
I'm a young programmer, but definitly see my self doing this for the
rest of my life. I'm 15 and into C++. I was wondering if a good
compilier for Windows would be Visual C++ 6.0. I have used Dev C++ and
Turbo C++ (at school =x) and am lucking into a better compilier now
that I have money to spend. Any comments are accepted, even if they
are for a different compilier. Thank you in advance.
The latest version of Visual Studio is 2003.
--
Ioannis Vranos
http://www23.brinkster.com/noicys
.
|
|
|
| User: "chq" |
|
| Title: Re: What compilier for Windows? |
04 Dec 2004 09:14:31 PM |
|
|
Try Visual C++ 2003 Toolkit, it's free. You can obtain it at M$ website.
.
|
|
|
| User: "Mike Smith" |
|
| Title: Re: What compilier for Windows? |
06 Dec 2004 01:16:33 PM |
|
|
chq wrote:
Try Visual C++ 2003 Toolkit, it's free. You can obtain it at M$ website.
It also has no IDE, which may not be what the OP is looking for.
--
Mike Smith
.
|
|
|
|
|
|
| User: "EventHelix.com" |
|
| Title: Re: What compilier for Windows? |
04 Dec 2004 09:15:28 PM |
|
|
You can download the Visual C++ compiler for free from:
http://msdn.microsoft.com/visualc/vctoolkit2003/
Microsoft Visual C++ Toolkit 2003 includes the optimizing compiler
included with VC++ 2003.
Deepa
--
http://www.EventHelix.com/EventStudio
EventStudio 2.5 - Generate Sequence Diagrams in PDF and MS-Word
.
|
|
|
|

|
Related Articles |
|
|