How can I store a version number in a static library (file.a) and later check for its version in Linux?
P.S. I need possibility to check version of file any time without any special executable using only by shell utilities.
|
|
|||||
|
|
|
Creating a new answer based on your edit... Just to avoid confusion :) If you are looking for a non-code way to solve the problem, you could try this. It's (yet again) an alternative to the Maybe you could just touch a file called
I'm not sure if that will get you what you need, but there is no standard method for embedding metadata like this in an archive. Maybe you'll find other information you want to store in this "metafile" for the archive. |
|||
|
|
|
|
In addition to providing a static string as mentioned by Puppe, it is common practice to provide a macro to retrieve the version check for compatibility. For example, you could have the following macros (declared in a header file to be used with your library):
Notice with the Then use it from a calling application, something like:
This approach will cause the version information to come from the included header file. Additionally, it will be optimized at compile time for the calling application. With a little more work, you can extract it from the library itself. Read on... You can also use this information to create a static string stored inside your library, as mentioned by Puppe. Place something like this inside your library:
This will create a struct called |
||||||||
|
|
|
Maybe you could create a string with the version like this:
and to be able to check it from the shell just use:
|
||||||||
|