Re: Sticking with Visual C++ Version 6
- From: Michael Mair <Michael.Mair@xxxxxxxxxxxxxxx>
- Date: Thu, 28 Sep 2006 10:35:47 +0200
pkirk25 wrote:
I've been playing with C in the evenings for a week now and any
problems I have will not be solved by moving to a newer compiler.
Thanks for the advice and for the chance to try out a few different
options.
You seemed to look more for an IDE than another compiler.
One recommendation: Turn up the warning level and disable MS extensions.
If your programme does not do what you expect but the compiler issues
no diagnostics, try compiling with gcc on a reasonable warning level,
e.g.
gcc -std=c89 -pedantic -Wall -O myprog.c -c
(the -c will suppress linking).
You can do this either using mingw (which is what Bloodshed uses IIRC)
or via Cygwin (installing Cygwin just for gcc may a little bit much,
though).
Some problems will not be caught by the above; then you can use splint
or other lint programmes.
Cheers
Michael
--
E-Mail: Mine is an /at/ gmx /dot/ de address.
.
- References:
- Which compiler for a learner of C?
- From: pkirk25
- Sticking with Visual C++ Version 6
- From: pkirk25
- Which compiler for a learner of C?
- Prev by Date: Re: Which compiler for a learner of C?
- Next by Date: Re: double pointer
- Previous by thread: Sticking with Visual C++ Version 6
- Next by thread: Re: Which compiler for a learner of C?
- Index(es):
Relevant Pages
|