We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can abi-dumper only dump the ABI for a list of header files which we are concerned about? For example, target_file:
a.h b.h
cmd:
abi-dumper liba.so -header-list target_file
And then the output dump file only contains the ABI information in a.h and b.h. How can I achieve this?
The text was updated successfully, but these errors were encountered:
There is no such option yet, but you can copy your header files to a temp directory and use -public-headers option:
-public-headers
mkdir ./temp cp -f a.h b.h ./temp abi-dumper liba.so -public-headers ./temp
Sorry, something went wrong.
No branches or pull requests
Can abi-dumper only dump the ABI for a list of header files which we are concerned about?
For example,
target_file:
cmd:
And then the output dump file only contains the ABI information in a.h and b.h.
How can I achieve this?
The text was updated successfully, but these errors were encountered: