View previous topic :: View next topic |
Author |
Message |
Nimesh Srivastava Beginner

Joined: 22 Jul 2003 Posts: 13 Topics: 8
|
Posted: Thu Oct 16, 2003 7:56 am Post subject: CICS libraries in Batch Programs |
|
|
Hi everybody,
Excuse me for asking an AIX specifc question but any help on this would be of great help.
Currently, we compile an CICS application program by using the following options to compiler on AIX
xlc_r4 -I $CICS/include -bI:$CICS/lib/cicsprCpp.exp -e main -O test test.cpp
now for compiling an batch program if I use the same options except -e main ie.
xlc_r4 -I $CICS/include -bI:$CICS/lib/cicsprCpp.exp -O test test.cpp
can it cause a problem while execution of the program under any circumstance.
Thanx in advance...
Regards,
Nimesh |
|
Back to top |
|
 |
Himesh CICS Forum Moderator

Joined: 20 Dec 2002 Posts: 80 Topics: 21 Location: Chicago
|
Posted: Tue Dec 09, 2003 1:47 pm Post subject: |
|
|
Hi Nimesh,
the cicsprCpp is to specify the linkage-editor what file to import and what external symbols to import.
Quote: | Import files are ASCII files that identify the external symbols to resolve at run time |
Pls refer to the below link for more details on Import and Export files on AIX.
ld command explained on AIX
regds,
himesh |
|
Back to top |
|
 |
|
|