<?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: C Compiler in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/c-compiler/m-p/3814433#M780441</link>
    <description>The bundled C compiler, which is what you report, isn't good for anything at all.&lt;BR /&gt;&lt;BR /&gt;It *can* however build 64bit. Not that it's usefule, but that's what you ark:&lt;BR /&gt;&lt;BR /&gt;a5:/tmp 104 &amp;gt; echo 'int main (int argc, char *argv[]) { return (0); }' &amp;gt;test.c&lt;BR /&gt;a5:/tmp 105 &amp;gt; cc_bundled +DD64 -o test test.c&lt;BR /&gt;(Bundled) cc: "test.c", line 1: error 1705: Function prototypes are an ANSI feature.&lt;BR /&gt;Exit 1&lt;BR /&gt;a5:/tmp 106 &amp;gt; echo 'int main () { return (0); }' &amp;gt; test.c&lt;BR /&gt;a5:/tmp 107 &amp;gt; cc_bundled +DD64 -o test test.c&lt;BR /&gt;a5:/tmp 108 &amp;gt; file test&lt;BR /&gt;test:           ELF-64 executable object file - PA-RISC 2.0 (LP64)&lt;BR /&gt;a5:/tmp 109 &amp;gt;&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
    <pubDate>Wed, 28 Jun 2006 14:09:24 GMT</pubDate>
    <dc:creator>H.Merijn Brand (procura</dc:creator>
    <dc:date>2006-06-28T14:09:24Z</dc:date>
    <item>
      <title>C Compiler</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/c-compiler/m-p/3814431#M780439</link>
      <description>How can I tell if the C compiler on a server can compile for 64 bits?&lt;BR /&gt;&lt;BR /&gt;#what /usr/bin/cc&lt;BR /&gt;/usr/bin/cc:&lt;BR /&gt;        $Revision: 92453-07 linker linker crt0.o B.11.16.01 030316 $&lt;BR /&gt;        HP92453-01 B.11.11.08 HP C (Bundled) Compiler&lt;BR /&gt;         $ PATCH/11.00:PHCO_27774  Oct  3 2002 09:45:59 $&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Jun 2006 13:57:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/c-compiler/m-p/3814431#M780439</guid>
      <dc:creator>Sean OB_1</dc:creator>
      <dc:date>2006-06-28T13:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: C Compiler</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/c-compiler/m-p/3814432#M780440</link>
      <description>Sean,&lt;BR /&gt;&lt;BR /&gt;If you look at the files inside the patch, you can see that they are made for 32 and 64 bits versions.&lt;BR /&gt;&lt;BR /&gt;OS-Core.C-MIN,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP&lt;BR /&gt; OS-Core.C-MIN-64ALIB,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP&lt;BR /&gt; OS-Core.CORE-64SLIB,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP&lt;BR /&gt; OS-Core.CORE-SHLIBS,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP&lt;BR /&gt; ProgSupport.PROG-AUX,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP&lt;BR /&gt; ProgSupport.PROG-AX-64ALIB,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP&lt;BR /&gt; ProgSupport.PROG-MIN,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www5.itrc.hp.com/service/cki/patchDocDisplay.do?patchId=PHCO_27774" target="_blank"&gt;http://www5.itrc.hp.com/service/cki/patchDocDisplay.do?patchId=PHCO_27774&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Wed, 28 Jun 2006 14:06:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/c-compiler/m-p/3814432#M780440</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2006-06-28T14:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: C Compiler</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/c-compiler/m-p/3814433#M780441</link>
      <description>The bundled C compiler, which is what you report, isn't good for anything at all.&lt;BR /&gt;&lt;BR /&gt;It *can* however build 64bit. Not that it's usefule, but that's what you ark:&lt;BR /&gt;&lt;BR /&gt;a5:/tmp 104 &amp;gt; echo 'int main (int argc, char *argv[]) { return (0); }' &amp;gt;test.c&lt;BR /&gt;a5:/tmp 105 &amp;gt; cc_bundled +DD64 -o test test.c&lt;BR /&gt;(Bundled) cc: "test.c", line 1: error 1705: Function prototypes are an ANSI feature.&lt;BR /&gt;Exit 1&lt;BR /&gt;a5:/tmp 106 &amp;gt; echo 'int main () { return (0); }' &amp;gt; test.c&lt;BR /&gt;a5:/tmp 107 &amp;gt; cc_bundled +DD64 -o test test.c&lt;BR /&gt;a5:/tmp 108 &amp;gt; file test&lt;BR /&gt;test:           ELF-64 executable object file - PA-RISC 2.0 (LP64)&lt;BR /&gt;a5:/tmp 109 &amp;gt;&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Wed, 28 Jun 2006 14:09:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/c-compiler/m-p/3814433#M780441</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-06-28T14:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: C Compiler</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/c-compiler/m-p/3814434#M780442</link>
      <description>As previously implied, the bundled compiler is not really meant for compiling applications.  It is there for the sole purpose of regenning kernels.&lt;BR /&gt;&lt;BR /&gt;If you intend to do anything other than really trivial stuff you should obtain the "unbundled" compilers.  &lt;A href="http://software.hp.com/" target="_blank"&gt;http://software.hp.com/&lt;/A&gt; might be a starting point for that.&lt;BR /&gt;&lt;BR /&gt;Any of the "unbundled" HP compilers shipped since HP-UX 11.0 (circa 1997) have been able to compile applications for "LP64" - ie where longs and pointers are 64-bit.  The bundled's may have been able to as well, but I've never tried it with them.&lt;BR /&gt;&lt;BR /&gt;Probably already stated, but the option for "LP64" mode is +DD64 .  Older compilers (11.0) would take +DA2.0W, but that has been deprecated in favor of +DD64 which covers both PA-RISC and Itanium compilation environments.</description>
      <pubDate>Wed, 28 Jun 2006 19:51:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/c-compiler/m-p/3814434#M780442</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2006-06-28T19:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: C Compiler</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/c-compiler/m-p/3814435#M780443</link>
      <description>Hi Sean, &lt;BR /&gt;&lt;BR /&gt;Bundled C compiler meant for rebuilding kernel. So, it has 64 bit capabilities. But, it is not Ansi compliant. You have two choices &lt;BR /&gt;&lt;BR /&gt;1) Download GCC from HP's DSPP &lt;BR /&gt;&lt;A href="http://h21007.www2.hp.com/dspp/tech/tech_TechSoftwareDetailPage_IDX/1,1703,547,00.html" target="_blank"&gt;http://h21007.www2.hp.com/dspp/tech/tech_TechSoftwareDetailPage_IDX/1,1703,547,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;2) Download evaluation version of HP C compiler, &lt;BR /&gt;&lt;A href="http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B9007AAEVAL" target="_blank"&gt;http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B9007AAEVAL&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;-Arun &lt;BR /&gt;</description>
      <pubDate>Wed, 28 Jun 2006 22:46:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/c-compiler/m-p/3814435#M780443</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-06-28T22:46:01Z</dc:date>
    </item>
  </channel>
</rss>

