<?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: Error while compling using gcc in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724821#M788366</link>
    <description>Not hard at all. And it also does not depend on gcc's version.&lt;BR /&gt;&lt;BR /&gt;What you see is HP C-ANSI-C options passed to GNU gcc, and they are not recognozed.&lt;BR /&gt;&lt;BR /&gt;What you need to do is reconfigure&lt;BR /&gt;&lt;BR /&gt;# env CC=gcc configure ...&lt;BR /&gt;&lt;BR /&gt;or edit Makefile by hand, and change&lt;BR /&gt;&lt;BR /&gt;+z -&amp;gt; -fpic&lt;BR /&gt;+Z -&amp;gt; -fPIC&lt;BR /&gt;+O2 -&amp;gt; -O2&lt;BR /&gt;-Ae -&amp;gt;&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn&lt;BR /&gt;</description>
    <pubDate>Mon, 06 Feb 2006 02:21:48 GMT</pubDate>
    <dc:creator>H.Merijn Brand (procura</dc:creator>
    <dc:date>2006-02-06T02:21:48Z</dc:date>
    <item>
      <title>Error while compling using gcc</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724816#M788361</link>
      <description>Hi, &lt;BR /&gt;&lt;BR /&gt;  I am working on hpux 11.11 using gcc 64 bit compiler. I am getting following error.&lt;BR /&gt; &lt;BR /&gt;gcc: +O2: No such file or directory&lt;BR /&gt;gcc: +z: No such file or directory&lt;BR /&gt;&lt;BR /&gt;How to resolve this?</description>
      <pubDate>Mon, 06 Feb 2006 00:51:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724816#M788361</guid>
      <dc:creator>ambika_1</dc:creator>
      <dc:date>2006-02-06T00:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error while compling using gcc</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724817#M788362</link>
      <description>Hi Ambika, &lt;BR /&gt;&lt;BR /&gt;Can you post a detailed information rather than this? its very hard to figure why it complains about No such or Direcroty. Just copy &amp;amp; paste full make output where it stopped. &lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Mon, 06 Feb 2006 00:54:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724817#M788362</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-02-06T00:54:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error while compling using gcc</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724818#M788363</link>
      <description>Hi,&lt;BR /&gt;I am trying to build libmilter in Sendmail utility. &lt;BR /&gt;I replaced cc with /opt/hp-gcc64/bin/gcc as it is a 64 bit compiler &lt;BR /&gt;This is the detail of the results?&lt;BR /&gt;&lt;BR /&gt;# sh Build -c install&lt;BR /&gt;Configuration: pfx=, os=HP-UX, rel=11.11, rbase=11, rroot=11.11, arch=9000-898, sfx=, variant=optimized&lt;BR /&gt;Clearing out existing /sendmail-8.13.5/obj.HP-UX.11.11.9000-898/libmilter tree&lt;BR /&gt;Using M4=/usr/bin/m4&lt;BR /&gt;Creating /sendmail-8.13.5/obj.HP-UX.11.11.9000-898/libmilter using /sendmail-8.13.5/devtools/OS/HP-UX.11.x&lt;BR /&gt;Making dependencies in /sendmail-8.13.5/obj.HP-UX.11.11.9000-898/libmilter&lt;BR /&gt;Making in /sendmail-8.13.5/obj.HP-UX.11.11.9000-898/libmilter&lt;BR /&gt;        if [ ! -d /usr/include/libmilter ]; then mkdir -p /usr/include/libmilter; else :; fi&lt;BR /&gt;        ../../devtools/bin/install.sh -c -o root -g bin -m 0444 ../../include/libmilter/mfapi.h /usr/include/libmilter/mfapi.h&lt;BR /&gt;        ../../devtools/bin/install.sh -c -o root -g bin -m 0444 ../../include/libmilter/mfdef.h /usr/include/libmilter/mfdef.h&lt;BR /&gt;        ln -f -s ../../libsm/errstring.c .&lt;BR /&gt;        ln -f -s ../../libsm/strl.c .&lt;BR /&gt;        rm -f sm_os.h&lt;BR /&gt;        ln -f -s ../../include/sm/os/sm_os_hp.h sm_os.h&lt;BR /&gt;        /opt/hp-gcc64/bin/gcc -Ae +O2 -I. -I../../sendmail   -I../../include  -DV4FS -DHPUX11 -DNOT_SENDMAIL -Dsm_snprintf=snprintf  -D_POSIX_C_SOURCE=199506L +z -DXP_MT -c main.c&lt;BR /&gt;gcc: +O2: No such file or directory&lt;BR /&gt;gcc: +z: No such file or directory&lt;BR /&gt;&lt;COMMAND line=""&gt;:1:2: missing '(' after predicate&lt;BR /&gt;*** Error exit code 1&lt;BR /&gt;&lt;BR /&gt;Stop.&lt;BR /&gt;#&lt;BR /&gt;&lt;/COMMAND&gt;</description>
      <pubDate>Mon, 06 Feb 2006 00:59:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724818#M788363</guid>
      <dc:creator>ambika_1</dc:creator>
      <dc:date>2006-02-06T00:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error while compling using gcc</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724819#M788364</link>
      <description>Hello, &lt;BR /&gt;&lt;BR /&gt;Which version of GCC 64 bit you have installed ? Are you using sendmail 64bit version ? Just make everything is in sync. &lt;BR /&gt;&lt;BR /&gt;# file /usr/sbin/sendmail&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Mon, 06 Feb 2006 02:16:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724819#M788364</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-02-06T02:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Error while compling using gcc</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724820#M788365</link>
      <description>Hi,&lt;BR /&gt; file /usr/sbin/sendmail&lt;BR /&gt;/usr/sbin/sendmail:     PA-RISC1.1 shared executable dynamically linked&lt;BR /&gt;&lt;BR /&gt;Thereis is no clear information about bits. &lt;BR /&gt;Whereis can i get 64 bit sendmail.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Feb 2006 02:20:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724820#M788365</guid>
      <dc:creator>ambika_1</dc:creator>
      <dc:date>2006-02-06T02:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Error while compling using gcc</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724821#M788366</link>
      <description>Not hard at all. And it also does not depend on gcc's version.&lt;BR /&gt;&lt;BR /&gt;What you see is HP C-ANSI-C options passed to GNU gcc, and they are not recognozed.&lt;BR /&gt;&lt;BR /&gt;What you need to do is reconfigure&lt;BR /&gt;&lt;BR /&gt;# env CC=gcc configure ...&lt;BR /&gt;&lt;BR /&gt;or edit Makefile by hand, and change&lt;BR /&gt;&lt;BR /&gt;+z -&amp;gt; -fpic&lt;BR /&gt;+Z -&amp;gt; -fPIC&lt;BR /&gt;+O2 -&amp;gt; -O2&lt;BR /&gt;-Ae -&amp;gt;&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Feb 2006 02:21:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724821#M788366</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-02-06T02:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error while compling using gcc</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724822#M788367</link>
      <description>Yes, what procura said is perfectly correct. My  poor memory forgot what i did 2 years ago :-( &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.freeos.com/articles/3185/" target="_blank"&gt;http://www.freeos.com/articles/3185/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Mon, 06 Feb 2006 02:25:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724822#M788367</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-02-06T02:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Error while compling using gcc</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724823#M788368</link>
      <description>Even after doing that modification also its not building libmilter for 64 bits. This libmilter I am using in clamav build. &lt;BR /&gt;&lt;BR /&gt;By execting following command:&lt;BR /&gt; ./configure --prefix=/opt/iexpress/clamav --enable-milter --with-tcpwrapper --without-libcurl --disable-gethostbyname_r &lt;BR /&gt;&lt;BR /&gt;Checking for mi_stop in -lmilter... no&lt;BR /&gt;configure: error: Cannot find libmilter&lt;BR /&gt;&lt;BR /&gt;So how to solve this?</description>
      <pubDate>Mon, 06 Feb 2006 03:35:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724823#M788368</guid>
      <dc:creator>ambika_1</dc:creator>
      <dc:date>2006-02-06T03:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error while compling using gcc</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724824#M788369</link>
      <description>Hello, &lt;BR /&gt;&lt;BR /&gt;Checking for mi_stop in -lmilter... no&lt;BR /&gt;configure: error: Cannot find libmilter&lt;BR /&gt;&lt;BR /&gt;Configure script is looking for libmilter in SHLIB_PATH. Do you have that installed ? Or, you can export # export SHLIB_PATH=/usr/local/lib:$SHLIB_PATH&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Mon, 06 Feb 2006 03:40:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-while-compling-using-gcc/m-p/3724824#M788369</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-02-06T03:40:26Z</dc:date>
    </item>
  </channel>
</rss>

