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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

free rexx complilers

Status
Not open for further replies.

dietmar0609

Programmer
Nov 25, 2008
8
FR
Hi are there any rexx compilers for free: zero $s

thx for your help ....

Dietmar
 
If you only want to distribute your programs without source, then ooREXX has an utility called rexxc.
But this utility do not produces native executable for Windows (*.EXE) or for other plattform, this only produces a binary image, which you can run using ooREXX.

Example:
I can compile the program from your thread
to the binary image:
Code:
C:\Users\Roman\Work>rexxc elapsed_time.rex fib_times
Open Object Rexx Tokenizer Version3.1.2
Build date: Apr 20 2007
Copyright (c) IBM Corporation 1995, 2004.
Copyright (c) RexxLA 2005-2007.
All Rights Reserved.
This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution.
[URL unfurl="true"]http://www.oorexx.org/license.html[/URL]
Now I can copy the binary file (without source) to the other location and run it using REXX:
Code:
C:\Games>rexx fib_times
 n | fibonacci | time (seconds)
-------------------------------
01 |         1 | 0
02 |         1 | 0
03 |         2 | 0
04 |         3 | 0
05 |         5 | 0
06 |         8 | 0
07 |        13 | 0
08 |        21 | 0
09 |        34 | 0
10 |        55 | 0
11 |        89 | 0
12 |       144 | 0
13 |       233 | 0
14 |       377 | 0
15 |       610 | 0
16 |       987 | 0
17 |      1597 | 0.016000
18 |      2584 | 0
19 |      4181 | 0.015000
20 |      6765 | 0.016000
21 |     10946 | 0.047000
22 |     17711 | 0.047000
23 |     28657 | 0.093000
24 |     46368 | 0.141000
25 |     75025 | 0.234000
26 |    121393 | 0.375000
27 |    196418 | 0.641000
28 |    317811 | 0.984000
29 |    514229 | 1.594000
30 |    832040 | 2.562000
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top