2

入力の1つとして静的ライブラリ(.a)を使用してNDK共有ライブラリを構築しています。静的ライブラリには、GDB形式のデバッグ情報があります。デバッグ情報は最終的に.SOになりますか?どうすれば確認できますか?

4

1 に答える 1

6

Yes it does. The final step of NDK build is copying the .so file from obj directory to lib, stripping the symbols on the way. You can see how much smaller the file gets in lib/armeabi.

于 2012-10-10T20:44:59.487 に答える