<?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: how to build a C program? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759121#M71992</link>
    <description>AnSI C Compiler is a good way, but you have to pay for it !!!!&lt;BR /&gt;gcc is also possible and you can download it at a portal center (don't forget binutils) this is the compiler that I use most often for many open sources softwares.&lt;BR /&gt;About 64 bits, a real 64 bits program mean specific sources where you declare the availability of the high addressing...&lt;BR /&gt;If your c files are not specific 64 bits, you don't have to compile them again !!&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;Benoit</description>
    <pubDate>Mon, 08 Jul 2002 08:01:06 GMT</pubDate>
    <dc:creator>benoit Bruckert</dc:creator>
    <dc:date>2002-07-08T08:01:06Z</dc:date>
    <item>
      <title>how to build a C program?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759116#M71987</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;   I have source code need to rebuild on new 64bit OS. I notice that I have makefiles and source .C files. But how can I perform the rebuild on HP-UX? Which C compiler I need?&lt;BR /&gt;&lt;BR /&gt;   Thanks.</description>
      <pubDate>Mon, 08 Jul 2002 07:33:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759116#M71987</guid>
      <dc:creator>Lalo_Weng</dc:creator>
      <dc:date>2002-07-08T07:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to build a C program?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759117#M71988</link>
      <description>Hi&lt;BR /&gt;This depends on the source code. There is a simple c compiler bundled with the OS but for more "serious" program development you need the C/ANSI compiler (B3988BA (workstation) or B3901BA (server)).</description>
      <pubDate>Mon, 08 Jul 2002 07:41:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759117#M71988</guid>
      <dc:creator>Leif Halvarsson_2</dc:creator>
      <dc:date>2002-07-08T07:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to build a C program?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759118#M71989</link>
      <description>&lt;A href="http://h21007.www2.hp.com/dspp/tech/tech_TechSoftwareDetailPage_IDX/1,1703,1857,00.html" target="_blank"&gt;http://h21007.www2.hp.com/dspp/tech/tech_TechSoftwareDetailPage_IDX/1,1703,1857,00.html&lt;/A&gt;</description>
      <pubDate>Mon, 08 Jul 2002 07:44:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759118#M71989</guid>
      <dc:creator>Leif Halvarsson_2</dc:creator>
      <dc:date>2002-07-08T07:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to build a C program?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759119#M71990</link>
      <description>Hi,&lt;BR /&gt;Search for the README file with the source , which will contain instructions for compiling&lt;BR /&gt;the source files.&lt;BR /&gt;&lt;BR /&gt;Edit makefile and customise it according to your requirements. go to the directory where&lt;BR /&gt;your source files are located and give make &lt;BR /&gt;command.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar</description>
      <pubDate>Mon, 08 Jul 2002 07:45:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759119#M71990</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2002-07-08T07:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to build a C program?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759120#M71991</link>
      <description>&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;You say  "and source .C files"&lt;BR /&gt;As you have used  a capital C  in .C  this&lt;BR /&gt;would normally indicate that your source-code&lt;BR /&gt;is C++.&lt;BR /&gt;In that case you need  ansi/c++  compiler and&lt;BR /&gt;not the c/ansi-c  compiler.&lt;BR /&gt;&lt;BR /&gt;Check if you have  the aCC  compiler &lt;BR /&gt;using this command:&lt;BR /&gt;&lt;BR /&gt;whereis aCC&lt;BR /&gt;If you get something like this:&lt;BR /&gt;&lt;BR /&gt;aCC: /opt/aCC/bin/aCC /opt/aCC/share/man/man1.Z/aCC.1&lt;BR /&gt;&lt;BR /&gt;you have the aCC compiler installed&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Olav&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Jul 2002 07:52:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759120#M71991</guid>
      <dc:creator>Olav Baadsvik</dc:creator>
      <dc:date>2002-07-08T07:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to build a C program?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759121#M71992</link>
      <description>AnSI C Compiler is a good way, but you have to pay for it !!!!&lt;BR /&gt;gcc is also possible and you can download it at a portal center (don't forget binutils) this is the compiler that I use most often for many open sources softwares.&lt;BR /&gt;About 64 bits, a real 64 bits program mean specific sources where you declare the availability of the high addressing...&lt;BR /&gt;If your c files are not specific 64 bits, you don't have to compile them again !!&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;Benoit</description>
      <pubDate>Mon, 08 Jul 2002 08:01:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759121#M71992</guid>
      <dc:creator>benoit Bruckert</dc:creator>
      <dc:date>2002-07-08T08:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to build a C program?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759122#M71993</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;u may need this.&lt;BR /&gt;&lt;BR /&gt;C-ANSI-C   B.11.01.06   HP C/ANSI C Compiler &lt;BR /&gt;&lt;BR /&gt;regds&lt;BR /&gt;ravi</description>
      <pubDate>Mon, 08 Jul 2002 09:34:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759122#M71993</guid>
      <dc:creator>V. V. Ravi Kumar_1</dc:creator>
      <dc:date>2002-07-08T09:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to build a C program?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759123#M71994</link>
      <description>If you want to go the gcc route, the web site is:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://gcc.gnu.org/" target="_blank"&gt;http://gcc.gnu.org/&lt;/A&gt;</description>
      <pubDate>Mon, 08 Jul 2002 13:18:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-build-a-c-program/m-p/2759123#M71994</guid>
      <dc:creator>Daimian Woznick</dc:creator>
      <dc:date>2002-07-08T13:18:52Z</dc:date>
    </item>
  </channel>
</rss>

