In one particular project, we're trying to embed version information into shared object files. We'd like to be able to use some standard linux tool to parse the shared object to determine the version for automated testing. Currently I have "const int plugin_version = 14;". I can use 'nm' and 'objdump' and verify that it's there:In one particular project, we're trying to embe