>>The shared libraries themselves still
>>have a dependency on libgcc_s.so:
>>
>> $ ldd libwx_gtk2ud_fwb_core-2.9.so.0 | grep gcc
>> libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb6ee8000)
>
>you can use the -nodefaultlibs and manually add what you want.
>e.g. you can link a static stlport with stat
6/6/2008, "Arne Steinarson" <[EMAIL PROTECTED]> napisał/a:
>The shared libraries themselves still
>have a dependency on libgcc_s.so:
>
> $ ldd libwx_gtk2ud_fwb_core-2.9.so.0 | grep gcc
> libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb6ee8000)
you can use the -nodefaultlibs and manually add what yo
Hello,
Working with putting together a Linux installer for an app (to work on
various Linux
versions), I got problems with libgcc_s.so (if distribution is not
based on gcc 4.x the app
won't start).
I wanted to remove dynamic linking to any C++ library (that is outside
of the installer).
The situ