Be a Supporter!

Complier

  • 516 Views
  • 7 Replies
New Topic Respond to this Topic
Squall-01
Squall-01
  • Member since: Nov. 5, 2003
  • Offline.
Forum Stats
Member
Level 02
Blank Slate
Complier 2004-10-06 11:50:29 Reply

Does any know where to get a complier for C++

W35
W35
  • Member since: Oct. 14, 2003
  • Offline.
Forum Stats
Member
Level 40
Blank Slate
Response to Complier 2004-10-06 12:56:38 Reply

Usually it would come with one...

Try the microsoft site

duh


BBS Signature
LordAba
LordAba
  • Member since: Nov. 2, 2000
  • Offline.
Forum Stats
Member
Level 10
Blank Slate
Response to Complier 2004-10-06 14:15:24 Reply

At 10/6/04 12:56 PM, WESMAN_00 wrote: Usually it would come with one...

Ummm... Usually a compiler would come with one of what? I don't know if you know what you are talking about....

Anyways, there is the Microsoft Visual C++ .NET compiler, but that might be too much/too expensive for you. You could also try looking at Borland's website, they make a good compiler.
As for free ones there are some around. I'm sure the other will chime in and let you know about them: I just stick with my copy of MSVC++ 6.0 for C++


What may man within him hide, though angel on the outward side.

BBS Signature
W35
W35
  • Member since: Oct. 14, 2003
  • Offline.
Forum Stats
Member
Level 40
Blank Slate
Response to Complier 2004-10-06 15:41:27 Reply

At 10/6/04 02:15 PM, Lord_Aba wrote:
Ummm... Usually a compiler would come with one of what? I don't know if you know what you are talking about....

I meant C++ usually comes with a compiler


BBS Signature
Chrisso
Chrisso
  • Member since: Oct. 30, 2001
  • Offline.
Forum Stats
Member
Level 08
Blank Slate
Response to Complier 2004-10-06 16:17:20 Reply

C++ is a language. No compiler is "included". You can learn a language without compiling it once. That's like somebody asking for a pencil, and you reply "It won't come with a notebook."

Taylor
Taylor
  • Member since: Aug. 19, 2003
  • Offline.
Forum Stats
Member
Level 09
Blank Slate
Response to Complier 2004-10-06 18:11:26 Reply

Digital Mars... google it

Ravens-Grin
Ravens-Grin
  • Member since: Jun. 3, 2003
  • Offline.
Forum Stats
Member
Level 05
Blank Slate
Response to Complier 2004-10-06 20:50:06 Reply

At 10/6/04 02:15 PM, Lord_Aba wrote: Anyways, there is the Microsoft Visual C++ .NET compiler, but that might be too much/too expensive for you.

Actually you can get the compiler for free, not just the IDE. Look on microsoft's website for net toolkit.

BrianSexton
BrianSexton
  • Member since: Feb. 17, 2004
  • Offline.
Forum Stats
Member
Level 23
Blank Slate
Response to Complier 2004-10-06 22:57:58 Reply

What platform are you using?

If you are using GNU/Linux, you probably already have GCC; just type "gcc" from a command line to use it. Many distributions also include additional developer tools such as KDevelop, which is part of the K Desktop Environment (a.k.a. "KDE").

http://kdevelop.kde.org/

If you are using Mac OS X, you can install GCC from your developer tools CD. Once you do that, you can use it as under GNU/Linux or you can use an IDE such as Xcode.

http://www.apple.com/macosx/features/xcode/

If you are using Windows, you have a few options, but the easiest is probably Dev-C++, which bundles a compiler (MinGW) with an IDE.

http://www.bloodshed.net/

If you just want MinGW without an IDE, you can get it from http://www.mingw.org/.

I hope you find some of this information more useful than what can be found in most of the other posts around here.