<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Java 1.6 on HP-UX Itanium: which java executable? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649276#M676983</link>
    <description>As Dennis suggested, correct executable to invoke is /opt/java6/bin/java. This is Java driver built as 32-bit PA-RISC executable. Depending on command line options passed, it will invoke correct JVM for IA64 or PA-RISC.&lt;BR /&gt;&lt;BR /&gt;Java driver always runs using ARIES. To invoke different JVM flavors -&lt;BR /&gt;&lt;BR /&gt;32-bit IA64:    /opt/java6/bin/java&lt;BR /&gt;64-bit IA64:    /opt/java6/bin/java -d64&lt;BR /&gt;32-bit PA-RISC: /opt/java6/bin/java -pa20&lt;BR /&gt;64-bit PA-RISC: /opt/java6/bin/java -pa20w&lt;BR /&gt;&lt;BR /&gt;P.S. To invoke PA-RISC JVM on IA64, you need to install PA-RISC JDK/JRE using -x allow_incompatible=true option to swinstall.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;-Rajesh</description>
    <pubDate>Fri, 18 Jun 2010 06:06:20 GMT</pubDate>
    <dc:creator>Rajesh K Chaurasia</dc:creator>
    <dc:date>2010-06-18T06:06:20Z</dc:date>
    <item>
      <title>Java 1.6 on HP-UX Itanium: which java executable?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649271#M676978</link>
      <description>Just installed Java 1.6 on HP-UX Itanium.&lt;BR /&gt;I have to configure a third-party Java application to point to the java executable.&lt;BR /&gt;In PA-RISC, it's OK.&lt;BR /&gt;But in Itanium and I wonder which excutable I should use:&lt;BR /&gt;&lt;BR /&gt;desar1:/opt/java6/bin#file java&lt;BR /&gt;java:           PA-RISC2.0 executable dynamically linked -not stripped&lt;BR /&gt;&lt;BR /&gt;desar1:/opt/java6/bin/IA64W#file java&lt;BR /&gt;java:           ELF-64 executable object file - IA64&lt;BR /&gt;&lt;BR /&gt;desar1:/opt/java6/jre/bin#file java&lt;BR /&gt;java:           PA-RISC2.0 executable dynamically linked -not stripped&lt;BR /&gt;&lt;BR /&gt;desar1:/opt/java6/jre/bin/IA64W#file java&lt;BR /&gt;java:           ELF-64 executable object file - IA64&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Thu, 17 Jun 2010 16:08:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649271#M676978</guid>
      <dc:creator>Jose M. del Rio</dc:creator>
      <dc:date>2010-06-17T16:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Java 1.6 on HP-UX Itanium: which java executable?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649272#M676979</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;You may use any of the executables listed above on an Itanium system.&lt;BR /&gt;&lt;BR /&gt;Those marked PA-RISC will use the ARIES emulation libraries to translate system calls. Those marked IA64 will execute in native mode.&lt;BR /&gt;&lt;BR /&gt;Executing in native mode is preferred for performance in most cases. This assumes these java files are actually intended for the same purpose.&lt;BR /&gt;&lt;BR /&gt;You might want to, just for grins try the what command on those guys.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 17 Jun 2010 19:13:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649272#M676979</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-06-17T19:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Java 1.6 on HP-UX Itanium: which java executable?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649273#M676980</link>
      <description>&amp;gt;SEP: You may use any of the executables listed above on an Integrity system.&lt;BR /&gt;&lt;BR /&gt;The correct executable is the driver:&lt;BR /&gt;/opt/java6/bin/java&lt;BR /&gt;&lt;BR /&gt;This selects the appropriate JVM based on the architecture and options.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Those marked PA-RISC will use the ARIES emulation libraries to translate system calls. &lt;BR /&gt;&lt;BR /&gt;This isn't true for the driver since it will immediately exec the correct one.</description>
      <pubDate>Thu, 17 Jun 2010 19:18:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649273#M676980</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2010-06-17T19:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Java 1.6 on HP-UX Itanium: which java executable?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649274#M676981</link>
      <description>Dennis,&lt;BR /&gt;&lt;BR /&gt;It is a really bad habit of yours to direct comments to me via the forums. That is what email is for. That is how Bill Hassell does it when he notices a mistake in one of my posts.&lt;BR /&gt;&lt;BR /&gt;I consider myself parsed.&lt;BR /&gt;&lt;BR /&gt;Back to the question at hand.&lt;BR /&gt;&lt;BR /&gt;If you are building an executable on an IA-64 system you will want to use the native IA-64 executable object file to avoid use of ARIES.&lt;BR /&gt;&lt;BR /&gt;If you are facing a choice between which executable to run, again on an IA-64 system you are better off running in native mode than not.&lt;BR /&gt;&lt;BR /&gt;If you run this executable on a IA-64 system:&lt;BR /&gt;java: PA-RISC2.0 executable dynamically linked -not stripped&lt;BR /&gt;If there are any system calls, they will be translated to IA-64 system calls by ARIES.&lt;BR /&gt;&lt;BR /&gt;I don't see the word driver in the initial question and fail to connect the dots as to why that is being dragged into the thread.&lt;BR /&gt;&lt;BR /&gt;FYI, We are currently in the middle of a 30 system migration, rp8420 to superdome, many of our binaries are going to be left in PA-RISC mode and will use the ARIES emulation.&lt;BR /&gt;&lt;BR /&gt;We've been conducting performance tests of binaries native versus ARIES mode.&lt;BR /&gt;&lt;BR /&gt;IF possible, on IA-64 systems, don't use ARIES to run PA-RISC executable.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Jun 2010 20:33:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649274#M676981</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-06-17T20:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Java 1.6 on HP-UX Itanium: which java executable?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649275#M676982</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;For those interested in a bit more background, see this thread:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1434555" target="_blank"&gt;http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1434555&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It's there that Dennis talks about the Java "driver" code.&lt;BR /&gt;&lt;BR /&gt;I know I learned something from him :-)&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Jun 2010 20:41:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649275#M676982</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2010-06-17T20:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Java 1.6 on HP-UX Itanium: which java executable?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649276#M676983</link>
      <description>As Dennis suggested, correct executable to invoke is /opt/java6/bin/java. This is Java driver built as 32-bit PA-RISC executable. Depending on command line options passed, it will invoke correct JVM for IA64 or PA-RISC.&lt;BR /&gt;&lt;BR /&gt;Java driver always runs using ARIES. To invoke different JVM flavors -&lt;BR /&gt;&lt;BR /&gt;32-bit IA64:    /opt/java6/bin/java&lt;BR /&gt;64-bit IA64:    /opt/java6/bin/java -d64&lt;BR /&gt;32-bit PA-RISC: /opt/java6/bin/java -pa20&lt;BR /&gt;64-bit PA-RISC: /opt/java6/bin/java -pa20w&lt;BR /&gt;&lt;BR /&gt;P.S. To invoke PA-RISC JVM on IA64, you need to install PA-RISC JDK/JRE using -x allow_incompatible=true option to swinstall.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;-Rajesh</description>
      <pubDate>Fri, 18 Jun 2010 06:06:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649276#M676983</guid>
      <dc:creator>Rajesh K Chaurasia</dc:creator>
      <dc:date>2010-06-18T06:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Java 1.6 on HP-UX Itanium: which java executable?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649277#M676984</link>
      <description>Thanks to everybody.&lt;BR /&gt;I launched:&lt;BR /&gt;tusc [-d64] /opt/java6/bin/java -version &lt;BR /&gt;and noticed the right Itanium 32/64-bit version is chosen.&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Jun 2010 06:13:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649277#M676984</guid>
      <dc:creator>Jose M. del Rio</dc:creator>
      <dc:date>2010-06-18T06:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Java 1.6 on HP-UX Itanium: which java executable?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649278#M676985</link>
      <description>&amp;gt;SEP: I don't see the word driver in the initial question and fail to connect the dots as to why that is being dragged into the thread.&lt;BR /&gt;&lt;BR /&gt;Because one of those executables that Jose mentioned IS the java driver.</description>
      <pubDate>Sat, 19 Jun 2010 08:58:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-1-6-on-hp-ux-itanium-which-java-executable/m-p/4649278#M676985</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2010-06-19T08:58:29Z</dc:date>
    </item>
  </channel>
</rss>

