Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error 108: No Loader Section (Urgent)

Status
Not open for further replies.

xyzxyz

Programmer
Nov 21, 2002
18
NL
Hello everybody,

We've compiled a CICS-Sybase-interface-module "sybasexa". When we start CICS, it cannot load this module:

ERZ058003E/0186 12/08/02 12:42:16 accsyb: Information on unsuccessful program load: '108 /usr/lpp/cics/bin/sybasexa.

Code 108 tells us the reason: "no loader section". Can anyone explain what that means and how we can fix it?
It's urgent.

Regards
 
All input files that are shared objects are listed as dependants of your program in the programs loader section. The system loader loads all of the shared objects so the runtime linker can user their definitions.
 
Thanks,

I understand what you tell me, but what should be done or specified/added in the make-file where this module has been created to solve this problem? (I'm not a C-programmer).

Hans

 
You need to use the -brtl option when compiling your program using the runtime linker. Look at the manpage for ld.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top