Your help please

classic Classic list List threaded Threaded
15 messages Options
Reply | Threaded
Open this post in threaded view
|

Your help please

David Requena
Hi All,

Sorry to bother you. I need to determine if my current approach to find the java executable on
any system would work across many platforms.

For that I'm asking you to compile and run the following snippet on platforms available to you
and report back if it works (or not!). Any combination of platform and java version is welcome.
Also embedded java environments.

fs = System.getProperty("file.separator")

-- maybe naïve method to find java
javaExecPath = System.getProperty("java.home")||fs||"bin"||fs||"java"

-- lets try it
args = [String javaExecPath, String "-version"]
jProc = Runtime.getRuntime().exec(args)

-- SUN JRE ouputs -version info to stderr!!
stderr = BufferedReader(InputStreamReader((jProc.getErrorStream())))
ln = stderr.readLine()
loop while ln \= null
        do
            say ln
            ln= stderr.readLine()
        catch IOException
            leave
        end
    end

-- lets also check stdout
stdout = BufferedReader(InputStreamReader((jProc.getInputStream())))
ln = stdout.readLine()
loop while ln \= null
        do
            say ln
            ln= stdout.readLine()
        catch IOException
            leave
        end
    end


So far it's working on Linux/Sun jre, Windows XP/sunjre and AIX 5.1/IBM jre.

Thanks very much in advance!

-- 

---
Saludos / Kind regards.
David Requena

_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Reply | Threaded
Open this post in threaded view
|

Re: Your help please

Robert L Hamilton
In jEdit it produces:

java version "1.6.0_20"
Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
Java HotSpot(TM) Client VM (build 16.3-b01, mixed mode, sharing)

Machinery == DELL laptop VOSTRO 1520 w/ XP SP3 and up-to-date; I've another older PC of vintage long lost but with XP SP3 if you want me to try that.

bobh 

On Mon, Aug 30, 2010 at 7:30 AM, David Requena <[hidden email]> wrote:
Hi All,

Sorry to bother you. I need to determine if my current approach to find the java executable on
any system would work across many platforms.

For that I'm asking you to compile and run the following snippet on platforms available to you
and report back if it works (or not!). Any combination of platform and java version is welcome.
Also embedded java environments.

fs = System.getProperty("file.separator")

-- maybe naïve method to find java
javaExecPath = System.getProperty("java.home")||fs||"bin"||fs||"java"

-- lets try it
args = [String javaExecPath, String "-version"]
jProc = Runtime.getRuntime().exec(args)

-- SUN JRE ouputs -version info to stderr!!
stderr = BufferedReader(InputStreamReader((jProc.getErrorStream())))
ln = stderr.readLine()
loop while ln \= null
        do
            say ln
            ln= stderr.readLine()
        catch IOException
            leave
        end
    end

-- lets also check stdout
stdout = BufferedReader(InputStreamReader((jProc.getInputStream())))
ln = stdout.readLine()
loop while ln \= null
        do
            say ln
            ln= stdout.readLine()
        catch IOException
            leave
        end
    end


So far it's working on Linux/Sun jre, Windows XP/sunjre and AIX 5.1/IBM jre.

Thanks very much in advance!

-- 

---
Saludos / Kind regards.
David Requena

_______________________________________________
Ibm-netrexx mailing list
[hidden email]




_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Reply | Threaded
Open this post in threaded view
|

Re: Your help please

Quique Britto
Hi David,

I will try on my eComStation (OS/2) machine when I get home.


Quique


On 30 August 2010 16:17, Robert Hamilton <[hidden email]> wrote:
In jEdit it produces:

java version "1.6.0_20"
Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
Java HotSpot(TM) Client VM (build 16.3-b01, mixed mode, sharing)

Machinery == DELL laptop VOSTRO 1520 w/ XP SP3 and up-to-date; I've another older PC of vintage long lost but with XP SP3 if you want me to try that.

bobh 

On Mon, Aug 30, 2010 at 7:30 AM, David Requena <[hidden email]> wrote:
Hi All,

Sorry to bother you. I need to determine if my current approach to find the java executable on
any system would work across many platforms.

For that I'm asking you to compile and run the following snippet on platforms available to you
and report back if it works (or not!). Any combination of platform and java version is welcome.
Also embedded java environments.

fs = System.getProperty("file.separator")

-- maybe naïve method to find java
javaExecPath = System.getProperty("java.home")||fs||"bin"||fs||"java"

-- lets try it
args = [String javaExecPath, String "-version"]
jProc = Runtime.getRuntime().exec(args)

-- SUN JRE ouputs -version info to stderr!!
stderr = BufferedReader(InputStreamReader((jProc.getErrorStream())))
ln = stderr.readLine()
loop while ln \= null
        do
            say ln
            ln= stderr.readLine()
        catch IOException
            leave
        end
    end

-- lets also check stdout
stdout = BufferedReader(InputStreamReader((jProc.getInputStream())))
ln = stdout.readLine()
loop while ln \= null
        do
            say ln
            ln= stdout.readLine()
        catch IOException
            leave
        end
    end


So far it's working on Linux/Sun jre, Windows XP/sunjre and AIX 5.1/IBM jre.

Thanks very much in advance!

-- 

---
Saludos / Kind regards.
David Requena

_______________________________________________
Ibm-netrexx mailing list
[hidden email]




_______________________________________________
Ibm-netrexx mailing list
[hidden email]




_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Reply | Threaded
Open this post in threaded view
|

Re: Your help please

rvjansen
In reply to this post by David Requena
Hi David,

java version "1.6.0_20"
Java(TM) SE Runtime Environment (build 1.6.0_20-b02-279-10M3065)
Java HotSpot(TM) 64-Bit Server VM (build 16.3-b01-279, mixed mode)

This is on MacOSX 10.6.4 

best regards,

René Jansen.

On 30 aug 2010, at 14:30, David Requena wrote:

Hi All,

Sorry to bother you. I need to determine if my current approach to find the java executable on
any system would work across many platforms.

For that I'm asking you to compile and run the following snippet on platforms available to you
and report back if it works (or not!). Any combination of platform and java version is welcome.
Also embedded java environments.

fs = System.getProperty("file.separator")

-- maybe naïve method to find java
javaExecPath = System.getProperty("java.home")||fs||"bin"||fs||"java"

-- lets try it
args = [String javaExecPath, String "-version"]
jProc = Runtime.getRuntime().exec(args)

-- SUN JRE ouputs -version info to stderr!!
stderr = BufferedReader(InputStreamReader((jProc.getErrorStream())))
ln = stderr.readLine()
loop while ln \= null
        do
            say ln
            ln= stderr.readLine()
        catch IOException
            leave
        end
    end

-- lets also check stdout
stdout = BufferedReader(InputStreamReader((jProc.getInputStream())))
ln = stdout.readLine()
loop while ln \= null
        do
            say ln
            ln= stdout.readLine()
        catch IOException
            leave
        end
    end


So far it's working on Linux/Sun jre, Windows XP/sunjre and AIX 5.1/IBM jre.

Thanks very much in advance!

-- 

---
Saludos / Kind regards.
David Requena
_______________________________________________
Ibm-netrexx mailing list
[hidden email]



_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Reply | Threaded
Open this post in threaded view
|

Re: Your help please

alansam
In reply to this post by David Requena


On 30 August 2010 05:30, David Requena <[hidden email]> wrote:
Hi All,

Sorry to bother you. I need to determine if my current approach to find the java executable on
any system would work across many platforms.


On Mac OS X:

$ uname -a
Darwin xxxxxxxx.local 10.4.0 Darwin Kernel Version 10.4.0: Fri Apr 23 18:28:53 PDT 2010; root:xnu-1504.7.4~1/RELEASE_I386 i386
$ java DR_JvmInfo
java version "1.6.0_20"
Java(TM) SE Runtime Environment (build 1.6.0_20-b02-279-10M3065)
Java HotSpot(TM) 64-Bit Server VM (build 16.3-b01-279, mixed mode)



--
Can't tweet, won't tweet!

_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Alan

--
Needs more cowbell.
Reply | Threaded
Open this post in threaded view
|

Re: Your help please

Tom Maynard
In reply to this post by David Requena
On 8/30/2010 7:30 AM, David Requena wrote:
Hi All,

Sorry to bother you. I need to determine if my current approach to find the java executable on
any system would work across many platforms.

Win XP SP3:

C:\NetRexx\play>java DR_Test
java version "1.6.0_18"
Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
Java HotSpot(TM) Client VM (build 16.0-b13, mixed mode, sharing)


Same system, Cygwin environment (but same Java, etc.):

tmaynard@Mercury /cygdrive/c/netrexx/play
$ java DR_Test
java version "1.6.0_18"
Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
Java HotSpot(TM) Client VM (build 16.0-b13, mixed mode, sharing)



_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Reply | Threaded
Open this post in threaded view
|

Re: Your help please

George Hovey-2
In reply to this post by David Requena
David,
On windows 7Pro:

java version "1.6.0_20"
Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
Java HotSpot(TM) Client VM (build 16.3-b01, mixed mode, sharing)
George

On Mon, Aug 30, 2010 at 8:30 AM, David Requena <[hidden email]> wrote:
Hi All,

Sorry to bother you. I need to determine if my current approach to find the java executable on
any system would work across many platforms.

For that I'm asking you to compile and run the following snippet on platforms available to you
and report back if it works (or not!). Any combination of platform and java version is welcome.
Also embedded java environments.

fs = System.getProperty("file.separator")

-- maybe naïve method to find java
javaExecPath = System.getProperty("java.home")||fs||"bin"||fs||"java"

-- lets try it
args = [String javaExecPath, String "-version"]
jProc = Runtime.getRuntime().exec(args)

-- SUN JRE ouputs -version info to stderr!!
stderr = BufferedReader(InputStreamReader((jProc.getErrorStream())))
ln = stderr.readLine()
loop while ln \= null
        do
            say ln
            ln= stderr.readLine()
        catch IOException
            leave
        end
    end

-- lets also check stdout
stdout = BufferedReader(InputStreamReader((jProc.getInputStream())))
ln = stdout.readLine()
loop while ln \= null
        do
            say ln
            ln= stdout.readLine()
        catch IOException
            leave
        end
    end


So far it's working on Linux/Sun jre, Windows XP/sunjre and AIX 5.1/IBM jre.

Thanks very much in advance!

-- 

---
Saludos / Kind regards.
David Requena

_______________________________________________
Ibm-netrexx mailing list
[hidden email]




_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Reply | Threaded
Open this post in threaded view
|

Re: Your help please

alansam
In reply to this post by David Requena
David,

On 30 August 2010 05:30, David Requena <[hidden email]> wrote:
Hi All,

Sorry to bother you. I need to determine if my current approach to find the java executable on
any system would work across many platforms.



Just for fun I also ran the program on a selection of JVMs on System z servers.  Here are the results:
z/OS 9.0 -

> uname -Isvr
z/OS 09.00 01

> java DR_JvmInfo
java version "1.5.0"
Java(TM) 2 Runtime Environment, Standard Edition (build pmz31dev-20091106 (SR11 ))
IBM J9 VM (build 2.3, J2RE 1.5.0 IBM J9 2.3 z/OS s390-31 j9vmmz3123-20091105 (JIT enabled)
J9VM - 20091103_45935_bHdSMr
JIT  - 20091016_1845_r8
GC   - 20091026_AA)
JCL  - 20091106

Linux on z/VM -
  • Red Hat Enterprise Linux AS release 4 (Nahant Update 3)
$ uname -svrmpio
Linux 2.6.9-34.EL #1 SMP Fri Feb 24 16:45:20 EST 2006 s390 s390 s390 GNU/Linux
$ java DR_JvmInfo
java version "1.6.0"
Java(TM) SE Runtime Environment (build pxz3160sr1-20080416_01(SR1))
IBM J9 VM (build 2.4, J2RE 1.6.0 IBM J9 2.4 Linux s390-31 jvmxz3160-20080415_18762 (JIT enabled, AOT enabled)
J9VM - 20080415_018762_bHdSMr
JIT  - r9_20080415_1520
GC   - 20080415_AA)
JCL  - 20080412_01

  • SUSE Linux Enterprise Server 11 (s390x) VERSION = 11 PATCHLEVEL = 0
> uname -svrmpio
Linux 2.6.27.19-5-default #1 SMP 2009-02-28 04:40:21 +0100 s390x s390x s390x GNU/Linux
> java DR_JvmInfo
java version "1.6.0"
Java(TM) SE Runtime Environment (build pxz6460sr5-20090529_04(SR5))
IBM J9 VM (build 2.4, J2RE 1.6.0 IBM J9 2.4 Linux s390x-64 jvmxz6460sr5-20090519_35743 (JIT enabled, AOT enabled)
J9VM - 20090519_035743_BHdSMr
JIT  - r9_20090518_2017
GC   - 20090417_AA)
JCL  - 20090529_01

  • Debian 5.0.4
$ uname -svrmpio
Linux 2.6.26-1-s390 #1 SMP Sat Jan 10 17:33:05 UTC 2009 s390 unknown unknown GNU/Linux
$ java DR_JvmInfo
java version "1.6.0"
Java(TM) SE Runtime Environment (build pxz3160sr4-20090219_01(SR4))
IBM J9 VM (build 2.4, J2RE 1.6.0 IBM J9 2.4 Linux s390-31 jvmxz3160-20090215_29883 (JIT enabled, AOT enabled)
J9VM - 20090215_029883_bHdSMr
JIT  - r9_20090213_2028
GC   - 20090213_AA)
JCL  - 20090218_01

Alan.
--
Can't tweet, won't tweet!

_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Alan

--
Needs more cowbell.
Reply | Threaded
Open this post in threaded view
|

Re: Your help please

Stephen Y Odo
In reply to this post by David Requena
NetRexx portable processor, version 2.05                                                      
Copyright (c) IBM Corporation, 2005.  All rights reserved.                                    
Program test.nrx                                                                              
Compilation of 'test.nrx' successful                                                          
java version "1.5.0"                                                                          
Java(TM) 2 Runtime Environment, Standard Edition (build pmz64devifx-20090129 (SR9-1))         
IBM J9 VM (build 2.3, J2RE 1.5.0 IBM J9 2.3 z/OS s390x-64 j9vmmz6423ifx-20090128 (JIT enabled)
J9VM - 20090126_28859_BHdSMr                                                                  
JIT  - 20081112_1511ifx1_r8                                                                   
GC   - 200811_07)                                                                             
JCL  - 20090128                                                                               


On 08/30/2010 02:30 AM, David Requena wrote:
Hi All,

Sorry to bother you. I need to determine if my current approach to find the java executable on
any system would work across many platforms.

For that I'm asking you to compile and run the following snippet on platforms available to you
and report back if it works (or not!). Any combination of platform and java version is welcome.
Also embedded java environments.

fs = System.getProperty("file.separator")

-- maybe naïve method to find java
javaExecPath = System.getProperty("java.home")||fs||"bin"||fs||"java"

-- lets try it
args = [String javaExecPath, String "-version"]
jProc = Runtime.getRuntime().exec(args)

-- SUN JRE ouputs -version info to stderr!!
stderr = BufferedReader(InputStreamReader((jProc.getErrorStream())))
ln = stderr.readLine()
loop while ln \= null
        do
            say ln
            ln= stderr.readLine()
        catch IOException
            leave
        end
    end

-- lets also check stdout
stdout = BufferedReader(InputStreamReader((jProc.getInputStream())))
ln = stdout.readLine()
loop while ln \= null
        do
            say ln
            ln= stdout.readLine()
        catch IOException
            leave
        end
    end


So far it's working on Linux/Sun jre, Windows XP/sunjre and AIX 5.1/IBM jre.

Thanks very much in advance!

-- 

---
Saludos / Kind regards.
David Requena
_______________________________________________ Ibm-netrexx mailing list [hidden email]


-- 
--

---------------------------------------------------------------------
Stephen Y. Odo
Technology Infrastructure / Systems Engineering    [hidden email]
Information Technology Services             phone:      (808)956-2383
University of Hawai'i                         FAX:      (808)956-2412
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
U-16/U-19 Girls Age Group Commissioner
Assistant Region Registrar  (Tournaments / High School Summer League)
AYSO Honolulu Region 178                   e-mail:       [hidden email]
---------------------------------------------------------------------

_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Reply | Threaded
Open this post in threaded view
|

RE: Your help please

measel
In reply to this post by David Requena

I’m late. It took a while to get the oldest java I could find (1.1.8)

loaded on my T20 laptop running DSL (Damn Small Linux) from a USB stick.

 

dsl@box~$ cat /proc/version

Linux version 2.4.31 (root@box) (gcc version 2.95.4 20011002 (Debian prerelease)) #6 SMP Fri Oct 21 15:15:54 EDT 2005

 

I added a couple of lines on the front of your code “snippet”

/* */

class snippet

method main(arg = String[]) public static

snippet()

method snippet() signals IOException

fs = System.getProperty("file.separator")

 

Then compiled:

 

dsl@box:~$ nrc snippet

 

NetRexx portable processor, version 2.05

Copyright (c) IBM Corporation, 2005.  All rights reserved.

Program snippet.nrx

  === class snippet ===

    function main(String[])

      signals IOException

    constructor snippet()

      overrides Object()

Compilation of 'snippet.nrx' successful

 

dsl@box:~$ java -classpath $CLASSPATH:snippet.jar snippet

java version "1.1.8"

 

dsl@box:~$ cat /proc/cpuinfo

processor       : 0

vendor_id       : GenuineIntel

cpu family      : 6

model           : 8

model name      : Pentium III (Coppermine)

stepping        : 6

cpu MHz         : 696.989

cache size      : 256 KB

 

 

What I don’t understand is why you must run Linux under VM to have a JVM.

 

IPL JAVA

 

From: [hidden email] [mailto:[hidden email]] On Behalf Of David Requena
Sent: Monday, August 30, 2010 7:31 AM
To: IBM Netrexx
Subject: [Ibm-netrexx] Your help please

 

Hi All,

Sorry to bother you. I need to determine if my current approach to find the java executable on
any system would work across many platforms.

For that I'm asking you to compile and run the following snippet on platforms available to you
and report back if it works (or not!). Any combination of platform and java version is welcome.
Also embedded java environments.

fs = System.getProperty("file.separator")

-- maybe naïve method to find java
javaExecPath = System.getProperty("java.home")||fs||"bin"||fs||"java"

-- lets try it
args = [String javaExecPath, String "-version"]
jProc = Runtime.getRuntime().exec(args)

-- SUN JRE ouputs -version info to stderr!!
stderr = BufferedReader(InputStreamReader((jProc.getErrorStream())))
ln = stderr.readLine()
loop while ln \= null
        do
            say ln
            ln= stderr.readLine()
        catch IOException
            leave
        end
    end

-- lets also check stdout
stdout = BufferedReader(InputStreamReader((jProc.getInputStream())))
ln = stdout.readLine()
loop while ln \= null
        do
            say ln
            ln= stdout.readLine()
        catch IOException
            leave
        end
    end


So far it's working on Linux/Sun jre, Windows XP/sunjre and AIX 5.1/IBM jre.

Thanks very much in advance!


-- 
 
---
Saludos / Kind regards.
David Requena

_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Reply | Threaded
Open this post in threaded view
|

Re: Your help please

David Requena
Thanks Mike,

I'm curious, did you really need to add the class and method definitions for this to compile?

The language processor should automatically add them when not found.

About the VM question, I wouldn't know either. But then I don't know anything about VM! :-)

-
Saludos / Kind regards,
David Requena

-----Original Message-----
From: "Measel, Mike" <[hidden email]>
Sender: [hidden email]
Date: Wed, 1 Sep 2010 22:28:59
To: IBM Netrexx<[hidden email]>
Reply-To: IBM Netrexx <[hidden email]>
Subject: RE: [Ibm-netrexx] Your help please

_______________________________________________
Ibm-netrexx mailing list
[hidden email]



_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Reply | Threaded
Open this post in threaded view
|

Re: Your help please

measel
In reply to this post by David Requena
Re: [Ibm-netrexx] Your help please

No it works as you have it - just habit I guess.

----- Original Message -----
From: [hidden email] <[hidden email]>
To: IBM Netrexx <[hidden email]>
Sent: Thu Sep 02 03:13:42 2010
Subject: Re: [Ibm-netrexx] Your help please

Thanks Mike,

I'm curious, did you really need to add the class and method definitions for this to compile?

The language processor should automatically add them when not found.

About the VM question, I wouldn't know either. But then I don't know anything about VM! :-)

-
Saludos / Kind regards,
David Requena

-----Original Message-----
From: "Measel, Mike" <[hidden email]>
Sender: [hidden email]
Date: Wed, 1 Sep 2010 22:28:59
To: IBM Netrexx<[hidden email]>
Reply-To: IBM Netrexx <[hidden email]>
Subject: RE: [Ibm-netrexx] Your help please

_______________________________________________
Ibm-netrexx mailing list
[hidden email]



_______________________________________________
Ibm-netrexx mailing list
[hidden email]


_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Reply | Threaded
Open this post in threaded view
|

RE: Your help please

measel
Re: [Ibm-netrexx] Your help please

Actually, the “habit” is because I almost always make a jar file of my NetRexx.  And quite often I’ve got multiple classes or packages in the same nrx file. 

 

The main(arg = String[]) is because if you start it directly from java, java looks for this as the entry point, whether you really needed an argument or not.

 

From: [hidden email] [mailto:[hidden email]] On Behalf Of Measel, Mike
Sent: Thursday, September 02, 2010 5:54 AM
To: [hidden email]; [hidden email]
Subject: Re: [Ibm-netrexx] Your help please

 

No it works as you have it - just habit I guess.

----- Original Message -----
From: [hidden email] <[hidden email]>
To: IBM Netrexx <[hidden email]>
Sent: Thu Sep 02 03:13:42 2010
Subject: Re: [Ibm-netrexx] Your help please

Thanks Mike,

I'm curious, did you really need to add the class and method definitions for this to compile?

The language processor should automatically add them when not found.

About the VM question, I wouldn't know either. But then I don't know anything about VM! :-)

-
Saludos / Kind regards,
David Requena

-----Original Message-----
From: "Measel, Mike" <[hidden email]>
Sender: [hidden email]
Date: Wed, 1 Sep 2010 22:28:59
To: IBM Netrexx<[hidden email]>
Reply-To: IBM Netrexx <[hidden email]>
Subject: RE: [Ibm-netrexx] Your help please

_______________________________________________
Ibm-netrexx mailing list
[hidden email]



_______________________________________________
Ibm-netrexx mailing list
[hidden email]


_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Reply | Threaded
Open this post in threaded view
|

Re: Your help please

rvjansen
In reply to this post by David Requena
I have to incude this one also

~ mobile$ java -cp .:NetRexxR.jar test
java version "1.5.0"
JamVM version 1.5.1
Copyright (C) 2003-2008 Robert Lougher <[hidden email]>

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2,
or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

Build information:

Execution Engine: direct-threaded interpreter with stack-caching
Compiled with: gcc 4.2.1 (Based on Apple Inc. build 5555)

Boot Library Path: /usr/lib/classpath
Boot Class Path: /usr/share/jamvm/classes.zip:/usr/share/classpath/glibj.zip
iPhone:~ mobile$ uname -a    
Darwin iPhone 10.0.0d3 Darwin Kernel Version 10.0.0d3: Fri Dec 18 01:26:55 PST 2009; root:xnu-1357.5.30~6/RELEASE_ARM_S5L8900X iPhone1,2 arm N82AP Darwin
iPhone:~ mobile$


best regards,

René Jansen.


On 30 aug 2010, at 14:30, David Requena wrote:



_______________________________________________
Ibm-netrexx mailing list
[hidden email]

Reply | Threaded
Open this post in threaded view
|

Re: Your help please

David Requena
So we add iPhone to the list!

-
Saludos / Kind regards,
David Requena

-----Original Message-----
From: René Jansen <[hidden email]>
Sender: [hidden email]
Date: Thu, 2 Sep 2010 16:43:43
To: IBM Netrexx<[hidden email]>
Reply-To: IBM Netrexx <[hidden email]>
Subject: Re: [Ibm-netrexx] Your help please

I have to incude this one also

~ mobile$ java -cp .:NetRexxR.jar test
java version "1.5.0"
JamVM version 1.5.1
Copyright (C) 2003-2008 Robert Lougher <[hidden email]>

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2,
or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

Build information:

Execution Engine: direct-threaded interpreter with stack-caching
Compiled with: gcc 4.2.1 (Based on Apple Inc. build 5555)

Boot Library Path: /usr/lib/classpath
Boot Class Path: /usr/share/jamvm/classes.zip:/usr/share/classpath/glibj.zip
iPhone:~ mobile$ uname -a    
Darwin iPhone 10.0.0d3 Darwin Kernel Version 10.0.0d3: Fri Dec 18 01:26:55 PST 2009; root:xnu-1357.5.30~6/RELEASE_ARM_S5L8900X iPhone1,2 arm N82AP Darwin
iPhone:~ mobile$


best regards,

René Jansen.


On 30 aug 2010, at 14:30, David Requena wrote:



_______________________________________________
Ibm-netrexx mailing list
[hidden email]


_______________________________________________
Ibm-netrexx mailing list
[hidden email]