You are here

C++ compilers

10 posts / 0 new
Last post
Jacob Mastel
Offline
Last seen: 3 years 7 months ago
Developer
Joined: 2007-06-13 19:36
C++ compilers

I've started to teach myself C++, went out bough the book and all that fun stuff. But I haven't found a good compiler for it. I need a free, not necessarily open source C++ compiler. Does Visual C++ compiler make it's app need the .net framework? If not I can use that if there's nothing else.

John Bentley
John Bentley's picture
Offline
Last seen: 14 years 9 months ago
Developer
Joined: 2006-01-24 13:26
VC++ Express

Try Visual C++ Express.

Just make sure you start the project as a Win32 program.

You will also want to statically link the VC++ runtimes. I've forgotten how to do that atm, sorry.

cowsay Moo
cowthink 'Dude, why are you staring at me.'

m2
Offline
Last seen: 13 years 3 months ago
Joined: 2006-12-12 12:00
I also suggest VC++. Would be

I also suggest VC++.
Would be best if you could find VC6. It generates the smallest code among all popular C++ compilers ever and you surely won't go into any trouble with .NET - it's one generation too old. Biggrin
Also, it's runtime libraries come as standard at least since w2k.
About statical linking - I disagree.
Program+runtime dlls is much bigger than program with statically linked whatever's needed. But dlls are shared and therefore user can have 1 copy for all programs=less space+faster startup+lower total memory usage. I do this since forever and never had any issues with Dll Hell, VC runtimes seem to have good backwards compatibility.

"Those people who think they know everything are a great annoyance to those of us who do." Asimov

digitxp
digitxp's picture
Offline
Last seen: 12 years 8 months ago
Joined: 2007-11-03 18:33
Don't you

have a local library with a good hardy C++ for Dummies???

Insert original signature here with Greasemonkey Script.

Jacob Mastel
Offline
Last seen: 3 years 7 months ago
Developer
Joined: 2007-06-13 19:36
lol

That's the book I bought.

Release Team Member

digitxp
digitxp's picture
Offline
Last seen: 12 years 8 months ago
Joined: 2007-11-03 18:33
So

why didn't you just borrow it? I think 3 months is plenty of lending time Wink

Insert original signature here with Greasemonkey Script.

Jacob Mastel
Offline
Last seen: 3 years 7 months ago
Developer
Joined: 2007-06-13 19:36
My libarary...

In order to try to get more money out of taxes the federal officials have pretty much shutdown the library. It's only open for like 2 hours 3 times a week. Monday, Wednesday, Friday: 11am to 1pm. Except on wednesday it's open to 2pm. My problem: can't get there at that time.

Release Team Member

digitxp
digitxp's picture
Offline
Last seen: 12 years 8 months ago
Joined: 2007-11-03 18:33
Wow.

I should really appreciate the areas's 30 grand yearly taxes then, should I?

Insert original signature here with Greasemonkey Script.

Ed_P
Offline
Last seen: 5 years 7 months ago
Joined: 2007-02-19 09:09
Check these out

Ed

PieterK
PieterK's picture
Offline
Last seen: 13 years 11 months ago
Joined: 2007-07-17 15:07
Codeblocks + Mingw

Check out Codeblocks with the Mingw compiler. They are both open source.
You can find it here. Just download "codeblocks-8.02mingw-setup.exe" from there and install it. It will install the mingw compiler and get you going. Good luck! *me is off on a holiday now*

Optimism is a moral duty - Karl R. Popper

Log in or register to post comments