GCC 3.4.3 and GCC 4.1.2

A

ashnin

Hi,

Please clarify my doubt.

My source dir contains combination of C and C++ files
If I compile it using gcc 3.4.3 version, it works fine with some easy
warnings which I can clear.

But if I compile it using gcc 4.1.2 it throws a warning for each .cpp
file I compile, which I could not clear

"cc1plus: warning: command line option "-Wdeclaration-after-statement"
is valid for C/ObjC but not for C++"

What is the difference between both the compilation? Why is it
throwing this warning when using gcc 4.1.2? How to avoid this? Is this
anything to do with the specs file?

Regards
ashnin
 
M

Michael DOUBEZ

ashnin a écrit :
Please clarify my doubt.

I thought the answer you got earlier was clear enough.
My source dir contains combination of C and C++ files
If I compile it using gcc 3.4.3 version, it works fine with some easy
warnings which I can clear.

But if I compile it using gcc 4.1.2 it throws a warning for each .cpp
file I compile, which I could not clear

"cc1plus: warning: command line option "-Wdeclaration-after-statement"
is valid for C/ObjC but not for C++"
>
What is the difference between both the compilation? Why is it
throwing this warning when using gcc 4.1.2?

I guess that gcc 3.4.3 silently disabled this warning in the case of C++
file while 4.1.2 issues a warning.
How to avoid this?

Remove -Wdeclaration-after-statement from the compilation option in your
build system for c++ files.
Is this anything to do with the specs file?

I guess someone considered that declarations-mixed-with-execution is bad
style. If you are using Makefile, hunt for it with a good grep.
 

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
474,438
Messages
2,571,699
Members
48,796
Latest member
Greg L.
Top