Linkedit question

2007-06-17 Thread David Lesser
I am linkediting a module which has a few Csects. One of them has a reference to external symbol ABC : V(ABC) . This external symbol no longer exists, and I get an error message from linkage editor that ABC is unresolved. Is there any way to tell the linkage editor to delete external symbol ABC ?

Re: Linkedit question

2007-06-17 Thread Binyamin Dissen
On Sun, 17 Jun 2007 06:15:24 -0500 David Lesser [EMAIL PROTECTED] wrote: :I am linkediting a module which has a few Csects. One of them has a reference :to external symbol ABC : V(ABC) . This external symbol no longer exists, and :I get an error message from linkage editor that ABC is

Re: Linkedit question

2007-06-17 Thread Itschak Mugzach
Try ncal -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Binyamin Dissen Sent: Sunday, June 17, 2007 1:55 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: Linkedit question On Sun, 17 Jun 2007 06:15:24 -0500 David Lesser [EMAIL PROTECTED] wrote: :I

Re: Linkedit question

2007-06-17 Thread john gilmore
From z/OS V1R8.0 MVS Program Management: User’s Guide and Reference, pp. 64-65. Deleting external symbols The REPLACE statement can be used to delete an external symbol. The external symbol can be a named section, a named common area, an entry point, a strong or weak external reference, or a

Re: Linkedit question

2007-06-17 Thread Ed Finnell
In a message dated 6/17/2007 6:54:57 A.M. Central Daylight Time, [EMAIL PROTECTED] writes: If the message is such a big deal, change it to IEFBR14 and include that as well. Or just use NCAL?? ** See what's free at http://www.aol.com.

Re: Linkedit question

2007-06-17 Thread Binyamin Dissen
On Sun, 17 Jun 2007 14:21:39 EDT Ed Finnell [EMAIL PROTECTED] wrote: :In a message dated 6/17/2007 6:54:57 A.M. Central Daylight Time, :[EMAIL PROTECTED] writes: :If the message is such a big deal, change it to IEFBR14 and include that as :well. : :Or just use NCAL?? NCAL will still get a

Re: Linkedit question

2007-06-17 Thread Ed Finnell
In a message dated 6/17/2007 1:52:39 P.M. Central Daylight Time, [EMAIL PROTECTED] writes: NCAL will still get a message regarding the unresolved external. But will produce an executable module that depends on any unresolved references to be available at execution time via standard

Re: Linkedit question

2007-06-17 Thread Big Iron
An unresolved V-type address reference will not normally be resolved at execution time. How the program will behave depends on how that field is used in the module which references it: if it simply loads this address and branches to it, then the program will likely ABEND 0C1 due to a wild branch,