Yes, that is the first thing that I tried, but I got these errors: IEW2456E 9207 SYMBOL term__FP17zoautil_vector4_s UNRESOLVED. MEMBER COULD NOT BE INCLUDED FROM THE DESIGNATED CALL LIBRARY. IEW2456E 9207 SYMBOL free_response__FP15zoau_response_s UNRESOLVED. MEMBER COULD NOT BE INCLUDED FROM THE DESIGNATED CALL LIBRARY.
Maybe that is a packaging error in zoautil.so? Peter From: IBM Mainframe Discussion List <[email protected]> On Behalf Of D Gaebler Sent: Tuesday, August 19, 2025 3:27 PM To: [email protected] Subject: Re: Binding C++ programs that use zoautil functions Hi Peter, have you tried something like this: //LKED.SYSIN DD * INCLUDE '/usr/lpp/zoautil/v1r3/lib/zoautil.x' You need to include the export stub (.x file) not the .so. For example for COBOL/Java interoperability it looked like this from JCL for the binder, but the compiler was COBOL: //LKED.SYSIN DD * INCLUDE '/usr/lpp/java/J7.1/bin/j9vm/libjvm.x' INCLUDE '/usr/lpp/cobol/v420/lib/igzcjava.x' ENTRY CJ01JAVA NAME CJ01JAVA(R) /* Hope it helps. -- This message and any attachments are intended only for the use of the addressee and may contain information that is privileged and confidential. If the reader of the message is not the intended recipient or an authorized representative of the intended recipient, you are hereby notified that any dissemination of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by e-mail and delete the message and any attachments from your system. ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN
