Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C++ ライブラリを作成するために使用されるすべての C++ クラス名 (または少なくともファイル名) を見つける方法はありますか? すべてのメソッドを検索する「nm」コマンドに似ています。
ありがとう。
You can try this:
objdump <library> --dwarf=pubtypes
It gives all class names in my case.
There are other options you can pass along the --dwarf parameter so you can look that up too if is helps.
--dwarf