<?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 aCC compiler ? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874701#M851689</link>
    <description>hi to all,&lt;BR /&gt;&lt;BR /&gt;May i  know can we use the aCC which the HP c++ compiler to compile  C program , i try but some function deprecated message thrown out, some function not defined.&lt;BR /&gt;&lt;BR /&gt;help needed.&lt;BR /&gt;&lt;BR /&gt;thanks.</description>
    <pubDate>Thu, 09 Dec 2004 04:29:32 GMT</pubDate>
    <dc:creator>Sir T S S</dc:creator>
    <dc:date>2004-12-09T04:29:32Z</dc:date>
    <item>
      <title>aCC compiler ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874701#M851689</link>
      <description>hi to all,&lt;BR /&gt;&lt;BR /&gt;May i  know can we use the aCC which the HP c++ compiler to compile  C program , i try but some function deprecated message thrown out, some function not defined.&lt;BR /&gt;&lt;BR /&gt;help needed.&lt;BR /&gt;&lt;BR /&gt;thanks.</description>
      <pubDate>Thu, 09 Dec 2004 04:29:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874701#M851689</guid>
      <dc:creator>Sir T S S</dc:creator>
      <dc:date>2004-12-09T04:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: aCC compiler ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874702#M851690</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;In HP-UX, you shouldn't use aCC for both C &amp;amp; C++ applications. you have to use corresponding compilers for applications.&lt;BR /&gt;&lt;BR /&gt;C   - CC Or gcc&lt;BR /&gt;C++ - aCC&lt;BR /&gt;&lt;BR /&gt;Note:&lt;BR /&gt;     In Linux, there is only one compiler for both C and C++.&lt;BR /&gt;&lt;BR /&gt;- Durai.</description>
      <pubDate>Thu, 09 Dec 2004 04:53:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874702#M851690</guid>
      <dc:creator>VEL_1</dc:creator>
      <dc:date>2004-12-09T04:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: aCC compiler ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874703#M851691</link>
      <description>Nonsense, aCC is perfectly capable of compiling C and C++. The C must be ANSI/C because aCC will not accept K&amp;amp;R syntax. &lt;BR /&gt;&lt;BR /&gt;You are finding that aCC is pickier about function usages and older/questionable constructs. The functions not defined means that header files are missing or the linker can find the function in the list of libraries and objects that you supplied to the command. You can also control the warning with -Ae or -Aa options and you have the ability to suppress specific warnings but normally the better answer is to modernize your syntax.</description>
      <pubDate>Thu, 09 Dec 2004 10:35:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874703#M851691</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-12-09T10:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: aCC compiler ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874704#M851692</link>
      <description>hey clay,&lt;BR /&gt;&lt;BR /&gt;you are right, i try the aCC -Ae -O sample.c then it work ,  you are right but what is the K&amp;amp;R syntax?</description>
      <pubDate>Thu, 09 Dec 2004 23:52:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874704#M851692</guid>
      <dc:creator>Sir T S S</dc:creator>
      <dc:date>2004-12-09T23:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: aCC compiler ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874705#M851693</link>
      <description>You need to hang your head in shame; you are not allowed to call yourself a C programmer.&lt;BR /&gt;Go directly to jail; do not pass Go; do not collect $200.00.&lt;BR /&gt;&lt;BR /&gt;K&amp;amp;R refers to "Brian W. Kernighan" and "Dennis M. Ritchie"; they wrote the first widely available description of the C language. Do a google search on either of these and you will get many, many hits -- plus references to their book. &lt;BR /&gt;&lt;BR /&gt;K&amp;amp;R C looks like this:&lt;BR /&gt;int main(argc,argv)&lt;BR /&gt;int argc;&lt;BR /&gt;char *argv[];&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;whereas the newer ANSI/C looks like this:&lt;BR /&gt;&lt;BR /&gt;int main(int argc; char *argv[])&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Also, have you ever heard of a little utility called "awk". I'll give you one guess&lt;BR /&gt;as to who the "k" represents.&lt;BR /&gt;</description>
      <pubDate>Fri, 10 Dec 2004 11:52:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874705#M851693</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-12-10T11:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: aCC compiler ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874706#M851694</link>
      <description>ok ack.</description>
      <pubDate>Fri, 17 Dec 2004 06:09:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/acc-compiler/m-p/4874706#M851694</guid>
      <dc:creator>Sir T S S</dc:creator>
      <dc:date>2004-12-17T06:09:10Z</dc:date>
    </item>
  </channel>
</rss>

