<?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 2005: invalid option '-x' in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4821647#M495928</link>
    <description>&lt;P&gt;He mentioned -B directory but that only works for the compiler proper.&lt;/P&gt;&lt;P&gt;He did say that if it didn't find as(1) under the initial installation directory, it would look it up in PATH.&lt;/P&gt;&lt;P&gt;So do you have &lt;FONT color="#3366ff" face="courier new,courier"&gt;/psg/tools/host/bin&lt;/FONT&gt;﻿ before /usr/ccs/bin in your PATH?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But there are other problems with not executing the control scripts by swinstall, the wrong system headers will be used.&lt;/P&gt;</description>
    <pubDate>Mon, 11 Jul 2011 22:12:56 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2011-07-11T22:12:56Z</dc:date>
    <item>
      <title>error 2005: invalid option '-x'</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4815741#M495918</link>
      <description>&lt;P&gt;&lt;FONT color="#000000"&gt;I downloaded the GNU compiler from the HP website, to run on&amp;nbsp;an HP 11i3 itanium server (only 11i2 version available for download).&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;A target="_blank" href="http://h21007.www2.hp.com/portal/site/dspp/menuitem.863c3e4cbcdc3f3515b49c108973a801/?ciid=2a08725cc2f02110725cc2f02110275d6e10RCRD"&gt;http://h21007.www2.hp.com/portal/site/dspp/menuitem.863c3e4cbcdc3f3515b49c108973a801/?ciid=2a08725cc2f02110725cc2f02110275d6e10RCRD&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;But am having difficulty getting a&amp;nbsp;simple dummy program to compile.&amp;nbsp; My aim is to get Doxygen compiled, if I can...&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;My C program is as follows:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;// This program does nothing except return 0, for use when&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;// testing rtest scripts.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;#include &amp;lt;stdlib.h&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;int main( int argc, char** argv )&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;{&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; printf( "strcmp(20051001,20051101) = %d", &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/FONT&gt;strcmp( "20051001", &lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;"20051101"&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;) );&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; printf( "strcmp(20051001,20051001) = %d", &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/FONT&gt;strcmp( "20051001", &lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;"20051001"&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;) );&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; printf( "strcmp(20051001,20050901) = %d", &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/FONT&gt;strcmp( "20051001", "20050901"&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;) );&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 0;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;}&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Saved as dummy.c and compiled by the command:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;(fjack) 122 % /full/path/to/downloaded/gcc dummy.c&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#ff0000" face="courier new,courier"&gt;error 2005: invalid option '-x'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;(fjack) 123 % ls&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;total 240&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;-rwxr-xr-x&amp;nbsp;&amp;nbsp; 1 fjack&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; generic&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5520 Sep 27&amp;nbsp; 2005 dummy&lt;BR /&gt;drwxr-xr-x&amp;nbsp; 16 fjack&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; generic&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1024 Apr&amp;nbsp; 2&amp;nbsp; 2010 ..&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;drwxr-xr-x&amp;nbsp;&amp;nbsp; 2 fjack&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; generic&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1024 Jul&amp;nbsp; 6 15:15 .&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;(fjack) 124 %&amp;nbsp;&amp;nbsp;/full/path/to/downloaded/gcc -pedantic dummy.c&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;randgen.c:1:1: warning: C++ style comments are not allowed in ISO C90 [enabled by default]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;randgen.c:1:1: warning: (this will be reported only once per input file) [enabled by default]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#ff0000" face="courier new,courier"&gt;error 2005: invalid option '-x'&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;The warnings I can live with, it's only a test program ;o) but where is this invalid -x option?&amp;nbsp; From GNU documentation it's the way of specifying the language, if you don't want it to work it out by the file extension but can't see (or imagine) where this is coming from.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;(fjack) 126 % &amp;nbsp;/full/path/to/downloaded/gcc -v&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Using built-in specs.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;COLLECT_GCC=/full/path/to/downloaded/gcc&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;COLLECT_LTO_WRAPPER&amp;nbsp;=/full/path/to/downloaded/GNU_C_C++/GCC_4_6_0/opt/hp-gcc-4.6.0/bin/../libexec/gcc/ia64-hp-hpux11.23/4.6.0/lto-wrapper&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Target: ia64-hp-hpux11.23&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Configured with: /tmp/gcc-4.6.0.tar.gz/gcc-4.6.0/configure --host=ia64-hp-hpux11.23 --target=ia64-hp-hpux11.23 --build=ia64-hp-hpux11.23 --prefix=/opt/hp-gcc-4.6.0 --with-gnu-as --without-gnu-ld --enable-threads=posix --enable-languages=c,c++ --with-gmp=/proj/opensrc/be/ia64-hp-hpux11.23 --with-mpfr=/proj/opensrc/be/ia64-hp-hpux11.23 SED=/usr/bin/sed&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Thread model: posix&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;gcc version 4.6.0 (GCC)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;uname -a returns&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;HP-UX hostname B.11.31 U ia64 0938135552 unlimited-user license&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2011 14:54:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4815741#M495918</guid>
      <dc:creator>WeeFee</dc:creator>
      <dc:date>2011-07-06T14:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: error 2005: invalid option '-x'</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4815813#M495919</link>
      <description>&lt;P&gt;Shalom,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would not be confortable running a compiler on 11.31 designed for use on 11.23.&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;--host=ia64-hp-hpux11.23 &lt;/FONT&gt;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unless the documentation specifically supports that, I would be more comfortable compiling from source.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SEP&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2011 15:45:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4815813#M495919</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2011-07-06T15:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: error 2005: invalid option '-x'</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4815819#M495920</link>
      <description>I tried compiling the source, but there were so many errors and pre-dependencies that I couldn't install - there were some packages GCC said that it required that had NO support or makefile for HP ;o( Otherwise, yes, I agree, that was what I tried first before getting desperate! Besides, I 'believed' the HP website where it said... "The GCC packages for HP-UX are available for HP-UX 11.11 or later running on HP PA-RISC and for HP-UX 11.23 or later running on the Itanium?-based processor family platform. " Naive, surely ;o) Fiona</description>
      <pubDate>Wed, 06 Jul 2011 15:51:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4815819#M495920</guid>
      <dc:creator>WeeFee</dc:creator>
      <dc:date>2011-07-06T15:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: error 2005: invalid option '-x'</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4815901#M495921</link>
      <description>&lt;P&gt;Can you add -v to your compile line so we can narrow down who produces that error message.&lt;/P&gt;&lt;P&gt;It may be trying to use HP's as(1) and not the foreign devil version.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume that "&lt;FONT face="courier new,courier"&gt;/full/path/to/downloaded&lt;/FONT&gt;﻿" was not changed from HP's value?&lt;/P&gt;&lt;P&gt;You may have to put &lt;FONT face="courier new,courier"&gt;/full/path/to/downloaded&lt;/FONT&gt;﻿ in your PATH.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next time please specify the EXACT path you used for gcc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2011 16:47:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4815901#M495921</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2011-07-06T16:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: error 2005: invalid option '-x'</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4817009#M495922</link>
      <description>&lt;P&gt;Dennis, you are right, I omitted to say how I'd installed gcc.&amp;nbsp; Sorry.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Due to limitations of our hardware team, we can't get root to install gcc (something about impacting their support contract) so I had to do it as a non-root user.&amp;nbsp; I downloaded the depot file, gunzip and tar xf'd it, then put links in my target directory to the un-tar'd location:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;un-tar'd to: &lt;FONT face="courier new,courier"&gt;/psg/tools/host/GNU_C_C++/GCC_4_6_0/opt/hp-gcc-4.6.0/bin/gcc&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;links created in: bin lib include lib libexec share/man&amp;nbsp;directories from here &lt;FONT face="courier new,courier"&gt;/psg/tools/host/bin&lt;/FONT&gt; etc. to above location.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I added &lt;FONT face="courier new,courier"&gt;/psg/tools/host/bin&lt;/FONT&gt; to my PATH and SHLIB_PATH variables.&amp;nbsp; So when I do &lt;FONT face="courier new,courier"&gt;which gcc&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;which as&lt;/FONT&gt;, the correct ones in my 'new' location are picked up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;host (fjack)110 %&amp;nbsp;ls /psg/tools/host/bin&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;a2p&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbilogstrip&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gprof&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objdump&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; psed&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;acyclic&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbiprof&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gv2gxl&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ora_explain&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pstruct&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;addr2line&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbiproxy&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gvcolor&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; osage&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ptar&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ar&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; diffimg&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gvgen&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; patchwork&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ptardiff&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;as&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dijkstra&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gvmap&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; perl&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ranlib&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;awk&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dot&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gvmap.sh&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; perl5.10.0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; readelf&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;bcomps&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dot2gxl&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gvpack&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; perlbug&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s2p&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;bison&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dot_builtins&amp;nbsp;&amp;nbsp;&amp;nbsp; gvpr&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; perldoc&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sccmap&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;c++filt&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dotty&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gxl2dot&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; perlivp&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sfdp&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;c2ph&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dprofpp&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gxl2gv&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pgawk&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; shasum&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ccomps&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elfedit&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h2ph&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pgawk-3.1.6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; size&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;circo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; enc2xs&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h2xs&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; piconv&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; splain&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;cluster&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fdp&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; igawk&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pl2pm&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strings&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;config_data&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; find2perl&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; instmodsh&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pod2html&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strip&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;corelist&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; flex&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; libnetcfg&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pod2latex&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tred&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;cpan&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; g++&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lneato&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pod2man&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; twopi&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;cpan2dist&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gawk&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pod2text&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; unflatten&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;cpanp&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gawk-3.1.6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mm2gv&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pod2usage&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xsubpp&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;cpanp-run-perl&amp;nbsp; gc&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; neato&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; podchecker&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yacc&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;cpp&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gcc&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; nm&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; podselect&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;curl&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gcov&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; nop&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; prove&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;curl-config&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gml2gv&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objcopy&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; prune&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;But when I run the command with -v it's picking up the 'wrong' as as you guessed??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;host (fjack) 151 % gcc -v -pedantic dummy.c&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Using built-in specs.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;COLLECT_GCC=gcc&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;COLLECT_LTO_WRAPPER=/psg/tools/host/GNU_C_C++/GCC_4_6_0/opt/hp-gcc-4.6.0/bin/../libexec/gcc/ia64-hp-hpux11.23/4.6.0/lto-wrapper&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Target: ia64-hp-hpux11.23&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Configured with: /tmp/gcc-4.6.0.tar.gz/gcc-4.6.0/configure --host=ia64-hp-hpux11.23 --target=ia64-hp-hpux11.23 --build=ia64-hp-hpux11.23 --prefix=/opt/hp-gcc-4.6.0 --with-gnu-as --without-gnu-ld --enable-threads=posix --enable-languages=c,c++ --with-gmp=/proj/opensrc/be/ia64-hp-hpux11.23 --with-mpfr=/proj/opensrc/be/ia64-hp-hpux11.23 SED=/usr/bin/sed&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Thread model: posix&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;gcc version 4.6.0 (GCC)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;COLLECT_GCC_OPTIONS='-v' '-pedantic'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;/psg/tools/host/GNU_C_C++/GCC_4_6_0/opt/hp-gcc-4.6.0/bin/../libexec/gcc/ia64-hp-hpux11.23/4.6.0/cc1 -quiet -v -iprefix /psg/tools/host/GNU_C_C++/GCC_4_6_0/opt/hp-gcc-4.6.0/bin/../lib/gcc/ia64-hp-hpux11.23/4.6.0/ dummy.c -quiet -dumpbase dummy.c -auxbase dummy -pedantic -version -o /var/tmp//cc5eOb5N.s&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;GNU C (GCC) version 4.6.0 (ia64-hp-hpux11.23)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compiled by GNU C version 4.6.0, GMP version 4.2.4, MPFR version 2.4.1, MPC version 0.8&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ignoring nonexistent directory "/psg/tools/host/GNU_C_C++/GCC_4_6_0/opt/hp-gcc-4.6.0/bin/../lib/gcc/ia64-hp-hpux11.23/4.6.0/../../../../ia64-hp-hpux11.23/include"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ignoring duplicate directory "/psg/tools/host/GNU_C_C++/GCC_4_6_0/opt/hp-gcc-4.6.0/bin/../lib/gcc/../../lib/gcc/ia64-hp-hpux11.23/4.6.0/include"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ignoring nonexistent directory "/usr/local/include"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ignoring duplicate directory "/psg/tools/host/GNU_C_C++/GCC_4_6_0/opt/hp-gcc-4.6.0/bin/../lib/gcc/../../lib/gcc/ia64-hp-hpux11.23/4.6.0/include-fixed"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ignoring nonexistent directory "/psg/tools/host/GNU_C_C++/GCC_4_6_0/opt/hp-gcc-4.6.0/bin/../lib/gcc/../../lib/gcc/ia64-hp-hpux11.23/4.6.0/../../../../ia64-hp-hpux11.23/include"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;#include "..." search starts here:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;#include &amp;lt;...&amp;gt; search starts here:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;/psg/tools/host/GNU_C_C++/GCC_4_6_0/opt/hp-gcc-4.6.0/bin/../lib/gcc/ia64-hp-hpux11.23/4.6.0/include&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;/psg/tools/host/GNU_C_C++/GCC_4_6_0/opt/hp-gcc-4.6.0/bin/../lib/gcc/ia64-hp-hpux11.23/4.6.0/include-fixed&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;/psg/tools/host/GNU_C_C++/GCC_4_6_0/opt/hp-gcc-4.6.0/bin/../lib/gcc/../../include&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;/usr/include&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;End of search list.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;GNU C (GCC) version 4.6.0 (ia64-hp-hpux11.23)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compiled by GNU C version 4.6.0, GMP version 4.2.4, MPFR version 2.4.1, MPC version 0.8&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Compiler executable checksum: 8bb82ece916072d2847c95dadf363758&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;dummy.c:1:1: warning: C++ style comments are not allowed in ISO C90 [enabled by default]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;dummy.c:1:1: warning: (this will be reported only once per input file) [enabled by default]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;COLLECT_GCC_OPTIONS='-v' '-pedantic'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#ff0000" face="courier new,courier"&gt;&amp;nbsp;/usr/ccs/bin/as -v -x -o /var/tmp//ccIJzWyP.o /var/tmp//cc5eOb5N.s&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;error 2005: invalid option '-v'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;HOST (fjack) 152 % &lt;FONT color="#3366ff"&gt;which as&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366ff" face="courier new,courier"&gt;/psg/tools/host/bin/as&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;I hope this helps - I'm afraid it just confuses me ;o(&lt;BR /&gt;&lt;BR /&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Fiona&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2011 10:20:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4817009#M495922</guid>
      <dc:creator>WeeFee</dc:creator>
      <dc:date>2011-07-07T10:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: error 2005: invalid option '-x'</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4817087#M495923</link>
      <description>&lt;P&gt;&amp;gt;I downloaded the depot file, gunzip and tar xf'd it, then put links in my target directory to the un-tar'd location:﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This may make it useless if you don't invoke any control scripts to set up the application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;it's picking up the 'wrong' as as you guessed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$ as -x fff&lt;BR /&gt;error 2005: invalid option '-x﻿'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You may have to use this to change to your alternate root:&amp;nbsp; &lt;FONT face="courier new,courier"&gt;--prefix=/opt/hp-gcc-4.6.0&lt;/FONT&gt;﻿&lt;/P&gt;&lt;P&gt;Not sure how.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;You may just have to be root to install it.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2011 11:05:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4817087#M495923</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2011-07-07T11:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: error 2005: invalid option '-x'</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4817105#M495924</link>
      <description>&lt;P&gt;Thanks Dennis, so if I understand you right, I need to use girly tears to appeal to the unix guy's better nature to install this as root...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will try and get them to do this!&lt;BR /&gt;&lt;BR /&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Fiona&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2011 11:26:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4817105#M495924</guid>
      <dc:creator>WeeFee</dc:creator>
      <dc:date>2011-07-07T11:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: error 2005: invalid option '-x'</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4817137#M495925</link>
      <description>&lt;P&gt;&amp;gt;Will try and get them to do this!﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll talk to the gcc maintainer and see if there is any other way.&amp;nbsp; But using root is easiest.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2011 11:43:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4817137#M495925</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2011-07-07T11:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: error 2005: invalid option '-x'</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4818679#M495926</link>
      <description>&lt;P&gt;Hi Dennis,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;my UNIX team are reluctant to do anything that looks remotely like 'software', but my crocodile tears worked, they installed the .depot file into /opt/hp-gcc, and after updating my path and library variables it all worked smashingly!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think they get enjoyment out of torturing me like this... but many thanks for your help!&lt;BR /&gt;&lt;BR /&gt;Fiona&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2011 11:46:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4818679#M495926</guid>
      <dc:creator>WeeFee</dc:creator>
      <dc:date>2011-07-08T11:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: error 2005: invalid option '-x'</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4819339#M495927</link>
      <description>&lt;P&gt;&amp;gt;many thanks for your help!﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you're happy with the answers you were given, please assign some kudos:&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://h30499.www3.hp.com/t5/Tips-and-Tricks/Kudos-what-where-how-and-why/m-p/4803621#M1"&gt;http://h30499.www3.hp.com/t5/Tips-and-Tricks/Kudos-what-where-how-and-why/m-p/4803621#M1&lt;/A&gt;﻿&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2011 21:43:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4819339#M495927</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2011-07-08T21:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: error 2005: invalid option '-x'</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4821647#M495928</link>
      <description>&lt;P&gt;He mentioned -B directory but that only works for the compiler proper.&lt;/P&gt;&lt;P&gt;He did say that if it didn't find as(1) under the initial installation directory, it would look it up in PATH.&lt;/P&gt;&lt;P&gt;So do you have &lt;FONT color="#3366ff" face="courier new,courier"&gt;/psg/tools/host/bin&lt;/FONT&gt;﻿ before /usr/ccs/bin in your PATH?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But there are other problems with not executing the control scripts by swinstall, the wrong system headers will be used.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2011 22:12:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/4821647#M495928</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2011-07-11T22:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: error 2005: invalid option '-x'</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/7155712#M495929</link>
      <description>&lt;P&gt;How I can do for this error ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am build gcc 4.8.5 for HPUX 11.31_ia64.&lt;/P&gt;&lt;P&gt;All error is error 2005:invalid option '-x'. I am crazy&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 01:56:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-2005-invalid-option-x/m-p/7155712#M495929</guid>
      <dc:creator>fury_fox</dc:creator>
      <dc:date>2021-12-06T01:56:19Z</dc:date>
    </item>
  </channel>
</rss>

