<?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: aCC compilation problems in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/acc-compilation-problems/m-p/4132840#M93161</link>
    <description>&lt;!--!*#--&gt;I'd try to avoid anyone who uses a macro&lt;BR /&gt;like that "USAGE", but the big problem seems&lt;BR /&gt;to be the missing "\" characters on those&lt;BR /&gt;lines:&lt;BR /&gt;&lt;BR /&gt;#define USAGE   {\&lt;BR /&gt;  fprintf(stderr, "usage:%s size [-s] \n",argv[0]);\&lt;BR /&gt;[...]&lt;BR /&gt;&lt;BR /&gt;without which, you have a one-line macro&lt;BR /&gt;definition, followed by a bunch of code in&lt;BR /&gt;the middle of nowhere.  (Note that the first&lt;BR /&gt;complaint refers to line 14, the one after&lt;BR /&gt;the "#define".)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; "shmcrt_l.c", line 46: error #2007: unrecognized token&lt;BR /&gt;&amp;gt;         case `s':&lt;BR /&gt;             ^&lt;BR /&gt;&lt;BR /&gt;&amp;gt; "shmcrt_l.c", line 46: error #2008: missing closing quote&lt;BR /&gt;&amp;gt;         case `s':&lt;BR /&gt;               ^&lt;BR /&gt;Time for an "Introduction to C" course?&lt;BR /&gt;Try &amp;gt;'s'&amp;lt; instead of &amp;gt;`s'&amp;lt;.&lt;BR /&gt;</description>
    <pubDate>Mon, 21 Jan 2008 16:02:24 GMT</pubDate>
    <dc:creator>Steven Schweda</dc:creator>
    <dc:date>2008-01-21T16:02:24Z</dc:date>
    <item>
      <title>aCC compilation problems</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-compilation-problems/m-p/4132839#M93160</link>
      <description>I am working through the 32/64bit interoperabilty examples of:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h21007.www2.hp.com/portal/site/dspp/PAGE.template/page.document?ciid=4409276391695110VgnVCM100000275d6e10RCRD" target="_blank"&gt;http://h21007.www2.hp.com/portal/site/dspp/PAGE.template/page.document?ciid=4409276391695110VgnVCM100000275d6e10RCRD&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;My system is an rx running 11.23 and aCC version  HP aC++/ANSI C B3910B A.06.00&lt;BR /&gt;&lt;BR /&gt;as an example, I get tons of errors when compiling the code shmcrt.c of the above link. Any usage notes would help, I would have expeceted it to be fairly normal C.&lt;BR /&gt;&lt;BR /&gt;TIA</description>
      <pubDate>Mon, 21 Jan 2008 14:06:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-compilation-problems/m-p/4132839#M93160</guid>
      <dc:creator>joseph pareti</dc:creator>
      <dc:date>2008-01-21T14:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: aCC compilation problems</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-compilation-problems/m-p/4132840#M93161</link>
      <description>&lt;!--!*#--&gt;I'd try to avoid anyone who uses a macro&lt;BR /&gt;like that "USAGE", but the big problem seems&lt;BR /&gt;to be the missing "\" characters on those&lt;BR /&gt;lines:&lt;BR /&gt;&lt;BR /&gt;#define USAGE   {\&lt;BR /&gt;  fprintf(stderr, "usage:%s size [-s] \n",argv[0]);\&lt;BR /&gt;[...]&lt;BR /&gt;&lt;BR /&gt;without which, you have a one-line macro&lt;BR /&gt;definition, followed by a bunch of code in&lt;BR /&gt;the middle of nowhere.  (Note that the first&lt;BR /&gt;complaint refers to line 14, the one after&lt;BR /&gt;the "#define".)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; "shmcrt_l.c", line 46: error #2007: unrecognized token&lt;BR /&gt;&amp;gt;         case `s':&lt;BR /&gt;             ^&lt;BR /&gt;&lt;BR /&gt;&amp;gt; "shmcrt_l.c", line 46: error #2008: missing closing quote&lt;BR /&gt;&amp;gt;         case `s':&lt;BR /&gt;               ^&lt;BR /&gt;Time for an "Introduction to C" course?&lt;BR /&gt;Try &amp;gt;'s'&amp;lt; instead of &amp;gt;`s'&amp;lt;.&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Jan 2008 16:02:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-compilation-problems/m-p/4132840#M93161</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-01-21T16:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: aCC compilation problems</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-compilation-problems/m-p/4132841#M93162</link>
      <description>A.06.00 is no longer supported.  The latest version is A.06.16.  With newer versions of aCC6, you have the +w64bit option to flag these porting issues.&lt;BR /&gt;&lt;BR /&gt;Unfortunately your other issues, as pointed out by Steven, are due to bad formatting on that web page.  Though only one line in the USAGE macro is missing the "\" because the line was split.  You seemed to lose the others.  Please provide feedback on your issues by clicking on the "Contact us" link on the bottom of the page.&lt;BR /&gt;&lt;BR /&gt;Other minor points to mention on your feedback:&lt;BR /&gt;That should be "int main" and "return 0;".&lt;BR /&gt;There are other cases of "`" vs "'".&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 22 Jan 2008 01:49:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-compilation-problems/m-p/4132841#M93162</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-01-22T01:49:16Z</dc:date>
    </item>
  </channel>
</rss>

