<?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: perl, module installation and gcc in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/perl-module-installation-and-gcc/m-p/5062481#M94339</link>
    <description>Hi Doug:&lt;BR /&gt;&lt;BR /&gt;The error "cc: warning 480: The -A option is available only with the C/ANSI C product; ignored." says that you don't have anything more than the HP bundled compiler.  You need an ANSI C (not free) compiler or 'gcc'.&lt;BR /&gt;&lt;BR /&gt;Next, when you need to compile Perl modules, you need the *same* compiler that compiled the Perl distribution.&lt;BR /&gt;&lt;BR /&gt;# perl -V:cc&lt;BR /&gt;&lt;BR /&gt;...will summarize your's.&lt;BR /&gt;&lt;BR /&gt;Since you downloaded from HP, the HP ANSII C compiler was used and now you're stuck.&lt;BR /&gt;&lt;BR /&gt;You can license an HP compiler from here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B9007AA" target="_blank"&gt;http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B9007AA&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;*OR*:&lt;BR /&gt;&lt;BR /&gt;Fetch a 'gcc' compiled Perl from Merijn here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://mirrors.develooper.com/hpux/" target="_blank"&gt;http://mirrors.develooper.com/hpux/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 09 Aug 2007 09:24:15 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2007-08-09T09:24:15Z</dc:date>
    <item>
      <title>perl, module installation and gcc</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-module-installation-and-gcc/m-p/5062478#M94336</link>
      <description>Hey;&lt;BR /&gt;&lt;BR /&gt;I've been working on HPs for the better part of 14 years and I don't think I've ever gotten anything to compile w/o an unholy amount of effort.&lt;BR /&gt;&lt;BR /&gt;My current issue is trying to get the DBD module working on a fresh install of perl5.8.7 (downloaded from software.hp.com).  &lt;BR /&gt;&lt;BR /&gt;When I run "install DBD", it errors out stating various things like: &lt;BR /&gt;&lt;BR /&gt;cc: warning 480: The -A option is available only with the C/ANSI C product; ignored.&lt;BR /&gt;&lt;BR /&gt;I looked at the make file and saw the "CC = cc" line.  I tried changing that to gcc then, in that directory, running "make".  (that's about the limit of my c programming knowledge).&lt;BR /&gt;&lt;BR /&gt;I got a bunch of errors &lt;BR /&gt;&lt;BR /&gt;# make&lt;BR /&gt;        gcc -c    -D_POSIX_C_SOURCE=199506L -D_REENTRANT -Ae -D_HPUX_SOURCE -Wl,+vnocompatwarnings +Z -DUSE_SITECUSTOMIZE -DNO_HASH_SEED -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fast +Onolimit +Opromote_indirect_calls +DAportable +DS2.0    -DVERSION=\"1.58\"  -DXS_VERSION=\"1.58\" +Z "-I/opt/perl_32/lib/5.8.7/PA-RISC1.1-thread-multi/CORE"   Perl.c&lt;BR /&gt;gcc: +Z: No such file or directory&lt;BR /&gt;gcc: +Onolimit: No such file or directory&lt;BR /&gt;gcc: +Opromote_indirect_calls: No such file or directory&lt;BR /&gt;gcc: +DAportable: No such file or directory&lt;BR /&gt;gcc: +DS2.0: No such file or directory&lt;BR /&gt;gcc: +Z: No such file or directory&lt;BR /&gt;cc1: error: unrecognized command line option "-fast"&lt;BR /&gt;*** Error exit code 1&lt;BR /&gt;&lt;BR /&gt;Stop.&lt;BR /&gt;&lt;BR /&gt;Is there a way around this?&lt;BR /&gt;&lt;BR /&gt;Thanks for any help/hints/suggestions.  &lt;BR /&gt;&lt;BR /&gt;Very Frustrated:&lt;BR /&gt;Doug</description>
      <pubDate>Thu, 09 Aug 2007 09:15:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-module-installation-and-gcc/m-p/5062478#M94336</guid>
      <dc:creator>Doug O'Leary</dc:creator>
      <dc:date>2007-08-09T09:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: perl, module installation and gcc</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-module-installation-and-gcc/m-p/5062479#M94337</link>
      <description>Hi Doug, &lt;BR /&gt;&lt;BR /&gt;You can try with "make clean", "make dist clean" and export CC=&lt;PATH_TO_GCC&gt; and re-run Configure if you haven't done. &lt;BR /&gt;&lt;BR /&gt;-Arun&lt;/PATH_TO_GCC&gt;</description>
      <pubDate>Thu, 09 Aug 2007 09:20:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-module-installation-and-gcc/m-p/5062479#M94337</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2007-08-09T09:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: perl, module installation and gcc</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-module-installation-and-gcc/m-p/5062480#M94338</link>
      <description>Have you checked&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h21007.www2.hp.com/portal/site/dspp/menuitem.863c3e4cbcdc3f3515b49c108973a801/?ciid=2608b3f1eee02110b3f1eee02110275d6e10RCRD" target="_blank"&gt;http://h21007.www2.hp.com/portal/site/dspp/menuitem.863c3e4cbcdc3f3515b49c108973a801/?ciid=2608b3f1eee02110b3f1eee02110275d6e10RCRD&lt;/A&gt;</description>
      <pubDate>Thu, 09 Aug 2007 09:20:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-module-installation-and-gcc/m-p/5062480#M94338</guid>
      <dc:creator>Luk Vandenbussche</dc:creator>
      <dc:date>2007-08-09T09:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: perl, module installation and gcc</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-module-installation-and-gcc/m-p/5062481#M94339</link>
      <description>Hi Doug:&lt;BR /&gt;&lt;BR /&gt;The error "cc: warning 480: The -A option is available only with the C/ANSI C product; ignored." says that you don't have anything more than the HP bundled compiler.  You need an ANSI C (not free) compiler or 'gcc'.&lt;BR /&gt;&lt;BR /&gt;Next, when you need to compile Perl modules, you need the *same* compiler that compiled the Perl distribution.&lt;BR /&gt;&lt;BR /&gt;# perl -V:cc&lt;BR /&gt;&lt;BR /&gt;...will summarize your's.&lt;BR /&gt;&lt;BR /&gt;Since you downloaded from HP, the HP ANSII C compiler was used and now you're stuck.&lt;BR /&gt;&lt;BR /&gt;You can license an HP compiler from here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B9007AA" target="_blank"&gt;http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B9007AA&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;*OR*:&lt;BR /&gt;&lt;BR /&gt;Fetch a 'gcc' compiled Perl from Merijn here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://mirrors.develooper.com/hpux/" target="_blank"&gt;http://mirrors.develooper.com/hpux/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Aug 2007 09:24:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-module-installation-and-gcc/m-p/5062481#M94339</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-08-09T09:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: perl, module installation and gcc</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-module-installation-and-gcc/m-p/5062482#M94340</link>
      <description>Hey;&lt;BR /&gt;&lt;BR /&gt;Downloading the gcc compiled version of perl worked - at least so far.  Thanks for the link.&lt;BR /&gt;&lt;BR /&gt;Doug O'Leary</description>
      <pubDate>Thu, 09 Aug 2007 10:33:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-module-installation-and-gcc/m-p/5062482#M94340</guid>
      <dc:creator>Doug O'Leary</dc:creator>
      <dc:date>2007-08-09T10:33:54Z</dc:date>
    </item>
  </channel>
</rss>

