IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

PLI enterprise compiler


IBM Mainframe Forums -> PL/I & Assembler
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
cma rajith

New User


Joined: 28 May 2008
Posts: 30
Location: India

PostPosted: Wed Jun 24, 2009 5:06 pm
Reply with quote

Hi,

I'm using PLI enterprise compiler IBMZPLI with PARM set as

'A(F),X(F),OPT(2),AG,NIS,NEST,MAR(2,72,1),OF,M,LC(60),
S,OBJ,NOP,STMT,NMI,NNUM,F(I),STATIC(FULL)'

Program is getting compiled, but i want the offset in PLILIST to be printed in hex.(Reason : I have to proces this file in my Rexx Program)

Wat is printed on the SYSPRINT of comppile step is

Offset Total Size Base Size Identifier
0 46 46 STRUCT_1
0 46 46 S_COMMON_IN
0 7 I_PRE_ISSU
7 1 C_PRE_ISSU
8 6 D_PRE_ISSU

But my requirement is to get it as

Offset Total Size Base Size Identifier
0x0 46 46 STRUCT_1
0x0 46 46 S_COMMON_IN
0x0 7 I_PRE_ISSU
0x07 1 C_PRE_ISSU
0x08 6 D_PRE_ISSU


Can i get this by changing the parm list..can anyone please help..

Thanks,
Ceema
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8697
Location: Dubuque, Iowa, USA

PostPosted: Wed Jun 24, 2009 5:34 pm
Reply with quote

As far as I know, the only way to do this would be to write your own routine to process the compiler output. Compiler printed output is designed to be easy for HUMANS to read, and most humans don't handle hexadecimal that well.
Back to top
View user's profile Send private message
prino

Senior Member


Joined: 07 Feb 2009
Posts: 1306
Location: Vilnius, Lithuania

PostPosted: Wed Jun 24, 2009 7:16 pm
Reply with quote

*process ag(hex); or

parm='...,ag(hex),...'

RTFM!
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> PL/I & Assembler

 


Similar Topics
Topic Forum Replies
No new posts How I Found a Bug in a FORTRAN Compiler All Other Mainframe Topics 4
No new posts Compiler and run JCL for basic PL/I p... PL/I & Assembler 10
No new posts JSON PARSE in Enterprise COBOL COBOL Programming 2
This topic is locked: you cannot edit posts or make replies. Upgrade to Enterprise COBOL 6 COBOL Programming 4
No new posts Pre-Compiler Bug with DSNH520I message? DB2 1
Search our Forums:

Back to Top