0

STLコードがDarwinのBoostダイナミックライブラリに静的にリンクされているように見えるのはなぜですか?

OSXでgcc4.6.1およびtoolset=darwinを使用してBoost1.42/ 1.46.1 / 1.49をビルドすると、結果のライブラリにstd ::basic_string<char>やstdなどの多くのSTLコードが静的に含まれていることがわかります。 :basic_string<wchar_t>。

OS X 10.6.8で構築すると、次の結果が得られます。

% otool -L /usr/local/boost-1.46.1/lib/libboost_system.dylib
boost-1.46.1/lib/libboost_system.dylib:
    libboost_system.dylib (compatibility version 0.0.0, current version 0.0.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.2.11)
    /usr/local/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 1.0.0)

出力に基づいて、'otool -L'libstdc++がライブラリと動的にリンクされていないことは明らかです。比較すると、Ubuntu 12.04 LTSでは、libboost_system.so1.46.1は次のリンクを示しています。

% ldd /usr/local/lib/libboost_system.so
    linux-vdso.so.1 =>  (0x00007fff495ff000)
    librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007fec4edb4000)
    libstdc++.so.6 => /usr/local/lib64/libstdc++.so.6 (0x00007fec4ea82000)
    libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fec4e788000)
    libgcc_s.so.1 => /usr/local/lib64/libgcc_s.so.1 (0x00007fec4e573000)
    libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007fec4e355000)
    libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fec4df98000)
    /lib64/ld-linux-x86-64.so.2 (0x00007fec4f1e4000)

この場合、libstdc++は明らかに動的にリンクされています。OS X側では、これがSTLコードがBoostライブラリに直接含まれていることを私が知っている方法です。

% nm -gfj /usr/local/boost-1.46.1/lib/libboost_system.dylib | c++filt --format=gnu-v3 | egrep "^std::basic_string"
std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_disjunct(char const*) const
std::basic_string<char, std::char_traits<char>, std::allocator<char> >::find_last_of(char const*, unsigned long) const
std::basic_string<char, std::char_traits<char>, std::allocator<char> >::find_last_of(char const*, unsigned long, unsigned long) const
std::basic_string<char, std::char_traits<char>, std::allocator<char> >::find_last_of(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, unsigned long) const
std::basic_string<char, std::char_traits<char>, std::allocator<char> >::find_last_of(char, unsigned long) const
... [180 more lines] ...
4

1 に答える 1

2

一例を挙げると: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::find_last_of(char const*, unsigned long) const

std::basic_string はテンプレート クラスであり、libstdc++.dylib には存在しません。Boostライブラリがコンパイルされたときにインスタンス化され、(正しく)そこに含まれていました-Boost.Systemがそれを使用しているためです。

これは、表示されるすべての呼び出しに当てはまると思います (しかしわかりません)。

于 2012-06-22T21:51:38.870 に答える