You can also use elfnote -
You run it against an elf binary (and I presume object/library) to embed a comment within it.
There would be a bit of scripting involved but it should be straight forward engough.
http://www.ibiblio.org/pub/Linux/devel/elfnote-0.0.2.tar.gz
and if you want to port it to solaris, then that would be fab...
Donal.
-----Original Message-----
From: Kenn Humborg [mailto:kenn at linux.ie]
Sent: Thursday, December 14, 2000 12:27 AM
To: Mark Fallon
Cc: ilug at linux.ie
Subject: Re: [ILUG] Confirming versions
On Wed, Dec 13, 2000 at 03:39:24PM -0800, Mark Fallon wrote:
> Hi,
>> I am trying to find a way to identify object files so that I can check
> that all the objects in one archive(library) have the same version.
>> I have looked at using the rcsid tags and ident put these get stripped
> out by the compiler when I use any level of optimisation. Is there any
> way of doing this automatically, and it must be portable so #pragma's
> is not the way to go.
Instead of declaring the string as static (which is convenient because
you can use the same variable name for each string), use a different
name (to keep the linker happy) and remove the static (forces compiler
to emit the string in the .o, because it can't know if it is used by
other .o files):
------ foo.c ------
const char foo_ver[] = "@(#) $Id";
------ bar.c ------
const char bar_ver[] = "@(#) $Id";
Later,
Kenn
--
Irish Linux Users' Group: ilug at linux.iehttp://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
List maintainer: listmaster at linux.ie
Maintained by the ILUG website team. The aim of Linux.ie is to
support and help commercial and private users of Linux in Ireland. You can
display ILUG news in your own webpages, read backend
information to find out how. Networking services kindly provided by HEAnet, server kindly donated by
Dell. Linux is a trademark of Linus Torvalds,
used with permission. No penguins were harmed in the production or maintenance
of this highly praised website. Looking for the
Indian Linux Users' Group? Try here. If you've read all this and aren't a lawyer: you should be!