Comment 2 for bug 40285

Revision history for this message
Luis Mondesi (lemsx1) wrote :

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.