1752805 Members
5544 Online
108789 Solutions
New Discussion юеВ

image identification

 
SOLVED
Go to solution
sujit prasad
Occasional Contributor

image identification

I am new to open vms. I want to set the image identification using the link command. But somehow I am unable to do so. Need help.
3 REPLIES 3
John McL
Trusted Contributor
Solution

Re: image identification

See the Linker manual section about Linker Options files.

Off the top of my head I think it's just
a matter of having a line
IDENTIFICATION=abcdefg in a file (e.g. MY_LINK.OPT) and then a Link command $ LINK ,MY_LINK.OPT/OPT

Kris Clippeleyr
Honored Contributor

Re: image identification

Hi,

You have to specify an options file as input to the linker. In that options file, use the "IDENTIFICATION" clause.

E.g.:
$ type qjpi.opt
!
IDENTIFICATION="QJPI V2.4"
!
$ link/exe=qjpi.exe -
$_ qjpi.olb/libr/incl=qjpi,qjpi.opt/options

Hope this helps.
Kris (aka Qkcl)
I'm gonna hit the highway like a battering ram on a silver-black phantom bike...
sujit prasad
Occasional Contributor

Re: image identification

.