Operating System - OpenVMS
1828708 Members
2288 Online
109984 Solutions
New Discussion

Setting the Build Identifier for images

 
SOLVED
Go to solution
Brian Reiter
Valued Contributor

Setting the Build Identifier for images

Hi there,

Does anybody out there have any clues as to how to set the build identifier for executables? I know its an undocumented feature but in conjunction with the version identifier it would give us a better way of tracking builds (and associated problems).

regards

Brian
5 REPLIES 5
Kris Clippeleyr
Honored Contributor
Solution

Re: Setting the Build Identifier for images

Brian,

You need to link the image with an OPTIONS file. In that file you put the following lin(s):

IDENTIFICATION="whatever_you_like1"
BUILD_IDENTIFICATION="whatever_you_like2"

These strings will then show up when you do an ANALYZE/IMAGE, in the sections "image file identification" and "image file build identification"

Hope this helps,
Kris (aka Qkcl)
I'm gonna hit the highway like a battering ram on a silver-black phantom bike...
Brian Reiter
Valued Contributor

Re: Setting the Build Identifier for images

Thanks Kris,

Should have just tried it to see what happened :). Not documented as far as I can see.

many thanks


Brian
Karl Rohwedder
Honored Contributor

Re: Setting the Build Identifier for images

Check the linker manual at
http://h71000.www7.hp.com/doc/73final/documentation/pdf/OVMS_73_LINKER_UTIL.PDF
which contains a table with linker options.

mfg Kalle
Brian Reiter
Valued Contributor

Re: Setting the Build Identifier for images

Checked 7-3-1 linker docs and never spotted the BUILD_IDENT. Never mind it all works now (all I've got to do is clean things upa little).
Brian Reiter
Valued Contributor

Re: Setting the Build Identifier for images

Thanks for your help folks. Nice and straight forward solution.