A Good Free Compiler

  • Thread starter Magnus.Moraberg
  • Start date
M

Magnus.Moraberg

Hi,

What compiler would you recommend someone who is learning C++. I work
on Windows Xp at work and I have a Mac (Os X) at home.

I would like a compiler that has a GUI/Text Editor type interface, but
I would also like to learn more about linkage etc.

Thanks,

Barry.
 
J

Jim Z. Shi

Hi,

What compiler would you recommend someone who is learning C++. I work
on Windows Xp at work and I have a Mac (Os X) at home.

I would like a compiler that has a GUI/Text Editor type interface, but
I would also like to learn more about linkage etc.

Thanks,

Barry.
eclipse CDT + g++ may help on both Win/Mac platform.

HTH,
Jim
 
P

Pascal J. Bourguignon

What compiler would you recommend someone who is learning C++. I work
on Windows Xp at work and I have a Mac (Os X) at home.

GNU cc works as well on MS-Windows than on MacOSX (and includes C,
C++, Objective-C and some other languages).

You can easily get GNU cc along with the cygwin package on MS-Windows (http://www.cygwin.com).
It comes with the developers tools on MacOSX (downloadable for free from http://www.apple.com).
I would like a compiler that has a GUI/Text Editor type interface, but

Lucky guy! GNU cc comes with its own GNU emacs IDE.

I would also like to learn more about linkage etc.

Of course. Mind GNU ld, it comes along GNU cc.
 
A

AnonMail2005

Hi,

What compiler would you recommend someone who is learning C++. I work
on Windows Xp at work and I have a Mac (Os X) at home.

I would like a compiler that has a GUI/Text Editor type interface, but
I would also like to learn more about linkage etc.

Thanks,

Barry.
Microsoft has "express" editions of it's compiler/IDE free for
download.

HTH
 
M

Magnus.Moraberg

GNU cc works as well on MS-Windows than on MacOSX (and includes C,
C++, Objective-C and some other languages).

You can easily get GNU cc along with the cygwin package on MS-Windows (http://www.cygwin.com).
It comes with the developers tools on MacOSX (downloadable for free fromhttp://www.apple.com).


Lucky guy!  GNU cc comes with its own GNU emacs IDE.  


Of course.  Mind GNU ld, it comes along GNU cc.

Hi again,

I've installed Cygwin and g++ works on the command prompt. Emacs also
works on the Command Prompt, but I'd like a nice GUI app to work
within. Any advice?

Thanks,

Barry.
 
P

Pascal J. Bourguignon

Hi again,

I've installed Cygwin and g++ works on the command prompt. Emacs also
works on the Command Prompt, but I'd like a nice GUI app to work
within. Any advice?

Ah, it seems cygwin is in a state of flux. Cygwin-X needs a
maintainer, and most XFree86 packages are removed from cygwin. There
remains some X packages in cygwin, but I don't know if that includes a
working X server.

Anyways, six month ago I installed cygwin-X without a problem, so it
should still work, I'd hope.

Then choose emacs-X11 rather than the plain emacs package. This will
give you the GUI version of emacs.

Then you can launch X11, and typing emacs in the xterm should launch
the GUI version of emacs. (It has nice menus and toolbars, and the
customization is more easily done with the mouse).


Unfortunately, at the moment I cannot compile emacs with the X11 GUI
on MacOSX 10.5. But there, you should probably better use Xcode,
which nice, or use Aquamacs, which is emacs with the Mac GUI.
 
J

James Kanze

GNU cc works as well on MS-Windows than on MacOSX (and
includes C, C++, Objective-C and some other languages).
You can easily get GNU cc along with the cygwin package on
MS-Windows (http://www.cygwin.com).

The cygwin package doesn't always work that well. For a Unix
toolkit, the best free one I've found is UWin. (Many, many
years back, I used the MKS toolkit under MS-DOS, and was very
pleased with it. But MKS seems to have priced it out of reach
today.)

Long term, of course, you do need some sort of toolkit under
Windows, because the system doesn't come with anything usable.
For starting, however, it's probably not that necessary.
It comes with the developers tools on MacOSX (downloadable for
free fromhttp://www.apple.com).
Lucky guy! GNU cc comes with its own GNU emacs IDE.

GNU cc (i.e. gcc) doesn't come with anything for emacs other
than a .el file for reporting bugs. Cygwin comes with emacs,
but you can also install emacs (or better yet, gvim)
independantly. Installing any of these tools, however, does
require some knowledge of how Windows organizes things, in order
to set the necessary path variables, etc. For that, you're
better off installing CygWin, which does take care of that
aspect for you (not optimally, but adequately for simple
things).

Having said that, if he's just starting, a classical IDE might
be preferable; there's no point in having to learn makefile's at
the same time you're learning the language. (In any industrial
use, of course, you'll quickly run up against the limits of the
IDE, and end up writing your own makefiles anyway. In which
case, GNU make is an order of magnitude more powerful than any
of the other make's I've seen.)
 
K

kwikius

Alf said:
* (e-mail address removed):

g++ is available for both your systems.


Best way to learn C++ is to try writing a compiler for it yourself

I did ... :)


regards
Andy Little
 
J

Jorgen Grahn

They're not that closely related. I don't think emacs is aware of gcc
at all.

Note that you never call ld directly, you tell g++ to perform a
linking step.
I've installed Cygwin and g++ works on the command prompt. Emacs also
works on the Command Prompt, but I'd like a nice GUI app to work
within. Any advice?

I would have chosen the Mac for learning C++, but ...

On Windows, don't bother with the Cygwin version of emacs. There is
a pure Windows version available, which is as nice as the Unix/X11
version.

Unfortunately, you need a good editor like Emacs, but Emacs takes time
and effort to make the most of. As a very, very quick first tip,
add this to your ~/.emacs:

(setq default-tab-width 8)
(c-set-style "k&r")
(setq c-basic-offset 4)
(line-number-mode 't)
(setq default-major-mode 'text-mode)
(global-font-lock-mode)
(global-set-key [C-tab] 'dabbrev-expand)

I could have pointed you to some Windows-only IDE, but Emacs is
available *everywhere*, useful for *all* text editing, and will
probably still exist when we are all dead. Whatever you learn now
will still be useful in twenty years.

/Jorgen
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,540
Members
45,025
Latest member
KetoRushACVFitness

Latest Threads

Top