tags:

views:

75

answers:

1

Hi! Got the following warning output when using GCC 4.5.0 & MinGW.

Warning: .drectve `-aligncomm:___CTOR_LIST__,2 ' unrecognized
Warning: .drectve `-aligncomm:___DTOR_LIST__,2' unrecognized

What does it mean? I guess it's version-specific, because GCC 4.3.4 under cygwin didn't give that warning on the same project.

If anyone had the following output (just curious that's that about), please advise me what to do.

+3  A: 

Hmmm, Google does wonders:
GCC failure
Broken on Cygwin

The advice, try reloading and rebuilding GCC or load a prior version.

Thomas Matthews