Well, it also happens that this bug goes away when you explicitly add libgcc_s to your binary:
in src/Makefile.am of whatever package:
LDADD = -lpthread -lgcc_s ...
or
packagenamehere_LDADD = -lpthread -lgcc_s ...
After that the warning goes away and everything just works.
Well, it also happens that this bug goes away when you explicitly add libgcc_s to your binary:
in src/Makefile.am of whatever package:
LDADD = -lpthread -lgcc_s ...
or
packagenamehere _LDADD = -lpthread -lgcc_s ...
After that the warning goes away and everything just works.