 |
» |
|
|
|
Compiles an RPG/XL program. RPG/XL is not part of the HP 3000
Series 900 Computer System Fundamental Operating Software and must
be purchased separately. This command is recognized only if RPG/XL
is installed on your system. (Native Mode) Use |  |
This command may be issued from a session, job, or program.
It may not be used in BREAK. Pressing Break
suspends the execution of this command. Entering the RESUME
command continues the execution. Examples |  |
The following example compiles an RPG/XL program entered from
your standard input device and stores the object code in the object
file $OLDPASS.
The listing is then sent to your standard list device. The next example compiles an RPG/XL program contained in the
disk file RPGSRC,
and stores the object code in the object file MYRPGOBJ.
The program listing is stored in the disk file LISTFILE. RPGXL RPGSRC,MYRPGOBJ,LISTFILE
|
 |  |  |  |  | NOTE: Program development in native mode uses the MPE/iX LINK
command not the MPE V/E PREP
command. This produces a significant difference in the method of
linking code. |  |  |  |  |
If you have created an RPG program called MAIN
and a FORTRAN subprogram, for example, called SUB
(each contained in a separate file) you might choose to handle it
this way in MPE V/E: RPG MAIN, SOMEUSL FTN SUB, SOMEUSL : PREP SOMEUSL, SOMEPROG : RUN SOMEPROG
|
The second command appends the code from SUB
to SOMEUSL. However, LINK
(in MPE/iX native mode) does not append SUB.
On MPE/iX, you must compile the source files into separate object
files and then use the Link Editor to link the two object files
into the program file, as in this example: RPGXL MAIN, OBJMAIN FTNXL SUB, OBJSUB : LINK FROM=OBJMAIN,OBJSUB;TO=SOMEPROG : RUN SOMEPROG
|
However, if an NMRL
is used instead of an NMOBJ,
the above can be simplified to the following: BUILD RLFILE;DISC=10000;CODE=NMRL RPGXL MAIN, RLFILE FTNXL SUB, RLFILE LINK RLFILE,SOMEPROG RUN SOMEPROG
|
Related Information |  |
- Commands
RPGXLGO,
RPGXLLK - Manuals
HP RPG/XL Programmer's Guide HP RPG/XL Reference Manual HP RPG Utilities Reference Manual
|