in reply to Re: Inline::C and Dist::Zilla
in thread Inline::C and Dist::Zilla
When is the libgcc_s dependency even necessary? Gcc documents the -static-libgcc option, while saying:
There are several situations in which an application should use the shared libgcc instead of the static version. The most common of these is when the application wishes to throw and catch exceptions across different shared libraries. ...
Also, if a module depends on some small and obscure library, it might be preferable to static link with that. A la
(Mind you, this is all from the linux perspective.)$ make foobar LDFLAGS='-lthis -lthat -Wl,-dn,-lobscure,-dy'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Inline::C and Dist::Zilla
by syphilis (Archbishop) on Nov 14, 2014 at 23:48 UTC |