public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
* cannot build on RHEL 6
       [not found] <2B3152C6-06A1-46FF-9A3F-444A16935920@hp.com>
@ 2012-09-05 19:15 ` RAYAPROL Raja
  2012-09-05 19:26   ` Keith Seitz
  0 siblings, 1 reply; 9+ messages in thread
From: RAYAPROL Raja @ 2012-09-05 19:15 UTC (permalink / raw)
  To: insight

[-- Attachment #1: Type: text/plain, Size: 460 bytes --]

I copied the source directories to a RHEL 6 machine and ran configure. I got
a vague error about a bad interpreter. 

I then ran bash --debugger configure. I got a syntax error near line 19
(elif). I tried various combination and finally deleted the elif code since
I knew I didn't have zsh. I then got an error at the subsequent 'for as_var
in LANG LANGUAGE...'... syntax error near unexpected token LANG.

If I run bash --version it shows 4.1.2.

Any ideas?

[-- Attachment #2: smime.p7s --]
[-- Type: application/x-pkcs7-signature, Size: 5022 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: cannot build on RHEL 6
  2012-09-05 19:15 ` cannot build on RHEL 6 RAYAPROL Raja
@ 2012-09-05 19:26   ` Keith Seitz
  2012-09-05 19:44     ` RAYAPROL Raja
  0 siblings, 1 reply; 9+ messages in thread
From: Keith Seitz @ 2012-09-05 19:26 UTC (permalink / raw)
  To: RAYAPROL Raja; +Cc: insight

On 09/05/2012 12:15 PM, RAYAPROL Raja wrote:
> I copied the source directories to a RHEL 6 machine and ran configure. I got
> a vague error about a bad interpreter.

A build log would be mighty useful:

$ /path/to/src/configure [options] 2>&1 | tee config.out

If you are /not/ using in-tree Tcl, Tk, and Itcl, you need to have 
tcl-devel, tk-devel, itcl-devel, and iwidgets installed.

What is your architecture? 64-bit? If so, you may need additional 
configure patches (which I can forward or work to commit once and for all).

Keith

^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: cannot build on RHEL 6
  2012-09-05 19:26   ` Keith Seitz
@ 2012-09-05 19:44     ` RAYAPROL Raja
  2012-09-05 20:18       ` Carl Lowenstein
  2012-09-05 20:26       ` Keith Seitz
  0 siblings, 2 replies; 9+ messages in thread
From: RAYAPROL Raja @ 2012-09-05 19:44 UTC (permalink / raw)
  To: Keith Seitz; +Cc: insight

[-- Attachment #1: Type: text/plain, Size: 1235 bytes --]

Keith,

If I go to the source file directory (/tmp/insight-6.8) and issue
./configure, all I get is 

-bash: ./configure /bin/sh^M: bad interpreter: No such file or directory

If I run  bash --debugger ./configure, I get

./configure: line 18: syntax error near unexpected token `elif` 
./configure: line 18: `elif test -n "$(BASH_VERSION+set)" && (set -o posix)
>/dev/null`>&1

Regards,

Raja
____________________________________________________________________________
___________________________
-----Original Message-----
From: Keith Seitz [mailto:keiths@redhat.com] 
Sent: Wednesday, September 05, 2012 3:26 PM
To: RAYAPROL Raja
Cc: insight@sourceware.org
Subject: Re: cannot build on RHEL 6

On 09/05/2012 12:15 PM, RAYAPROL Raja wrote:
> I copied the source directories to a RHEL 6 machine and ran configure. I
got
> a vague error about a bad interpreter.

A build log would be mighty useful:

$ /path/to/src/configure [options] 2>&1 | tee config.out

If you are /not/ using in-tree Tcl, Tk, and Itcl, you need to have 
tcl-devel, tk-devel, itcl-devel, and iwidgets installed.

What is your architecture? 64-bit? If so, you may need additional 
configure patches (which I can forward or work to commit once and for all).

Keith

[-- Attachment #2: smime.p7s --]
[-- Type: application/x-pkcs7-signature, Size: 5022 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: cannot build on RHEL 6
  2012-09-05 19:44     ` RAYAPROL Raja
@ 2012-09-05 20:18       ` Carl Lowenstein
  2012-09-05 20:22         ` RAYAPROL Raja
  2012-09-05 20:26       ` Keith Seitz
  1 sibling, 1 reply; 9+ messages in thread
From: Carl Lowenstein @ 2012-09-05 20:18 UTC (permalink / raw)
  To: RAYAPROL Raja; +Cc: Keith Seitz, insight

On Wed, Sep 5, 2012 at 12:43 PM, RAYAPROL Raja <Raja.RAYAPROL@swift.com> wrote:
> Keith,
>
> If I go to the source file directory (/tmp/insight-6.8) and issue
> ./configure, all I get is
>
> -bash: ./configure /bin/sh^M: bad interpreter: No such file or directory
>

Your source file (/.configure) must have originated from a
Windows-type system, which uses control-M (^M) as part of the line
terminator.  So when the script is interpreted by bash, it tries to
find a file named "/bin/sh^M" which doesn't exist.

Google search for "bad interpreter" will give you plenty of advice
about how to cure this problem.

    carl
-- 
    carl lowenstein         marine physical lab     u.c. san diego
                                                 clowenstein@ucsd.edu

^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: cannot build on RHEL 6
  2012-09-05 20:18       ` Carl Lowenstein
@ 2012-09-05 20:22         ` RAYAPROL Raja
  0 siblings, 0 replies; 9+ messages in thread
From: RAYAPROL Raja @ 2012-09-05 20:22 UTC (permalink / raw)
  To: Carl Lowenstein; +Cc: Keith Seitz, insight

[-- Attachment #1: Type: text/plain, Size: 1248 bytes --]

I read the same comment when I googled my error, but I downloaded the
insight distribution from http://sources.redhat.com/insight/downloads.php
and unzipped it.

Regards,

Raja
____________________________________________________________________________
_____

-----Original Message-----
From: Carl Lowenstein [mailto:carl.lowenstein@gmail.com] 
Sent: Wednesday, September 05, 2012 4:18 PM
To: RAYAPROL Raja
Cc: Keith Seitz; insight@sourceware.org
Subject: Re: cannot build on RHEL 6

On Wed, Sep 5, 2012 at 12:43 PM, RAYAPROL Raja <Raja.RAYAPROL@swift.com>
wrote:
> Keith,
>
> If I go to the source file directory (/tmp/insight-6.8) and issue
> ./configure, all I get is
>
> -bash: ./configure /bin/sh^M: bad interpreter: No such file or directory
>

Your source file (/.configure) must have originated from a
Windows-type system, which uses control-M (^M) as part of the line
terminator.  So when the script is interpreted by bash, it tries to
find a file named "/bin/sh^M" which doesn't exist.

Google search for "bad interpreter" will give you plenty of advice
about how to cure this problem.

    carl
-- 
    carl lowenstein         marine physical lab     u.c. san diego
                                                 clowenstein@ucsd.edu

[-- Attachment #2: smime.p7s --]
[-- Type: application/x-pkcs7-signature, Size: 5022 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: cannot build on RHEL 6
  2012-09-05 19:44     ` RAYAPROL Raja
  2012-09-05 20:18       ` Carl Lowenstein
@ 2012-09-05 20:26       ` Keith Seitz
  2012-09-06 17:57         ` RAYAPROL Raja
  1 sibling, 1 reply; 9+ messages in thread
From: Keith Seitz @ 2012-09-05 20:26 UTC (permalink / raw)
  To: RAYAPROL Raja; +Cc: insight

On 09/05/2012 12:43 PM, RAYAPROL Raja wrote:
> Keith,
>
> If I go to the source file directory (/tmp/insight-6.8) and issue
> ./configure, all I get is

Wow. 6.8. That's *very* old (March 2008)...

I suggest using CVS HEAD or grabbing the official GDB 7.5 branch from 
CVS. [checkout the "insight" module: "cvs co -r gdb_7_5-branch insight"]

The in-build tree works (at least for me). I have patches to use the 
system-supplied Tcl, Tk, Itcl, and Iwidgets, so if you want to try 
those, I can send them to you.

Keith

^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: cannot build on RHEL 6
  2012-09-05 20:26       ` Keith Seitz
@ 2012-09-06 17:57         ` RAYAPROL Raja
  2012-09-06 18:08           ` Keith Seitz
  0 siblings, 1 reply; 9+ messages in thread
From: RAYAPROL Raja @ 2012-09-06 17:57 UTC (permalink / raw)
  To: Keith Seitz; +Cc: insight


[-- Attachment #1.1: Type: text/plain, Size: 1407 bytes --]

Thanks for the tip. I assumed that I was picking the stable branch. I can't
use cvs, but I tried to download the 7.0.5 sources. The build works, with a
few errors. The manual, which I found online, suggests that I need to run
insight or gdb -i=insight to use the program, but I don't see a insight
executable and gdb doesn't recognize the insight option. Not sure if the
documentation I am looking at is obsolete also, or if the build errors have
something to do with my problem. I am enclosing my Config, make and make
install outputs. 

Do you think you can help?

Regards,

Raja
____________________________________________________________________________
____________________________

-----Original Message-----
From: Keith Seitz [mailto:keiths@redhat.com] 
Sent: Wednesday, September 05, 2012 4:26 PM
To: RAYAPROL Raja
Cc: insight@sourceware.org
Subject: Re: cannot build on RHEL 6

On 09/05/2012 12:43 PM, RAYAPROL Raja wrote:
> Keith,
>
> If I go to the source file directory (/tmp/insight-6.8) and issue
> ./configure, all I get is

Wow. 6.8. That's *very* old (March 2008)...

I suggest using CVS HEAD or grabbing the official GDB 7.5 branch from 
CVS. [checkout the "insight" module: "cvs co -r gdb_7_5-branch insight"]

The in-build tree works (at least for me). I have patches to use the 
system-supplied Tcl, Tk, Itcl, and Iwidgets, so if you want to try 
those, I can send them to you.

Keith

[-- Attachment #1.2: make_install.err.txt --]
[-- Type: text/plain, Size: 612 bytes --]

WARNING: `makeinfo' is missing on your system.  You should only need it if
         you modified a `.texi' or `.texinfo' file, or any other file
         indirectly affecting the aspect of the manual.  The spurious
         call might also be the consequence of using a buggy `make' (AIX,
         DU, IRIX).  You might want to install the `Texinfo' package or
         the `GNU make' package.  Grab either from any GNU archive site.
make[4]: *** [bfd.info] Error 1
make[3]: *** [install-recursive] Error 1
make[2]: *** [install] Error 2
make[1]: *** [install-bfd] Error 2
make: *** [install] Error 2

[-- Attachment #1.3: make_install.out.txt --]
[-- Type: text/plain, Size: 39149 bytes --]

make[1]: Entering directory `/tmp/Insight-705/src'
/bin/sh ./mkinstalldirs /usr/local /usr/local
make[2]: Entering directory `/tmp/Insight-705/src/bfd'
make  install-recursive
make[3]: Entering directory `/tmp/Insight-705/src/bfd'
Making install in doc
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
restore=: && backupdir=".am$$" && \
	rm -rf $backupdir && mkdir $backupdir && \
	if (/tmp/Insight-705/src/missing makeinfo --split-size=5000000 --split-size=5000000 --version) >/dev/null 2>&1; then \
	  for f in bfd.info bfd.info-[0-9] bfd.info-[0-9][0-9] bfd.i[0-9] bfd.i[0-9][0-9]; do \
	    if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
	  done; \
	else :; fi && \
	if /tmp/Insight-705/src/missing makeinfo --split-size=5000000 --split-size=5000000   -I . \
	 -o bfd.info `test -f 'bfd.texinfo' || echo './'`bfd.texinfo; \
	then \
	  rc=0; \
	else \
	  rc=$?; \
	  $restore $backupdir/* `echo "./bfd.info" | sed 's|[^/]*$||'`; \
	fi; \
	rm -rf $backupdir; exit $rc
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
Making install in po
make[4]: Entering directory `/tmp/Insight-705/src/bfd/po'
file=`echo da | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file da.po
file=`echo es | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file es.po
file=`echo fi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file fi.po
file=`echo fr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file fr.po
file=`echo id | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file id.po
file=`echo ja | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ja.po
file=`echo ro | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ro.po
file=`echo ru | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ru.po
file=`echo rw | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file rw.po
file=`echo sv | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file sv.po
file=`echo tr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file tr.po
file=`echo vi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file vi.po
file=`echo zh_CN | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file zh_CN.po
if test -r .././../mkinstalldirs; then \
	  .././../mkinstalldirs /usr/local/share; \
	else \
	  ../mkinstalldirs /usr/local/share; \
	fi
installing da.gmo as /usr/local/share/locale/da/LC_MESSAGES/bfd.mo
installing es.gmo as /usr/local/share/locale/es/LC_MESSAGES/bfd.mo
installing fi.gmo as /usr/local/share/locale/fi/LC_MESSAGES/bfd.mo
installing fr.gmo as /usr/local/share/locale/fr/LC_MESSAGES/bfd.mo
installing id.gmo as /usr/local/share/locale/id/LC_MESSAGES/bfd.mo
installing ja.gmo as /usr/local/share/locale/ja/LC_MESSAGES/bfd.mo
installing ro.gmo as /usr/local/share/locale/ro/LC_MESSAGES/bfd.mo
installing ru.gmo as /usr/local/share/locale/ru/LC_MESSAGES/bfd.mo
installing rw.gmo as /usr/local/share/locale/rw/LC_MESSAGES/bfd.mo
installing sv.gmo as /usr/local/share/locale/sv/LC_MESSAGES/bfd.mo
installing tr.gmo as /usr/local/share/locale/tr/LC_MESSAGES/bfd.mo
installing vi.gmo as /usr/local/share/locale/vi/LC_MESSAGES/bfd.mo
installing zh_CN.gmo as /usr/local/share/locale/zh_CN/LC_MESSAGES/bfd.mo
if test "bfd" = "gettext"; then \
	  if test -r .././../mkinstalldirs; then \
	    .././../mkinstalldirs /usr/local/share/gettext/po; \
	  else \
	    ../mkinstalldirs /usr/local/share/gettext/po; \
	  fi; \
	  /usr/bin/install -c -m 644 ./Makefile.in.in \
			  /usr/local/share/gettext/po/Makefile.in.in; \
	else \
	  : ; \
	fi
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/po'
make[4]: Entering directory `/tmp/Insight-705/src/bfd'
rm -f bfd-tmp.h
cp bfd-in3.h bfd-tmp.h
/bin/sh ./../move-if-change bfd-tmp.h bfd.h
rm -f bfd-tmp.h
touch stmp-bfd-h
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT archive.lo -MD -MP -MF .deps/archive.Tpo -c -o archive.lo archive.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT archive.lo -MD -MP -MF .deps/archive.Tpo -c archive.c -o archive.o
mv -f .deps/archive.Tpo .deps/archive.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT archures.lo -MD -MP -MF .deps/archures.Tpo -c -o archures.lo -DDEFAULT_VECTOR=bfd_elf64_x86_64_vec -DSELECT_VECS='&bfd_elf64_x86_64_vec,&bfd_elf32_i386_vec,&i386linux_vec,&i386pei_vec,&x86_64pei_vec,&bfd_elf64_l1om_vec,&bfd_elf64_little_generic_vec,&bfd_elf64_big_generic_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_i386_arch,&bfd_l1om_arch' -DHAVE_bfd_elf64_x86_64_vec -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_x86_64pei_vec -DHAVE_bfd_elf64_l1om_vec -DHAVE_bfd_elf64_little_generic_vec -DHAVE_bfd_elf64_big_generic_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec ./archures.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT archures.lo -MD -MP -MF .deps/archures.Tpo -c -DDEFAULT_VECTOR=bfd_elf64_x86_64_vec "-DSELECT_VECS=&bfd_elf64_x86_64_vec,&bfd_elf32_i386_vec,&i386linux_vec,&i386pei_vec,&x86_64pei_vec,&bfd_elf64_l1om_vec,&bfd_elf64_little_generic_vec,&bfd_elf64_big_generic_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec" "-DSELECT_ARCHITECTURES=&bfd_i386_arch,&bfd_l1om_arch" -DHAVE_bfd_elf64_x86_64_vec -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_x86_64pei_vec -DHAVE_bfd_elf64_l1om_vec -DHAVE_bfd_elf64_little_generic_vec -DHAVE_bfd_elf64_big_generic_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec ./archures.c -o archures.o
mv -f .deps/archures.Tpo .deps/archures.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT bfd.lo -MD -MP -MF .deps/bfd.Tpo -c -o bfd.lo bfd.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT bfd.lo -MD -MP -MF .deps/bfd.Tpo -c bfd.c -o bfd.o
mv -f .deps/bfd.Tpo .deps/bfd.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT bfdio.lo -MD -MP -MF .deps/bfdio.Tpo -c -o bfdio.lo bfdio.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT bfdio.lo -MD -MP -MF .deps/bfdio.Tpo -c bfdio.c -o bfdio.o
mv -f .deps/bfdio.Tpo .deps/bfdio.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT bfdwin.lo -MD -MP -MF .deps/bfdwin.Tpo -c -o bfdwin.lo bfdwin.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT bfdwin.lo -MD -MP -MF .deps/bfdwin.Tpo -c bfdwin.c -o bfdwin.o
mv -f .deps/bfdwin.Tpo .deps/bfdwin.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT cache.lo -MD -MP -MF .deps/cache.Tpo -c -o cache.lo cache.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT cache.lo -MD -MP -MF .deps/cache.Tpo -c cache.c -o cache.o
mv -f .deps/cache.Tpo .deps/cache.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT coffgen.lo -MD -MP -MF .deps/coffgen.Tpo -c -o coffgen.lo coffgen.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT coffgen.lo -MD -MP -MF .deps/coffgen.Tpo -c coffgen.c -o coffgen.o
mv -f .deps/coffgen.Tpo .deps/coffgen.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT corefile.lo -MD -MP -MF .deps/corefile.Tpo -c -o corefile.lo corefile.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT corefile.lo -MD -MP -MF .deps/corefile.Tpo -c corefile.c -o corefile.o
mv -f .deps/corefile.Tpo .deps/corefile.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT format.lo -MD -MP -MF .deps/format.Tpo -c -o format.lo format.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT format.lo -MD -MP -MF .deps/format.Tpo -c format.c -o format.o
mv -f .deps/format.Tpo .deps/format.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT init.lo -MD -MP -MF .deps/init.Tpo -c -o init.lo init.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT init.lo -MD -MP -MF .deps/init.Tpo -c init.c -o init.o
mv -f .deps/init.Tpo .deps/init.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT libbfd.lo -MD -MP -MF .deps/libbfd.Tpo -c -o libbfd.lo libbfd.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT libbfd.lo -MD -MP -MF .deps/libbfd.Tpo -c libbfd.c -o libbfd.o
mv -f .deps/libbfd.Tpo .deps/libbfd.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT opncls.lo -MD -MP -MF .deps/opncls.Tpo -c -o opncls.lo opncls.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT opncls.lo -MD -MP -MF .deps/opncls.Tpo -c opncls.c -o opncls.o
mv -f .deps/opncls.Tpo .deps/opncls.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT reloc.lo -MD -MP -MF .deps/reloc.Tpo -c -o reloc.lo reloc.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT reloc.lo -MD -MP -MF .deps/reloc.Tpo -c reloc.c -o reloc.o
mv -f .deps/reloc.Tpo .deps/reloc.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT section.lo -MD -MP -MF .deps/section.Tpo -c -o section.lo section.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT section.lo -MD -MP -MF .deps/section.Tpo -c section.c -o section.o
mv -f .deps/section.Tpo .deps/section.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT syms.lo -MD -MP -MF .deps/syms.Tpo -c -o syms.lo syms.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT syms.lo -MD -MP -MF .deps/syms.Tpo -c syms.c -o syms.o
mv -f .deps/syms.Tpo .deps/syms.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT targets.lo -MD -MP -MF .deps/targets.Tpo -c -o targets.lo -DDEFAULT_VECTOR=bfd_elf64_x86_64_vec -DSELECT_VECS='&bfd_elf64_x86_64_vec,&bfd_elf32_i386_vec,&i386linux_vec,&i386pei_vec,&x86_64pei_vec,&bfd_elf64_l1om_vec,&bfd_elf64_little_generic_vec,&bfd_elf64_big_generic_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_i386_arch,&bfd_l1om_arch' -DHAVE_bfd_elf64_x86_64_vec -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_x86_64pei_vec -DHAVE_bfd_elf64_l1om_vec -DHAVE_bfd_elf64_little_generic_vec -DHAVE_bfd_elf64_big_generic_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec ./targets.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT targets.lo -MD -MP -MF .deps/targets.Tpo -c -DDEFAULT_VECTOR=bfd_elf64_x86_64_vec "-DSELECT_VECS=&bfd_elf64_x86_64_vec,&bfd_elf32_i386_vec,&i386linux_vec,&i386pei_vec,&x86_64pei_vec,&bfd_elf64_l1om_vec,&bfd_elf64_little_generic_vec,&bfd_elf64_big_generic_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec" "-DSELECT_ARCHITECTURES=&bfd_i386_arch,&bfd_l1om_arch" -DHAVE_bfd_elf64_x86_64_vec -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_x86_64pei_vec -DHAVE_bfd_elf64_l1om_vec -DHAVE_bfd_elf64_little_generic_vec -DHAVE_bfd_elf64_big_generic_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec ./targets.c -o targets.o
mv -f .deps/targets.Tpo .deps/targets.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c -o hash.lo hash.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c -o hash.o
mv -f .deps/hash.Tpo .deps/hash.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT linker.lo -MD -MP -MF .deps/linker.Tpo -c -o linker.lo linker.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT linker.lo -MD -MP -MF .deps/linker.Tpo -c linker.c -o linker.o
mv -f .deps/linker.Tpo .deps/linker.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT srec.lo -MD -MP -MF .deps/srec.Tpo -c -o srec.lo srec.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT srec.lo -MD -MP -MF .deps/srec.Tpo -c srec.c -o srec.o
mv -f .deps/srec.Tpo .deps/srec.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT binary.lo -MD -MP -MF .deps/binary.Tpo -c -o binary.lo binary.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT binary.lo -MD -MP -MF .deps/binary.Tpo -c binary.c -o binary.o
mv -f .deps/binary.Tpo .deps/binary.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT tekhex.lo -MD -MP -MF .deps/tekhex.Tpo -c -o tekhex.lo tekhex.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT tekhex.lo -MD -MP -MF .deps/tekhex.Tpo -c tekhex.c -o tekhex.o
mv -f .deps/tekhex.Tpo .deps/tekhex.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT ihex.lo -MD -MP -MF .deps/ihex.Tpo -c -o ihex.lo ihex.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT ihex.lo -MD -MP -MF .deps/ihex.Tpo -c ihex.c -o ihex.o
mv -f .deps/ihex.Tpo .deps/ihex.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT stabs.lo -MD -MP -MF .deps/stabs.Tpo -c -o stabs.lo stabs.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT stabs.lo -MD -MP -MF .deps/stabs.Tpo -c stabs.c -o stabs.o
mv -f .deps/stabs.Tpo .deps/stabs.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT stab-syms.lo -MD -MP -MF .deps/stab-syms.Tpo -c -o stab-syms.lo stab-syms.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT stab-syms.lo -MD -MP -MF .deps/stab-syms.Tpo -c stab-syms.c -o stab-syms.o
mv -f .deps/stab-syms.Tpo .deps/stab-syms.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT merge.lo -MD -MP -MF .deps/merge.Tpo -c -o merge.lo merge.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT merge.lo -MD -MP -MF .deps/merge.Tpo -c merge.c -o merge.o
mv -f .deps/merge.Tpo .deps/merge.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT dwarf2.lo -MD -MP -MF .deps/dwarf2.Tpo -c -o dwarf2.lo -DDEBUGDIR=\"/usr/local/lib/debug\" ./dwarf2.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT dwarf2.lo -MD -MP -MF .deps/dwarf2.Tpo -c -DDEBUGDIR=\"/usr/local/lib/debug\" ./dwarf2.c -o dwarf2.o
mv -f .deps/dwarf2.Tpo .deps/dwarf2.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT simple.lo -MD -MP -MF .deps/simple.Tpo -c -o simple.lo simple.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT simple.lo -MD -MP -MF .deps/simple.Tpo -c simple.c -o simple.o
mv -f .deps/simple.Tpo .deps/simple.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT compress.lo -MD -MP -MF .deps/compress.Tpo -c -o compress.lo compress.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT compress.lo -MD -MP -MF .deps/compress.Tpo -c compress.c -o compress.o
mv -f .deps/compress.Tpo .deps/compress.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT verilog.lo -MD -MP -MF .deps/verilog.Tpo -c -o verilog.lo verilog.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT verilog.lo -MD -MP -MF .deps/verilog.Tpo -c verilog.c -o verilog.o
mv -f .deps/verilog.Tpo .deps/verilog.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf64-x86-64.lo -MD -MP -MF .deps/elf64-x86-64.Tpo -c -o elf64-x86-64.lo elf64-x86-64.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf64-x86-64.lo -MD -MP -MF .deps/elf64-x86-64.Tpo -c elf64-x86-64.c -o elf64-x86-64.o
mv -f .deps/elf64-x86-64.Tpo .deps/elf64-x86-64.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf-ifunc.lo -MD -MP -MF .deps/elf-ifunc.Tpo -c -o elf-ifunc.lo elf-ifunc.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf-ifunc.lo -MD -MP -MF .deps/elf-ifunc.Tpo -c elf-ifunc.c -o elf-ifunc.o
mv -f .deps/elf-ifunc.Tpo .deps/elf-ifunc.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf64.lo -MD -MP -MF .deps/elf64.Tpo -c -o elf64.lo elf64.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf64.lo -MD -MP -MF .deps/elf64.Tpo -c elf64.c -o elf64.o
mv -f .deps/elf64.Tpo .deps/elf64.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf.lo -MD -MP -MF .deps/elf.Tpo -c -o elf.lo elf.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf.lo -MD -MP -MF .deps/elf.Tpo -c elf.c -o elf.o
mv -f .deps/elf.Tpo .deps/elf.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elflink.lo -MD -MP -MF .deps/elflink.Tpo -c -o elflink.lo elflink.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elflink.lo -MD -MP -MF .deps/elflink.Tpo -c elflink.c -o elflink.o
mv -f .deps/elflink.Tpo .deps/elflink.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf-attrs.lo -MD -MP -MF .deps/elf-attrs.Tpo -c -o elf-attrs.lo elf-attrs.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf-attrs.lo -MD -MP -MF .deps/elf-attrs.Tpo -c elf-attrs.c -o elf-attrs.o
mv -f .deps/elf-attrs.Tpo .deps/elf-attrs.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf-strtab.lo -MD -MP -MF .deps/elf-strtab.Tpo -c -o elf-strtab.lo elf-strtab.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf-strtab.lo -MD -MP -MF .deps/elf-strtab.Tpo -c elf-strtab.c -o elf-strtab.o
mv -f .deps/elf-strtab.Tpo .deps/elf-strtab.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf-eh-frame.lo -MD -MP -MF .deps/elf-eh-frame.Tpo -c -o elf-eh-frame.lo elf-eh-frame.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf-eh-frame.lo -MD -MP -MF .deps/elf-eh-frame.Tpo -c elf-eh-frame.c -o elf-eh-frame.o
mv -f .deps/elf-eh-frame.Tpo .deps/elf-eh-frame.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c -o dwarf1.lo dwarf1.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c dwarf1.c -o dwarf1.o
mv -f .deps/dwarf1.Tpo .deps/dwarf1.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf32-i386.lo -MD -MP -MF .deps/elf32-i386.Tpo -c -o elf32-i386.lo elf32-i386.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf32-i386.lo -MD -MP -MF .deps/elf32-i386.Tpo -c elf32-i386.c -o elf32-i386.o
mv -f .deps/elf32-i386.Tpo .deps/elf32-i386.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf-vxworks.lo -MD -MP -MF .deps/elf-vxworks.Tpo -c -o elf-vxworks.lo elf-vxworks.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf-vxworks.lo -MD -MP -MF .deps/elf-vxworks.Tpo -c elf-vxworks.c -o elf-vxworks.o
mv -f .deps/elf-vxworks.Tpo .deps/elf-vxworks.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf32.lo -MD -MP -MF .deps/elf32.Tpo -c -o elf32.lo elf32.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf32.lo -MD -MP -MF .deps/elf32.Tpo -c elf32.c -o elf32.o
mv -f .deps/elf32.Tpo .deps/elf32.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c -o i386linux.lo i386linux.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c i386linux.c -o i386linux.o
mv -f .deps/i386linux.Tpo .deps/i386linux.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c -o aout32.lo aout32.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c aout32.c -o aout32.o
mv -f .deps/aout32.Tpo .deps/aout32.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c -o pei-i386.lo pei-i386.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c pei-i386.c -o pei-i386.o
mv -f .deps/pei-i386.Tpo .deps/pei-i386.Plo
rm -f peigen.c
sed -e s/XX/pe/g < ./peXXigen.c > peigen.new
mv -f peigen.new peigen.c
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c -o peigen.lo peigen.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c peigen.c -o peigen.o
mv -f .deps/peigen.Tpo .deps/peigen.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c -o cofflink.lo cofflink.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c cofflink.c -o cofflink.o
mv -f .deps/cofflink.Tpo .deps/cofflink.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT pei-x86_64.lo -MD -MP -MF .deps/pei-x86_64.Tpo -c -o pei-x86_64.lo pei-x86_64.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT pei-x86_64.lo -MD -MP -MF .deps/pei-x86_64.Tpo -c pei-x86_64.c -o pei-x86_64.o
mv -f .deps/pei-x86_64.Tpo .deps/pei-x86_64.Plo
rm -f pex64igen.c
sed -e s/XX/pex64/g < ./peXXigen.c > pex64igen.new
mv -f pex64igen.new pex64igen.c
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT pex64igen.lo -MD -MP -MF .deps/pex64igen.Tpo -c -o pex64igen.lo pex64igen.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT pex64igen.lo -MD -MP -MF .deps/pex64igen.Tpo -c pex64igen.c -o pex64igen.o
mv -f .deps/pex64igen.Tpo .deps/pex64igen.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf64-gen.lo -MD -MP -MF .deps/elf64-gen.Tpo -c -o elf64-gen.lo elf64-gen.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf64-gen.lo -MD -MP -MF .deps/elf64-gen.Tpo -c elf64-gen.c -o elf64-gen.o
mv -f .deps/elf64-gen.Tpo .deps/elf64-gen.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c -o elf32-gen.lo elf32-gen.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c elf32-gen.c -o elf32-gen.o
mv -f .deps/elf32-gen.Tpo .deps/elf32-gen.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c -o cpu-i386.lo cpu-i386.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c cpu-i386.c -o cpu-i386.o
mv -f .deps/cpu-i386.Tpo .deps/cpu-i386.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT cpu-l1om.lo -MD -MP -MF .deps/cpu-l1om.Tpo -c -o cpu-l1om.lo cpu-l1om.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT cpu-l1om.lo -MD -MP -MF .deps/cpu-l1om.Tpo -c cpu-l1om.c -o cpu-l1om.o
mv -f .deps/cpu-l1om.Tpo .deps/cpu-l1om.Plo
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include   -DBINDIR='"/usr/local/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT archive64.lo -MD -MP -MF .deps/archive64.Tpo -c -o archive64.lo archive64.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I. -I. -I./../include -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT archive64.lo -MD -MP -MF .deps/archive64.Tpo -c archive64.c -o archive64.o
mv -f .deps/archive64.Tpo .deps/archive64.Plo
rm -f tofiles
f=""; \
	for i in elf64-x86-64.lo elf-ifunc.lo elf64.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo elf32-i386.lo elf-vxworks.lo elf32.lo i386linux.lo aout32.lo pei-i386.lo peigen.lo cofflink.lo pei-x86_64.lo pex64igen.lo elf64-gen.lo elf32-gen.lo cpu-i386.lo cpu-l1om.lo  archive64.lo ; do \
	  case " $f " in \
	    *" $i "*) ;; \
	    *) f="$f $i" ;; \
	  esac ; \
	done ; \
	echo $f > tofiles
/bin/sh ./../move-if-change tofiles ofiles
touch stamp-ofiles
/bin/sh ./libtool --tag=CC   --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2  -release `cat libtool-soversion`   -o libbfd.la -rpath /usr/local/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo `cat ofiles`   -lz 
libtool: link: ar rc .libs/libbfd.a  archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf64-x86-64.o elf-ifunc.o elf64.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o elf32-i386.o elf-vxworks.o elf32.o i386linux.o aout32.o pei-i386.o peigen.o cofflink.o pei-x86_64.o pex64igen.o elf64-gen.o elf32-gen.o cpu-i386.o cpu-l1om.o archive64.o
libtool: link: ranlib .libs/libbfd.a
libtool: link: ( cd ".libs" && rm -f "libbfd.la" && ln -s "../libbfd.la" "libbfd.la" )
libtooldir=`/bin/sh ./libtool --config | sed -n -e 's/^objdir=//p'`; \
	if [ -f $libtooldir/libbfd.a ]; then \
	  cp $libtooldir/libbfd.a libbfd.tmp; \
	  ranlib libbfd.tmp; \
	  /bin/sh ./../move-if-change libbfd.tmp libbfd.a; \
	else true; fi
touch stamp-lib
make[5]: Entering directory `/tmp/Insight-705/src/bfd'
make[5]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
 /usr/bin/install -c -m 644 bfd.h ./../include/ansidecl.h ./../include/symcat.h ./../include/bfdlink.h '/usr/local/include'
test -z "/usr/local/lib" || /bin/mkdir -p "/usr/local/lib"
 /bin/sh ./libtool   --mode=install /usr/bin/install -c   libbfd.la '/usr/local/lib'
libtool: install: /usr/bin/install -c .libs/libbfd.lai /usr/local/lib/libbfd.la
libtool: install: /usr/bin/install -c .libs/libbfd.a /usr/local/lib/libbfd.a
libtool: install: chmod 644 /usr/local/lib/libbfd.a
libtool: install: ranlib /usr/local/lib/libbfd.a
libtool: finish: PATH="/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/opt/tuxedo10gR3/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[5]: Leaving directory `/tmp/Insight-705/src/bfd'
make[4]: Leaving directory `/tmp/Insight-705/src/bfd'
make[3]: Leaving directory `/tmp/Insight-705/src/bfd'
make[2]: Leaving directory `/tmp/Insight-705/src/bfd'
make[1]: Leaving directory `/tmp/Insight-705/src'

[-- Attachment #1.4: config.log --]
[-- Type: application/octet-stream, Size: 32951 bytes --]

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by configure, which was
generated by GNU Autoconf 2.64.  Invocation command line was

  $ ./configure 

## --------- ##
## Platform. ##
## --------- ##

hostname = marhx013.swift.com
uname -m = x86_64
uname -r = 2.6.32-131.0.15.el6.x86_64
uname -s = Linux
uname -v = #1 SMP Tue May 10 15:42:40 EDT 2011

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = x86_64
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /usr/lib64/qt-3.3/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /sbin
PATH: /bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /root/bin
PATH: /opt/tuxedo10gR3/bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2428: checking build system type
configure:2442: result: x86_64-unknown-linux-gnu
configure:2489: checking host system type
configure:2502: result: x86_64-unknown-linux-gnu
configure:2522: checking target system type
configure:2535: result: x86_64-unknown-linux-gnu
configure:2589: checking for a BSD-compatible install
configure:2657: result: /usr/bin/install -c
configure:2668: checking whether ln works
configure:2690: result: yes
configure:2694: checking whether ln -s works
configure:2698: result: yes
configure:2705: checking for a sed that does not truncate output
configure:2769: result: /bin/sed
configure:2778: checking for gawk
configure:2794: found /bin/gawk
configure:2805: result: gawk
configure:4034: checking for gcc
configure:4050: found /usr/bin/gcc
configure:4061: result: gcc
configure:4290: checking for C compiler version
configure:4299: gcc --version >&5
gcc (GCC) 4.4.5 20110214 (Red Hat 4.4.5-6)
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:4310: $? = 0
configure:4299: gcc -v >&5
Using built-in specs.
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux
Thread model: posix
gcc version 4.4.5 20110214 (Red Hat 4.4.5-6) (GCC) 
configure:4310: $? = 0
configure:4299: gcc -V >&5
gcc: '-V' option must have argument
configure:4310: $? = 1
configure:4299: gcc -qversion >&5
gcc: unrecognized option '-qversion'
gcc: no input files
configure:4310: $? = 1
configure:4330: checking for C compiler default output file name
configure:4352: gcc    conftest.c  >&5
configure:4356: $? = 0
configure:4393: result: a.out
configure:4409: checking whether the C compiler works
configure:4418: ./a.out
configure:4422: $? = 0
configure:4437: result: yes
configure:4444: checking whether we are cross compiling
configure:4446: result: no
configure:4449: checking for suffix of executables
configure:4456: gcc -o conftest    conftest.c  >&5
configure:4460: $? = 0
configure:4482: result: 
configure:4488: checking for suffix of object files
configure:4510: gcc -c   conftest.c >&5
configure:4514: $? = 0
configure:4535: result: o
configure:4539: checking whether we are using the GNU C compiler
configure:4558: gcc -c   conftest.c >&5
configure:4558: $? = 0
configure:4567: result: yes
configure:4576: checking whether gcc accepts -g
configure:4596: gcc -c -g  conftest.c >&5
configure:4596: $? = 0
configure:4637: result: yes
configure:4654: checking for gcc option to accept ISO C89
configure:4718: gcc  -c -g -O2  conftest.c >&5
configure:4718: $? = 0
configure:4731: result: none needed
configure:4809: checking for g++
configure:4825: found /usr/bin/g++
configure:4836: result: g++
configure:4863: checking for C++ compiler version
configure:4872: g++ --version >&5
g++ (GCC) 4.4.5 20110214 (Red Hat 4.4.5-6)
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:4883: $? = 0
configure:4872: g++ -v >&5
Using built-in specs.
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux
Thread model: posix
gcc version 4.4.5 20110214 (Red Hat 4.4.5-6) (GCC) 
configure:4883: $? = 0
configure:4872: g++ -V >&5
g++: '-V' option must have argument
configure:4883: $? = 1
configure:4872: g++ -qversion >&5
g++: unrecognized option '-qversion'
g++: no input files
configure:4883: $? = 1
configure:4887: checking whether we are using the GNU C++ compiler
configure:4906: g++ -c   conftest.cpp >&5
configure:4906: $? = 0
configure:4915: result: yes
configure:4924: checking whether g++ accepts -g
configure:4944: g++ -c -g  conftest.cpp >&5
configure:4944: $? = 0
configure:4985: result: yes
configure:5074: checking for gnatbind
configure:5104: result: no
configure:5166: checking for gnatmake
configure:5196: result: no
configure:5215: checking whether compiler driver understands Ada
configure:5238: result: no
configure:5247: checking how to compare bootstrapped objects
configure:5272: result: cmp --ignore-initial=16 $$f1 $$f2
configure:5803: checking for version 0.10 of PPL
configure:5820: gcc -c -g -O2     conftest.c >&5
conftest.c:9:19: error: ppl_c.h: No such file or directory
conftest.c: In function 'main':
conftest.c:15: error: 'choke' undeclared (first use in this function)
conftest.c:15: error: (Each undeclared identifier is reported only once
conftest.c:15: error: for each function it appears in.)
conftest.c:15: error: expected ';' before 'me'
configure:5820: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h.  */
| #include "ppl_c.h"
| int
| main ()
| {
| 
|   #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR != 10
|   choke me
|   #endif
| 
|   ;
|   return 0;
| }
configure:5824: result: no
configure:6004: checking how to run the C preprocessor
configure:6035: gcc -E  -I/usr/include/libelf conftest.c
configure:6035: $? = 0
configure:6049: gcc -E  -I/usr/include/libelf conftest.c
conftest.c:9:28: error: ac_nonexistent.h: No such file or directory
configure:6049: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:6074: result: gcc -E
configure:6094: gcc -E  -I/usr/include/libelf conftest.c
configure:6094: $? = 0
configure:6108: gcc -E  -I/usr/include/libelf conftest.c
conftest.c:9:28: error: ac_nonexistent.h: No such file or directory
configure:6108: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:6137: checking for grep that handles long lines and -e
configure:6195: result: /bin/grep
configure:6200: checking for egrep
configure:6262: result: /bin/grep -E
configure:6267: checking for ANSI C header files
configure:6287: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
configure:6287: $? = 0
configure:6360: gcc -o conftest -g -O2 -I/usr/include/libelf  -I/usr/include/libelf  conftest.c  -lelf >&5
configure:6360: $? = 0
configure:6360: ./conftest
configure:6360: $? = 0
configure:6371: result: yes
configure:6384: checking for sys/types.h
configure:6384: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
configure:6384: $? = 0
configure:6384: result: yes
configure:6384: checking for sys/stat.h
configure:6384: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
configure:6384: $? = 0
configure:6384: result: yes
configure:6384: checking for stdlib.h
configure:6384: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
configure:6384: $? = 0
configure:6384: result: yes
configure:6384: checking for string.h
configure:6384: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
configure:6384: $? = 0
configure:6384: result: yes
configure:6384: checking for memory.h
configure:6384: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
configure:6384: $? = 0
configure:6384: result: yes
configure:6384: checking for strings.h
configure:6384: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
configure:6384: $? = 0
configure:6384: result: yes
configure:6384: checking for inttypes.h
configure:6384: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
configure:6384: $? = 0
configure:6384: result: yes
configure:6384: checking for stdint.h
configure:6384: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
configure:6384: $? = 0
configure:6384: result: yes
configure:6384: checking for unistd.h
configure:6384: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
configure:6384: $? = 0
configure:6384: result: yes
configure:6399: checking libelf.h usability
configure:6399: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
configure:6399: $? = 0
configure:6399: result: yes
configure:6399: checking libelf.h presence
configure:6399: gcc -E  -I/usr/include/libelf conftest.c
configure:6399: $? = 0
configure:6399: result: yes
configure:6399: checking for libelf.h
configure:6399: result: yes
configure:6411: checking gelf.h usability
configure:6411: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
configure:6411: $? = 0
configure:6411: result: yes
configure:6411: checking gelf.h presence
configure:6411: gcc -E  -I/usr/include/libelf conftest.c
configure:6411: $? = 0
configure:6411: result: yes
configure:6411: checking for gelf.h
configure:6411: result: yes
configure:6424: checking libelf/libelf.h usability
configure:6424: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
conftest.c:54:27: error: libelf/libelf.h: No such file or directory
configure:6424: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_LIBELF_H 1
| #define HAVE_GELF_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <libelf/libelf.h>
configure:6424: result: no
configure:6424: checking libelf/libelf.h presence
configure:6424: gcc -E  -I/usr/include/libelf conftest.c
conftest.c:21:27: error: libelf/libelf.h: No such file or directory
configure:6424: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_LIBELF_H 1
| #define HAVE_GELF_H 1
| /* end confdefs.h.  */
| #include <libelf/libelf.h>
configure:6424: result: no
configure:6424: checking for libelf/libelf.h
configure:6424: result: no
configure:6436: checking libelf/gelf.h usability
configure:6436: gcc -c -g -O2 -I/usr/include/libelf  -I/usr/include/libelf conftest.c >&5
conftest.c:54:25: error: libelf/gelf.h: No such file or directory
configure:6436: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_LIBELF_H 1
| #define HAVE_GELF_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <libelf/gelf.h>
configure:6436: result: no
configure:6436: checking libelf/gelf.h presence
configure:6436: gcc -E  -I/usr/include/libelf conftest.c
conftest.c:21:25: error: libelf/gelf.h: No such file or directory
configure:6436: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_LIBELF_H 1
| #define HAVE_GELF_H 1
| /* end confdefs.h.  */
| #include <libelf/gelf.h>
configure:6436: result: no
configure:6436: checking for libelf/gelf.h
configure:6436: result: no
configure:6475: checking for the correct version of libelf
configure:6498: gcc -o conftest -g -O2 -I/usr/include/libelf  -I/usr/include/libelf  conftest.c  -lelf >&5
configure:6498: $? = 0
configure:6499: result: yes
configure:7497: checking for default BUILD_CONFIG
configure:7529: result: 
configure:7970: checking for bison
configure:7986: found /usr/bin/bison
configure:7997: result: bison -y
configure:8018: checking for bison
configure:8034: found /usr/bin/bison
configure:8045: result: bison
configure:8065: checking for gm4
configure:8095: result: no
configure:8065: checking for gnum4
configure:8095: result: no
configure:8065: checking for m4
configure:8081: found /usr/bin/m4
configure:8092: result: m4
configure:8112: checking for flex
configure:8128: found /usr/bin/flex
configure:8139: result: flex
configure:8160: checking for flex
configure:8176: found /usr/bin/flex
configure:8187: result: flex
configure:8207: checking for makeinfo
configure:8237: result: no
configure:8268: checking for expect
configure:8284: found /usr/bin/expect
configure:8295: result: expect
configure:8317: checking for runtest
configure:8347: result: no
configure:8462: checking for ar
configure:8478: found /usr/bin/ar
configure:8489: result: ar
configure:8603: checking for as
configure:8619: found /usr/bin/as
configure:8630: result: as
configure:8744: checking for dlltool
configure:8774: result: no
configure:8885: checking for ld
configure:8901: found /usr/bin/ld
configure:8912: result: ld
configure:9026: checking for lipo
configure:9056: result: no
configure:9167: checking for nm
configure:9183: found /usr/bin/nm
configure:9194: result: nm
configure:9308: checking for ranlib
configure:9324: found /usr/bin/ranlib
configure:9335: result: ranlib
configure:9444: checking for strip
configure:9460: found /usr/bin/strip
configure:9471: result: strip
configure:9580: checking for windres
configure:9610: result: no
configure:9721: checking for windmc
configure:9751: result: no
configure:9862: checking for objcopy
configure:9878: found /usr/bin/objcopy
configure:9889: result: objcopy
configure:10003: checking for objdump
configure:10019: found /usr/bin/objdump
configure:10030: result: objdump
configure:10183: checking for cc
configure:10199: found /usr/bin/cc
configure:10210: result: cc
configure:10344: checking for c++
configure:10360: found /usr/bin/c++
configure:10371: result: c++
configure:10505: checking for gcc
configure:10521: found /usr/bin/gcc
configure:10532: result: gcc
configure:10661: checking for gcj
configure:10691: result: no
configure:10822: checking for gfortran
configure:10838: found /usr/bin/gfortran
configure:10849: result: gfortran
configure:11063: checking for ar
configure:11079: found /usr/bin/ar
configure:11090: result: ar
configure:11293: checking for as
configure:11309: found /usr/bin/as
configure:11320: result: as
configure:11523: checking for dlltool
configure:11553: result: no
configure:11753: checking for ld
configure:11769: found /usr/bin/ld
configure:11780: result: ld
configure:11983: checking for lipo
configure:12013: result: no
configure:12213: checking for nm
configure:12229: found /usr/bin/nm
configure:12240: result: nm
configure:12443: checking for objdump
configure:12459: found /usr/bin/objdump
configure:12470: result: objdump
configure:12673: checking for ranlib
configure:12689: found /usr/bin/ranlib
configure:12700: result: ranlib
configure:12903: checking for strip
configure:12919: found /usr/bin/strip
configure:12930: result: strip
configure:13133: checking for windres
configure:13163: result: no
configure:13363: checking for windmc
configure:13393: result: no
configure:13421: checking where to find the target ar
configure:13454: result: host tool
configure:13463: checking where to find the target as
configure:13496: result: host tool
configure:13505: checking where to find the target cc
configure:13538: result: host tool
configure:13547: checking where to find the target c++
configure:13583: result: host tool
configure:13592: checking where to find the target c++ for libstdc++
configure:13628: result: host tool
configure:13637: checking where to find the target dlltool
configure:13670: result: host tool
configure:13679: checking where to find the target gcc
configure:13712: result: host tool
configure:13721: checking where to find the target gcj
configure:13757: result: host tool
configure:13766: checking where to find the target gfortran
configure:13802: result: host tool
configure:13811: checking where to find the target ld
configure:13844: result: host tool
configure:13853: checking where to find the target lipo
configure:13875: result: host tool
configure:13884: checking where to find the target nm
configure:13917: result: host tool
configure:13926: checking where to find the target objdump
configure:13959: result: host tool
configure:13968: checking where to find the target ranlib
configure:14001: result: host tool
configure:14010: checking where to find the target strip
configure:14043: result: host tool
configure:14052: checking where to find the target windres
configure:14085: result: host tool
configure:14094: checking where to find the target windmc
configure:14127: result: host tool
configure:14164: checking whether to enable maintainer-specific portions of Makefiles
configure:14173: result: no
configure:14206: checking whether -fkeep-inline-functions is supported
configure:14225: gcc -c -g -O2 -fkeep-inline-functions  conftest.c >&5
configure:14225: $? = 0
configure:14226: result: yes
configure:14423: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by config.status, which was
generated by GNU Autoconf 2.64.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on marhx013.swift.com

config.status:949: creating Makefile

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_AR_FOR_TARGET_set=
ac_cv_env_AR_FOR_TARGET_value=
ac_cv_env_AR_set=
ac_cv_env_AR_value=
ac_cv_env_AS_FOR_TARGET_set=
ac_cv_env_AS_FOR_TARGET_value=
ac_cv_env_AS_set=
ac_cv_env_AS_value=
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_FOR_TARGET_set=
ac_cv_env_CC_FOR_TARGET_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_FOR_TARGET_set=
ac_cv_env_CXX_FOR_TARGET_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_DLLTOOL_FOR_TARGET_set=
ac_cv_env_DLLTOOL_FOR_TARGET_value=
ac_cv_env_DLLTOOL_set=
ac_cv_env_DLLTOOL_value=
ac_cv_env_GCC_FOR_TARGET_set=
ac_cv_env_GCC_FOR_TARGET_value=
ac_cv_env_GCJ_FOR_TARGET_set=
ac_cv_env_GCJ_FOR_TARGET_value=
ac_cv_env_GFORTRAN_FOR_TARGET_set=
ac_cv_env_GFORTRAN_FOR_TARGET_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LD_FOR_TARGET_set=
ac_cv_env_LD_FOR_TARGET_value=
ac_cv_env_LD_set=
ac_cv_env_LD_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_LIPO_FOR_TARGET_set=
ac_cv_env_LIPO_FOR_TARGET_value=
ac_cv_env_LIPO_set=
ac_cv_env_LIPO_value=
ac_cv_env_NM_FOR_TARGET_set=
ac_cv_env_NM_FOR_TARGET_value=
ac_cv_env_NM_set=
ac_cv_env_NM_value=
ac_cv_env_OBJCOPY_set=
ac_cv_env_OBJCOPY_value=
ac_cv_env_OBJDUMP_FOR_TARGET_set=
ac_cv_env_OBJDUMP_FOR_TARGET_value=
ac_cv_env_OBJDUMP_set=
ac_cv_env_OBJDUMP_value=
ac_cv_env_RANLIB_FOR_TARGET_set=
ac_cv_env_RANLIB_FOR_TARGET_value=
ac_cv_env_RANLIB_set=
ac_cv_env_RANLIB_value=
ac_cv_env_STRIP_FOR_TARGET_set=
ac_cv_env_STRIP_FOR_TARGET_value=
ac_cv_env_STRIP_set=
ac_cv_env_STRIP_value=
ac_cv_env_WINDMC_FOR_TARGET_set=
ac_cv_env_WINDMC_FOR_TARGET_value=
ac_cv_env_WINDMC_set=
ac_cv_env_WINDMC_value=
ac_cv_env_WINDRES_FOR_TARGET_set=
ac_cv_env_WINDRES_FOR_TARGET_value=
ac_cv_env_WINDRES_set=
ac_cv_env_WINDRES_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_header_gelf_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_libelf_gelf_h=no
ac_cv_header_libelf_h=yes
ac_cv_header_libelf_libelf_h=no
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=x86_64-unknown-linux-gnu
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_SED=/bin/sed
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AR=ar
ac_cv_prog_AR_FOR_TARGET=ar
ac_cv_prog_AS=as
ac_cv_prog_AS_FOR_TARGET=as
ac_cv_prog_AWK=gawk
ac_cv_prog_BISON=bison
ac_cv_prog_CC_FOR_TARGET=cc
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXX_FOR_TARGET=c++
ac_cv_prog_EXPECT=expect
ac_cv_prog_FLEX=flex
ac_cv_prog_GCC_FOR_TARGET=gcc
ac_cv_prog_GFORTRAN_FOR_TARGET=gfortran
ac_cv_prog_LD=ld
ac_cv_prog_LD_FOR_TARGET=ld
ac_cv_prog_LEX=flex
ac_cv_prog_M4=m4
ac_cv_prog_NM=nm
ac_cv_prog_NM_FOR_TARGET=nm
ac_cv_prog_OBJCOPY=objcopy
ac_cv_prog_OBJDUMP=objdump
ac_cv_prog_OBJDUMP_FOR_TARGET=objdump
ac_cv_prog_RANLIB=ranlib
ac_cv_prog_RANLIB_FOR_TARGET=ranlib
ac_cv_prog_STRIP=strip
ac_cv_prog_STRIP_FOR_TARGET=strip
ac_cv_prog_YACC='bison -y'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_target=x86_64-unknown-linux-gnu
acx_cv_cc_gcc_supports_ada=no
acx_cv_prog_LN=ln
gcc_cv_prog_cmp_skip='cmp --ignore-initial=16 $$f1 $$f2'
gcc_cv_tool_dirs=
gcc_cv_tool_prefix=/usr/local

## ----------------- ##
## Output variables. ##
## ----------------- ##

AR='ar'
AR_FOR_BUILD='$(AR)'
AR_FOR_TARGET='$(AR)'
AS='as'
AS_FOR_BUILD='$(AS)'
AS_FOR_TARGET='$(AS)'
AWK='gawk'
BISON='bison'
BUILD_CONFIG=''
CC='gcc'
CC_FOR_BUILD='$(CC)'
CC_FOR_TARGET='$(CC)'
CFLAGS='-g -O2'
CFLAGS_FOR_BUILD='-g -O2'
CFLAGS_FOR_TARGET='-g -O2'
COMPILER_AS_FOR_TARGET='$(AS_FOR_TARGET)'
COMPILER_LD_FOR_TARGET='$(LD_FOR_TARGET)'
COMPILER_NM_FOR_TARGET='$(NM_FOR_TARGET)'
CONFIGURE_GDB_TK='maybe-configure-tcl maybe-configure-tk maybe-configure-itcl maybe-configure-libgui'
CPP='gcc -E'
CPPFLAGS=''
CXX='g++'
CXXFLAGS='-g -O2'
CXXFLAGS_FOR_BUILD='-g -O2'
CXXFLAGS_FOR_TARGET='-g -O2'
CXX_FOR_BUILD='$(CXX)'
CXX_FOR_TARGET='$(CXX)'
DEBUG_PREFIX_CFLAGS_FOR_TARGET=''
DEFS='-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_LIBELF_H=1 -DHAVE_GELF_H=1'
DLLTOOL='dlltool'
DLLTOOL_FOR_BUILD='$(DLLTOOL)'
DLLTOOL_FOR_TARGET='$(DLLTOOL)'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
EXPECT='expect'
FLAGS_FOR_TARGET=''
FLEX='flex'
GCC_FOR_TARGET='$()'
GCC_SHLIB_SUBDIR=''
GCJ_FOR_BUILD='$(GCJ)'
GCJ_FOR_TARGET='$(GCJ)'
GDB_TK='maybe-all-tcl maybe-all-tk maybe-all-itcl maybe-all-libgui'
GFORTRAN_FOR_BUILD='$(GFORTRAN)'
GFORTRAN_FOR_TARGET='$(GFORTRAN)'
GNATBIND='no'
GNATMAKE='no'
GREP='/bin/grep'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_GDB_TK='maybe-install-tcl maybe-install-tk maybe-install-itcl maybe-install-libgui'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
LD='ld'
LDFLAGS=''
LDFLAGS_FOR_BUILD=''
LD_FOR_BUILD='$(LD)'
LD_FOR_TARGET='$(LD)'
LEX='flex'
LIBOBJS=''
LIBS=''
LIPO='lipo'
LIPO_FOR_TARGET='$(LIPO)'
LN='ln'
LN_S='ln -s'
LTLIBOBJS=''
M4='m4'
MAINT='#'
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAKEINFO='/tmp/Insight-705/src/missing makeinfo'
NM='nm'
NM_FOR_BUILD='$(NM)'
NM_FOR_TARGET='$(NM)'
OBJCOPY='objcopy'
OBJDUMP='objdump'
OBJDUMP_FOR_TARGET='$(OBJDUMP)'
OBJEXT='o'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_URL=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
RANLIB='ranlib'
RANLIB_FOR_BUILD='$(RANLIB)'
RANLIB_FOR_TARGET='$(RANLIB)'
RAW_CXX_FOR_TARGET='$(CXX)'
RPATH_ENVVAR='LD_LIBRARY_PATH'
RUNTEST='runtest'
SED='/bin/sed'
SHELL='/bin/sh'
STRIP='strip'
STRIP_FOR_TARGET='$(STRIP)'
SYSROOT_CFLAGS_FOR_TARGET=''
TOPLEVEL_CONFIGURE_ARGUMENTS='./configure'
WINDMC='windmc'
WINDMC_FOR_BUILD='$(WINDMC)'
WINDMC_FOR_TARGET='$(WINDMC)'
WINDRES='windres'
WINDRES_FOR_BUILD='$(WINDRES)'
WINDRES_FOR_TARGET='$(WINDRES)'
YACC='bison -y'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
bindir='${exec_prefix}/bin'
build='x86_64-unknown-linux-gnu'
build_alias=''
build_configargs='--cache-file=../config.cache  --program-transform-name='\''s,y,y,'\'' --disable-option-checking'
build_configdirs=' libiberty'
build_cpu='x86_64'
build_libsubdir='build-x86_64-unknown-linux-gnu'
build_noncanonical='x86_64-unknown-linux-gnu'
build_os='linux-gnu'
build_subdir='build-x86_64-unknown-linux-gnu'
build_tooldir='${exec_prefix}/x86_64-unknown-linux-gnu'
build_vendor='unknown'
clooginc=''
clooglibs=''
compare_exclusions='gcc/cc*-checksum$(objext) | gcc/ada/*tools/*'
config_shell='/bin/sh'
configdirs=' intl libiberty opcodes bfd readline tcl tk itcl libgui libdecnumber sim gdb etc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
do_compare='cmp --ignore-initial=16 $$f1 $$f2'
docdir='${datarootdir}/doc/${PACKAGE}'
dvidir='${docdir}'
exec_prefix='${prefix}'
extra_host_libiberty_configure_flags=''
extra_mpc_gmp_configure_flags=''
extra_mpc_mpfr_configure_flags=''
extra_mpfr_configure_flags=''
gmpinc=' '
gmplibs=' -lmpfr -lgmp'
host='x86_64-unknown-linux-gnu'
host_alias=''
host_configargs='--cache-file=./config.cache  --with-system-zlib  --program-transform-name='\''s,y,y,'\'' --disable-option-checking'
host_cpu='x86_64'
host_noncanonical='x86_64-unknown-linux-gnu'
host_os='linux-gnu'
host_subdir='.'
host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
libdir='${exec_prefix}/lib'
libelfinc='-I/usr/include/libelf'
libelflibs='-lelf'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
oldincludedir='/usr/include'
pdfdir='${docdir}'
poststage1_ldflags=''
poststage1_libs=''
pplinc=''
ppllibs=''
prefix='/usr/local'
program_transform_name='s,y,y,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
stage1_cflags='-g -fkeep-inline-functions'
stage1_checking='--enable-checking=yes,types'
stage1_languages=',c,'
stage1_ldflags=''
stage1_libs=''
stage2_werror_flag=''
sysconfdir='${prefix}/etc'
target='x86_64-unknown-linux-gnu'
target_alias=''
target_configargs='--cache-file=./config.cache --enable-multilib  --program-transform-name='\''s,y,y,'\'' --disable-option-checking'
target_cpu='x86_64'
target_noncanonical='x86_64-unknown-linux-gnu'
target_os='linux-gnu'
target_subdir='x86_64-unknown-linux-gnu'
target_vendor='unknown'
tooldir='${exec_prefix}/x86_64-unknown-linux-gnu'

## ------------------- ##
## File substitutions. ##
## ------------------- ##

alphaieee_frag='/dev/null'
host_makefile_frag='/dev/null'
ospace_frag='/dev/null'
serialization_dependencies='serdep.tmp'
target_makefile_frag='./config/mt-gnu'

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define PACKAGE_STRING ""
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL ""
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_LIBELF_H 1
#define HAVE_GELF_H 1

configure: exit 0

[-- Attachment #1.5: make.err.txt --]
[-- Type: text/plain, Size: 654 bytes --]

configure: WARNING:
*** Makeinfo is missing. Info documentation will not be built.
WARNING: `makeinfo' is missing on your system.  You should only need it if
         you modified a `.texi' or `.texinfo' file, or any other file
         indirectly affecting the aspect of the manual.  The spurious
         call might also be the consequence of using a buggy `make' (AIX,
         DU, IRIX).  You might want to install the `Texinfo' package or
         the `GNU make' package.  Grab either from any GNU archive site.
make[3]: *** [bfd.info] Error 1
make[2]: *** [info-recursive] Error 1
make[1]: *** [all-bfd] Error 2
make: *** [all] Error 2

[-- Attachment #1.6: make.out.txt --]
[-- Type: text/plain, Size: 49756 bytes --]

make[1]: Entering directory `/tmp/Insight-705/src'
Configuring in ./intl
configure: creating cache ./config.cache
checking whether make sets $(MAKE)... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for x86_64-unknown-linux-gnu-gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for x86_64-unknown-linux-gnu-ranlib... ranlib
checking for library containing strerror... none required
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for off_t... yes
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... yes
checking for working mmap... yes
checking whether we are using the GNU C Library 2.1 or newer... yes
checking whether integer division by zero raises SIGFPE... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unsigned long long... yes
checking for inttypes.h... yes
checking whether the inttypes.h PRIxNN macros are broken... no
checking for ld used by GCC... ld
checking if the linker (ld) is GNU ld... yes
checking for shared library run path origin... done
checking argz.h usability... yes
checking argz.h presence... yes
checking for argz.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking nl_types.h usability... yes
checking nl_types.h presence... yes
checking for nl_types.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking for feof_unlocked... yes
checking for fgets_unlocked... yes
checking for getc_unlocked... yes
checking for getcwd... yes
checking for getegid... yes
checking for geteuid... yes
checking for getgid... yes
checking for getuid... yes
checking for mempcpy... yes
checking for munmap... yes
checking for putenv... yes
checking for setenv... yes
checking for setlocale... yes
checking for stpcpy... yes
checking for strcasecmp... yes
checking for strdup... yes
checking for strtoul... yes
checking for tsearch... yes
checking for __argz_count... yes
checking for __argz_stringify... yes
checking for __argz_next... yes
checking for __fsetlocking... yes
checking for iconv... yes
checking for iconv declaration... install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for nl_langinfo and CODESET... yes
checking for LC_MESSAGES... yes
checking for bison... bison
checking version of bison... 2.4.1, ok
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for aclocal... aclocal
checking for autoconf... autoconf
checking for autoheader... autoheader
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.intl
config.status: creating config.h
config.status: executing default-1 commands
Configuring in ./libiberty
configure: creating cache ./config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for makeinfo... /tmp/Insight-705/src/missing makeinfo --split-size=5000000
checking for perl... perl
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for x86_64-unknown-linux-gnu-ar... ar
checking for x86_64-unknown-linux-gnu-ranlib... ranlib
checking for x86_64-unknown-linux-gnu-gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking how to run the C preprocessor... gcc -E
checking whether gcc supports -W... yes
checking whether gcc supports -Wall... yes
checking whether gcc supports -Wwrite-strings... yes
checking whether gcc supports -Wc++-compat... yes
checking whether gcc supports -Wstrict-prototypes... yes
checking whether gcc supports -pedantic ... yes
checking whether gcc and cc understand -c and -o together... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking whether byte ordering is bigendian... no
checking for a BSD-compatible install... /usr/bin/install -c
checking for sys/file.h... yes
checking for sys/param.h... yes
checking for limits.h... yes
checking for stdlib.h... (cached) yes
checking for malloc.h... yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for strings.h... (cached) yes
checking for sys/time.h... yes
checking for time.h... yes
checking for sys/resource.h... yes
checking for sys/stat.h... (cached) yes
checking for sys/mman.h... yes
checking for fcntl.h... yes
checking for alloca.h... yes
checking for sys/pstat.h... no
checking for sys/sysmp.h... no
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
checking for sys/sysctl.h... yes
checking for sys/systemcfg.h... no
checking for stdint.h... (cached) yes
checking for stdio_ext.h... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether errno must be declared... no
checking size of int... 4
checking for a 64-bit type... uint64_t
checking for intptr_t... yes
checking for uintptr_t... yes
checking for pid_t... yes
checking for library containing strerror... none required
checking for asprintf... yes
checking for atexit... yes
checking for basename... yes
checking for bcmp... yes
checking for bcopy... yes
checking for bsearch... yes
checking for bzero... yes
checking for calloc... yes
checking for clock... yes
checking for ffs... yes
checking for getcwd... yes
checking for getpagesize... yes
checking for gettimeofday... yes
checking for index... yes
checking for insque... yes
checking for memchr... yes
checking for memcmp... yes
checking for memcpy... yes
checking for memmem... yes
checking for memmove... yes
checking for mempcpy... yes
checking for memset... yes
checking for mkstemps... yes
checking for putenv... yes
checking for random... yes
checking for rename... yes
checking for rindex... yes
checking for setenv... yes
checking for snprintf... yes
checking for sigsetmask... yes
checking for stpcpy... yes
checking for stpncpy... yes
checking for strcasecmp... yes
checking for strchr... yes
checking for strdup... yes
checking for strncasecmp... yes
checking for strndup... yes
checking for strrchr... yes
checking for strstr... yes
checking for strtod... yes
checking for strtol... yes
checking for strtoul... yes
checking for strverscmp... yes
checking for tmpnam... yes
checking for vasprintf... yes
checking for vfprintf... yes
checking for vprintf... yes
checking for vsnprintf... yes
checking for vsprintf... yes
checking for waitpid... yes
checking whether alloca needs Cray hooks... no
checking stack direction for C alloca... -1
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
checking for sys_errlist... yes
checking for sys_nerr... yes
checking for sys_siglist... yes
checking for external symbol _system_configuration... no
checking for getrusage... yes
checking for on_exit... yes
checking for psignal... yes
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
checking for times... yes
checking for sbrk... yes
checking for gettimeofday... (cached) yes
checking for realpath... yes
checking for canonicalize_file_name... yes
checking for pstat_getstatic... no
checking for pstat_getdynamic... no
checking for sysmp... no
checking for getsysinfo... no
checking for table... no
checking for sysctl... yes
checking for wait3... yes
checking for wait4... yes
checking for __fsetlocking... yes
checking whether basename is declared... no
checking whether ffs is declared... yes
checking whether asprintf is declared... no
checking whether vasprintf is declared... no
checking whether snprintf is declared... yes
checking whether vsnprintf is declared... yes
checking whether calloc is declared... yes
checking whether getenv is declared... yes
checking whether getopt is declared... yes
checking whether malloc is declared... yes
checking whether realloc is declared... yes
checking whether sbrk is declared... yes
checking whether strverscmp is declared... no
checking whether canonicalize_file_name must be declared... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... yes
checking for working strncmp... yes
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating testsuite/Makefile
config.status: creating config.h
config.status: executing default commands
Configuring in ./bfd
configure: creating cache ./config.cache
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for x86_64-unknown-linux-gnu-gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for library containing strerror... none required
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for x86_64-unknown-linux-gnu-ar... ar
checking for x86_64-unknown-linux-gnu-ranlib... ranlib
checking for x86_64-unknown-linux-gnu-gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1966080
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
checking for x86_64-unknown-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for x86_64-unknown-linux-gnu-ar... (cached) ar
checking for x86_64-unknown-linux-gnu-strip... no
checking for strip... strip
checking for x86_64-unknown-linux-gnu-ranlib... (cached) ranlib
checking command to parse nm output from gcc object... ok
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... yes
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether to install libbfd... yes
checking whether NLS is requested... yes
checking for catalogs to be installed...  da es fi fr id ja ro ru rw sv tr vi zh_CN
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking size of long long... 8
checking size of void *... 8
checking size of long... 8
checking alloca.h usability... yes
checking alloca.h presence... yes
checking for alloca.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for unistd.h... (cached) yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for sys/stat.h... (cached) yes
looking for a compliant stdint.h in stdint.h, checking for uintmax_t... yes
checking for uintptr_t... yes
checking for int_least32_t... yes
checking for int_fast32_t... yes
checking for uint64_t... yes
checking what to include in bfd_stdint.h... stdint.h (already complete)
checking whether time.h and sys/time.h may both be included... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking whether string.h and strings.h may both be included... yes
checking for fcntl... yes
checking for getpagesize... yes
checking for setitimer... yes
checking for sysconf... yes
checking for fdopen... yes
checking for getuid... yes
checking for getgid... yes
checking for fileno... yes
checking for strtoull... yes
checking whether basename is declared... yes
checking whether ftello is declared... yes
checking whether ftello64 is declared... yes
checking whether fseeko is declared... yes
checking whether fseeko64 is declared... yes
checking whether ffs is declared... yes
checking whether free is declared... yes
checking whether getenv is declared... yes
checking whether malloc is declared... yes
checking whether realloc is declared... yes
checking whether stpcpy is declared... yes
checking whether strstr is declared... yes
checking whether snprintf is declared... yes
checking whether vsnprintf is declared... yes
checking for library containing zlibVersion... -lz
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking sys/procfs.h usability... yes
checking sys/procfs.h presence... yes
checking for sys/procfs.h... yes
checking for prstatus_t in sys/procfs.h... yes
checking for prstatus32_t in sys/procfs.h... no
checking for prstatus_t.pr_who in sys/procfs.h... no
checking for prstatus32_t.pr_who in sys/procfs.h... no
checking for pstatus_t in sys/procfs.h... no
checking for pxstatus_t in sys/procfs.h... no
checking for pstatus32_t in sys/procfs.h... no
checking for prpsinfo_t in sys/procfs.h... yes
checking for prpsinfo32_t in sys/procfs.h... no
checking for psinfo_t in sys/procfs.h... no
checking for psinfo32_t in sys/procfs.h... no
checking for lwpstatus_t in sys/procfs.h... no
checking for lwpxstatus_t in sys/procfs.h... no
checking for lwpstatus_t.pr_context in sys/procfs.h... no
checking for lwpstatus_t.pr_reg in sys/procfs.h... no
checking for win32_pstatus_t in sys/procfs.h... no
checking linker --as-needed support... yes
checking for cos in -lm... yes
checking for gcc version with buggy 64-bit support... no
checking for ftello... yes
checking for ftello64... yes
checking for fseeko... yes
checking for fseeko64... yes
checking for fopen64... yes
checking size of off_t... 8
checking file_ptr type... BFD_HOST_64_BIT
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... yes
checking for madvise... yes
checking for mprotect... yes
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating bfd-in3.h
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: executing bfd_stdint.h commands
config.status: executing default commands
make[2]: Entering directory `/tmp/Insight-705/src/libiberty'
if [ x"" != x ] && [ ! -d pic ]; then \
	  mkdir pic; \
	else true; fi
touch stamp-picdir
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./regex.c -o pic/regex.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./regex.c -o regex.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./cplus-dem.c -o pic/cplus-dem.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./cplus-dem.c -o cplus-dem.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./cp-demangle.c -o pic/cp-demangle.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./cp-demangle.c -o cp-demangle.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./md5.c -o pic/md5.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./md5.c -o md5.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./sha1.c -o pic/sha1.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./sha1.c -o sha1.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./alloca.c -o pic/alloca.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./alloca.c -o alloca.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./argv.c -o pic/argv.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./argv.c -o argv.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./choose-temp.c -o pic/choose-temp.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./choose-temp.c -o choose-temp.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./concat.c -o pic/concat.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./concat.c -o concat.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./cp-demint.c -o pic/cp-demint.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./cp-demint.c -o cp-demint.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./crc32.c -o pic/crc32.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./crc32.c -o crc32.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./dyn-string.c -o pic/dyn-string.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./dyn-string.c -o dyn-string.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./fdmatch.c -o pic/fdmatch.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./fdmatch.c -o fdmatch.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./fibheap.c -o pic/fibheap.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./fibheap.c -o fibheap.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./filename_cmp.c -o pic/filename_cmp.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./filename_cmp.c -o filename_cmp.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./floatformat.c -o pic/floatformat.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./floatformat.c -o floatformat.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./fnmatch.c -o pic/fnmatch.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./fnmatch.c -o fnmatch.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./fopen_unlocked.c -o pic/fopen_unlocked.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./fopen_unlocked.c -o fopen_unlocked.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./getopt.c -o pic/getopt.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./getopt.c -o getopt.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./getopt1.c -o pic/getopt1.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./getopt1.c -o getopt1.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./getpwd.c -o pic/getpwd.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./getpwd.c -o getpwd.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./getruntime.c -o pic/getruntime.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./getruntime.c -o getruntime.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./hashtab.c -o pic/hashtab.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./hashtab.c -o hashtab.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./hex.c -o pic/hex.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./hex.c -o hex.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./lbasename.c -o pic/lbasename.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./lbasename.c -o lbasename.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./lrealpath.c -o pic/lrealpath.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./lrealpath.c -o lrealpath.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./make-relative-prefix.c -o pic/make-relative-prefix.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./make-relative-prefix.c -o make-relative-prefix.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./make-temp-file.c -o pic/make-temp-file.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./make-temp-file.c -o make-temp-file.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./objalloc.c -o pic/objalloc.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./objalloc.c -o objalloc.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./obstack.c -o pic/obstack.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./obstack.c -o obstack.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./partition.c -o pic/partition.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./partition.c -o partition.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./pexecute.c -o pic/pexecute.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./pexecute.c -o pexecute.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./physmem.c -o pic/physmem.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./physmem.c -o physmem.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./pex-common.c -o pic/pex-common.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./pex-common.c -o pex-common.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./pex-one.c -o pic/pex-one.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./pex-one.c -o pex-one.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./pex-unix.c -o pic/pex-unix.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./pex-unix.c -o pex-unix.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./safe-ctype.c -o pic/safe-ctype.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./safe-ctype.c -o safe-ctype.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./sort.c -o pic/sort.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./sort.c -o sort.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./spaces.c -o pic/spaces.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./spaces.c -o spaces.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./splay-tree.c -o pic/splay-tree.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./splay-tree.c -o splay-tree.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./strerror.c -o pic/strerror.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./strerror.c -o strerror.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./strsignal.c -o pic/strsignal.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./strsignal.c -o strsignal.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./unlink-if-ordinary.c -o pic/unlink-if-ordinary.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./unlink-if-ordinary.c -o unlink-if-ordinary.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./xatexit.c -o pic/xatexit.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./xatexit.c -o xatexit.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./xexit.c -o pic/xexit.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./xexit.c -o xexit.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./xmalloc.c -o pic/xmalloc.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./xmalloc.c -o xmalloc.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./xmemdup.c -o pic/xmemdup.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./xmemdup.c -o xmemdup.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./xstrdup.c -o pic/xstrdup.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./xstrdup.c -o xstrdup.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./xstrerror.c -o pic/xstrerror.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./xstrerror.c -o xstrerror.o
if [ x"" != x ]; then \
	  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ./xstrndup.c -o pic/xstrndup.o; \
	else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I./../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ./xstrndup.c -o xstrndup.o
rm -f ./libiberty.a pic/./libiberty.a
ar rc ./libiberty.a \
	  ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./safe-ctype.o ./sort.o ./spaces.o ./splay-tree.o ./strerror.o ./strsignal.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o  
ranlib ./libiberty.a
if [ x"" != x ]; then \
	  cd pic; \
	  ar rc ./libiberty.a \
	    ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./safe-ctype.o ./sort.o ./spaces.o ./splay-tree.o ./strerror.o ./strsignal.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o  ; \
	  ranlib ./libiberty.a; \
	  cd ..; \
	else true; fi
echo ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./safe-ctype.o ./sort.o ./spaces.o ./splay-tree.o ./strerror.o ./strsignal.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o > required-list
make[3]: Entering directory `/tmp/Insight-705/src/libiberty/testsuite'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp/Insight-705/src/libiberty/testsuite'
make[2]: Leaving directory `/tmp/Insight-705/src/libiberty'
make[2]: Entering directory `/tmp/Insight-705/src/intl'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/tmp/Insight-705/src/intl'
make[2]: Entering directory `/tmp/Insight-705/src/bfd'
creating bfdver.h
rm -f elf32-target.h
sed -e s/NN/32/g < ./elfxx-target.h > elf32-target.new
mv -f elf32-target.new elf32-target.h
rm -f elf64-target.h
sed -e s/NN/64/g < ./elfxx-target.h > elf64-target.new
mv -f elf64-target.new elf64-target.h
rm -f targmatch.h
sed -f ./targmatch.sed < ./config.bfd > targmatch.new
mv -f targmatch.new targmatch.h
Making info in doc
make[3]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
gcc -o chew.$$ -g -O2  \
	   -I.. -I./.. -I./../../include -I./../../intl -I../../intl ./chew.c; \
	/bin/sh ./../../move-if-change chew.$$ chew
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../aoutx.h >aoutx.tmp
/bin/sh ./../../move-if-change aoutx.tmp aoutx.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../archive.c >archive.tmp
/bin/sh ./../../move-if-change archive.tmp archive.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str < ./../archures.c >archures.tmp
/bin/sh ./../../move-if-change archures.tmp archures.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str < ./../bfd.c >bfd.tmp
/bin/sh ./../../move-if-change bfd.tmp bfdt.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str < ./../cache.c >cache.tmp
/bin/sh ./../../move-if-change cache.tmp cache.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../coffcode.h >coffcode.tmp
/bin/sh ./../../move-if-change coffcode.tmp coffcode.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../corefile.c >core.tmp
/bin/sh ./../../move-if-change core.tmp core.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../elf.c >elf.tmp
/bin/sh ./../../move-if-change elf.tmp elf.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../elfcode.h >elfcode.tmp
/bin/sh ./../../move-if-change elfcode.tmp elfcode.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../format.c >format.tmp
/bin/sh ./../../move-if-change format.tmp format.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str < ./../libbfd.c >libbfd.tmp
/bin/sh ./../../move-if-change libbfd.tmp libbfd.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str < ./../bfdwin.c >bfdwin.tmp
/bin/sh ./../../move-if-change bfdwin.tmp bfdwin.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str < ./../bfdio.c >bfdio.tmp
/bin/sh ./../../move-if-change bfdio.tmp bfdio.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str  <./../opncls.c >opncls.tmp
/bin/sh ./../../move-if-change opncls.tmp opncls.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../reloc.c >reloc.tmp
/bin/sh ./../../move-if-change reloc.tmp reloc.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../section.c >section.tmp
/bin/sh ./../../move-if-change section.tmp section.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../syms.c >syms.tmp
/bin/sh ./../../move-if-change syms.tmp syms.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../targets.c >targets.tmp
/bin/sh ./../../move-if-change targets.tmp targets.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../init.c >init.tmp
/bin/sh ./../../move-if-change init.tmp init.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../hash.c >hash.tmp
/bin/sh ./../../move-if-change hash.tmp hash.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../linker.c >linker.tmp
/bin/sh ./../../move-if-change linker.tmp linker.texi
make chew
make[4]: Entering directory `/tmp/Insight-705/src/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
./chew -f ./doc.str <./../mmo.c >mmo.tmp
/bin/sh ./../../move-if-change mmo.tmp mmo.texi
creating bfdver.texi
restore=: && backupdir=".am$$" && \
	rm -rf $backupdir && mkdir $backupdir && \
	if (/tmp/Insight-705/src/missing makeinfo --split-size=5000000 --split-size=5000000 --version) >/dev/null 2>&1; then \
	  for f in bfd.info bfd.info-[0-9] bfd.info-[0-9][0-9] bfd.i[0-9] bfd.i[0-9][0-9]; do \
	    if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
	  done; \
	else :; fi && \
	if /tmp/Insight-705/src/missing makeinfo --split-size=5000000 --split-size=5000000   -I . \
	 -o bfd.info `test -f 'bfd.texinfo' || echo './'`bfd.texinfo; \
	then \
	  rc=0; \
	else \
	  rc=$?; \
	  $restore $backupdir/* `echo "./bfd.info" | sed 's|[^/]*$||'`; \
	fi; \
	rm -rf $backupdir; exit $rc
make[3]: Leaving directory `/tmp/Insight-705/src/bfd/doc'
Making info in po
make[3]: Entering directory `/tmp/Insight-705/src/bfd/po'
( if test 'x.' != 'x.'; then \
	    posrcprefix='../'; \
	  else \
	    posrcprefix="../"; \
	  fi; \
	  rm -f SRC-POTFILES-t SRC-POTFILES \
	    && (sed -e '/^#/d' \
	            -e '/^[ 	]*$/d' \
		    -e "s@.*@	$posrcprefix& \\\\@" < ./SRC-POTFILES.in \
		| sed -e '$s/\\$//') > SRC-POTFILES-t \
	    && chmod a-w SRC-POTFILES-t \
	    && mv SRC-POTFILES-t SRC-POTFILES )
( rm -f BLD-POTFILES-t BLD-POTFILES \
	    && (sed -e '/^#/d' \
	            -e '/^[ 	]*$/d' \
		    -e "s@.*@	../& \\\\@" < ./BLD-POTFILES.in \
		| sed -e '$s/\\$//') > BLD-POTFILES-t \
	    && chmod a-w BLD-POTFILES-t \
	    && mv BLD-POTFILES-t BLD-POTFILES )
cd .. \
	  && CONFIG_FILES=po/Makefile.in:po/Make-in \
	     CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating po/Makefile.in
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: executing bfd_stdint.h commands
config.status: executing default commands
make[3]: Leaving directory `/tmp/Insight-705/src/bfd/po'
make[3]: Entering directory `/tmp/Insight-705/src/bfd/po'
make[3]: Nothing to be done for `info'.
make[3]: Leaving directory `/tmp/Insight-705/src/bfd/po'
make[3]: Entering directory `/tmp/Insight-705/src/bfd'
make[3]: Nothing to be done for `info-am'.
make[3]: Leaving directory `/tmp/Insight-705/src/bfd'
make[2]: Leaving directory `/tmp/Insight-705/src/bfd'
make[1]: Leaving directory `/tmp/Insight-705/src'

[-- Attachment #2: smime.p7s --]
[-- Type: application/x-pkcs7-signature, Size: 5022 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: cannot build on RHEL 6
  2012-09-06 17:57         ` RAYAPROL Raja
@ 2012-09-06 18:08           ` Keith Seitz
  2012-09-07 13:56             ` RAYAPROL Raja
  0 siblings, 1 reply; 9+ messages in thread
From: Keith Seitz @ 2012-09-06 18:08 UTC (permalink / raw)
  To: RAYAPROL Raja; +Cc: insight

On 09/06/2012 10:56 AM, RAYAPROL Raja wrote:
> Thanks for the tip. I assumed that I was picking the stable branch.

Yeah, I apologize. I haven't actually made an official release in a long 
time. I'm *long* overdue.

> I can't use cvs, but I tried to download the 7.0.5 sources.

Ick. 7.0.5 is still just as equally old. If you can download source 
tarballs, here's what I would do:

Download the official 7.5 gdb release. Ping me, and I will send you the 
insight bits (and instructions) for that release. This will give you 
nearly a 7.5 release of Insight.

> [...] but I don't see a insight executable and gdb doesn't
> recognize the insight option.

Your build is messed up: insight was never built. Hmm. The file 
"make.out.txt" doesn't even mention the gdb directory...

The MAKEINFO problem can be worked around by setting MAKEINFO=true in 
your environment.

> Do you think you can help?

I hope so! :-)

Keith

^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: cannot build on RHEL 6
  2012-09-06 18:08           ` Keith Seitz
@ 2012-09-07 13:56             ` RAYAPROL Raja
  0 siblings, 0 replies; 9+ messages in thread
From: RAYAPROL Raja @ 2012-09-07 13:56 UTC (permalink / raw)
  To: Keith Seitz; +Cc: insight

[-- Attachment #1: Type: text/plain, Size: 1328 bytes --]

OK. I downloaded and installed the gdb 7.5 release. Can you send me a link
for the 7.5 insight source? I don't see it.

Thanks and regards,

Raja
_______________________________________________________________
-----Original Message-----
From: Keith Seitz [mailto:keiths@redhat.com] 
Sent: Thursday, September 06, 2012 2:08 PM
To: RAYAPROL Raja
Cc: insight@sourceware.org
Subject: Re: cannot build on RHEL 6

On 09/06/2012 10:56 AM, RAYAPROL Raja wrote:
> Thanks for the tip. I assumed that I was picking the stable branch.

Yeah, I apologize. I haven't actually made an official release in a long 
time. I'm *long* overdue.

> I can't use cvs, but I tried to download the 7.0.5 sources.

Ick. 7.0.5 is still just as equally old. If you can download source 
tarballs, here's what I would do:

Download the official 7.5 gdb release. Ping me, and I will send you the 
insight bits (and instructions) for that release. This will give you 
nearly a 7.5 release of Insight.

> [...] but I don't see a insight executable and gdb doesn't
> recognize the insight option.

Your build is messed up: insight was never built. Hmm. The file 
"make.out.txt" doesn't even mention the gdb directory...

The MAKEINFO problem can be worked around by setting MAKEINFO=true in 
your environment.

> Do you think you can help?

I hope so! :-)

Keith

[-- Attachment #2: smime.p7s --]
[-- Type: application/x-pkcs7-signature, Size: 5022 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2012-09-07 13:56 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <2B3152C6-06A1-46FF-9A3F-444A16935920@hp.com>
2012-09-05 19:15 ` cannot build on RHEL 6 RAYAPROL Raja
2012-09-05 19:26   ` Keith Seitz
2012-09-05 19:44     ` RAYAPROL Raja
2012-09-05 20:18       ` Carl Lowenstein
2012-09-05 20:22         ` RAYAPROL Raja
2012-09-05 20:26       ` Keith Seitz
2012-09-06 17:57         ` RAYAPROL Raja
2012-09-06 18:08           ` Keith Seitz
2012-09-07 13:56             ` RAYAPROL Raja

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).