vote up 0 vote down star

This has just come up as a question where I worked so I did a little digging and the answer is a ExpertsExchange one. So I hand you over to the original question asker, Manchung:

I have a project written in pure C which is to be used in embedded system. So, I use pure C to minimize the code size.

When I compile the project, I use the -ansi flag in order to make sure the code complies with the ANSI standard. However, the down side of using this ansi flag is that I am only allowed to use C styled comments (/*comments */). This is giving me a headache when I need to use nested comments.

So, my question is: what switches/flags can I use to allow me to use C++ styled comments (// comments) while keeping the ANSI checking enabled at the same time?

Thank you all very much!

Which pretty much sums my question up too.

G.

flag

57% accept rate

4 Answers

vote up -4 vote down

C has had C++ style comments for nearly ten years now, maybe you should upgrade?

link|flag
I think we are using gcc 3.x supplied by Wind River for 64bit embedded systems – graham.reeds Nov 10 '08 at 10:10
That's what he's trying to do - upgrade from C89 to C89 with C++-style comments. Given that he said the target is an embedded system, it's unlikely that it has a C99-compliant compiler anyway. Even GCC doesn't implement C99. – Steve Jessop Nov 10 '08 at 11:20
Actually it turns out to be gcc 2.9!! – graham.reeds Nov 10 '08 at 14:12
If the code will only ever need to be compiled on gcc of version 2.9+, there's not much point using the -ansi flag. That stops you using things that other C89 implementations might be lacking, but if that's not a requirement then consider just using the default mode, -std=g89, which does permit //. – Steve Jessop Nov 14 '08 at 13:42
vote up 6 vote down

You can use -lang-c-c++-comments preprocessor to have both ANSI mode and C++-style comments.

gcc -Wp,-lang-c-c++-comments -c source.c
link|flag
That apparently doesn't work according to my colleague. – graham.reeds Nov 10 '08 at 10:10
That's because it's actually a preprocessor flag, so you invoke it like: gcc -Wp,-lang-c-c++-comments -- not directly on the command line. However, if you really want ansi portability then you shouldn't have c++ style comments... :) – Jason Coco Nov 10 '08 at 10:20
i think yours is the definitive answer. – Johannes Schaub - litb Nov 10 '08 at 10:47
vote up 4 vote down

On recent releases of gcc, -ansi is documented as being the same as -std=c89. The new comment syntax is only available with the C99 standard, so -std=c99 would allow it.

There is also -std=gnu89, which is the same as -std=c89 but allowing all gcc extensions (including the C++-style comment syntax, which was a GNU extension long before it was added to the standard).

Also look at the -pedantic flag, which could give you some useful warnings.

References:

link|flag
vote up 2 vote down

If you want to use C++ style comments merely because you want to comment out blocks, and get a headache about nesting /* ... */, you can use this technique:

#if 0
... code ...
#endif

which will actually also do the job.

link|flag
Anything wrong with my answer? Please comment if you downvote. You cannot nest C-Style comments, and C++ style comments are not valid in C++89. This #if 0 is pretty much the only way there to do it cleanly if you want to comment out code. – Johannes Schaub - litb Aug 26 at 15:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.