DCDev ISO Link

If you have any questions on programming, this is the place to ask them, whether you're a newbie or an experienced programmer. Discussion on programming in general is also welcome. We will help you with programming homework, but we will not do your work for you! Any porting requests must be made in Developmental Ideas.
Vectrix Quest
DCEmu Fast Newbie
DCEmu Fast Newbie
Posts: 22
https://www.artistsworkshop.eu/meble-kuchenne-na-wymiar-warszawa-gdzie-zamowic/
Joined: Thu Nov 14, 2013 1:10 pm
Has thanked: 0
Been thanked: 0

DCDev ISO Link

Post by Vectrix Quest »

Does anyone have a link to the DCDev ISO? The one on the site http://dchelp.dcemulation.org/downloads ... /DDEr4.rar is dead and i need that iso to start dreamcast development on windows. :cry: Any assistance in this matter would be greatly appreciated.

Sincerely,

Vectrix Quest
User avatar
BlueCrab
The Crabby Overlord
The Crabby Overlord
Posts: 5658
Joined: Mon May 27, 2002 11:31 am
Location: Sailing the Skies of Arcadia
Has thanked: 9 times
Been thanked: 69 times
Contact:

Re: DCDev ISO Link

Post by BlueCrab »

I'd recommend highly against using the ISO, as it is extremely outdated at this point. Look around the Programming Discussion forums for help on actually getting things set up on Windows. There have been several topics on the matter that are much more recent than the DC Dev ISO is.
Vectrix Quest
DCEmu Fast Newbie
DCEmu Fast Newbie
Posts: 22
Joined: Thu Nov 14, 2013 1:10 pm
Has thanked: 0
Been thanked: 0

Re: DCDev ISO Link

Post by Vectrix Quest »

BlueCrab wrote:I'd recommend highly against using the ISO, as it is extremely outdated at this point. Look around the Programming Discussion forums for help on actually getting things set up on Windows. There have been several topics on the matter that are much more recent than the DC Dev ISO is.
Thanks for the info. The only thing i could find this is recent is this which is nowhere as "automated" as the DCDev ISO. If someone could please "dumb it down" for me it would be greatly appreciated.

Sincerely,

Vectrix Quest
User avatar
BlueCrab
The Crabby Overlord
The Crabby Overlord
Posts: 5658
Joined: Mon May 27, 2002 11:31 am
Location: Sailing the Skies of Arcadia
Has thanked: 9 times
Been thanked: 69 times
Contact:

Re: DCDev ISO Link

Post by BlueCrab »

Even that is pretty old, as KOS isn't in SVN anymore anyway...

Unfortunately, there is no automated way of getting things to work, but it isn't all that hard to get things going as long as you're willing to do a little bit of work (which, if you're planning on programming anyway, you should be willing to do :wink: ).

I can't guarantee any of this information, since I don't use Cygwin, but here goes... Go to the cygwin site and download the installer. While installing, make sure the following packages are installed (some version numbers are listed in parenthesis, make sure that at least that version or later are installed):
Indiket wrote:automake, bison, flex, binutils, gcc4 (4.7.2), gcc4-g++, git, libgmp-devel (5.1.1-1), libgmp10, libmpfr-devel, (libmpfr1 + libmpfr4),
libmpc-devel, (libmpc1 + libmpc3), libiconv, make, patch, patchutils, wget, libtool
From there, once Cygwin is installed, start it up and run the following commands to get the latest KOS source code:

Code: Select all

git clone git://git.code.sf.net/p/cadcdev/kallistios
git clone git://git.code.sf.net/p/cadcdev/kos-ports
cd kos-ports
git submodule update --init
Then, you're going to need to build a toolchain. KOS comes with a script to do that in a mostly automated fashion, assuming all the dependencies are in place. Do the following commands in your Cygwin terminal to build it:

Code: Select all

cd ~/kallistios/utils/dc-chain
./download.sh
./unpack.sh
make
That last one will take a significant amount of time and produce a LOT of output. If it doesn't end by saying something about an error, then you should be good to go on the toolchain (which is the sticking point for a lot of people).

Now you'll need to set up your KOS environment script. Assuming we're starting from right after that make, then do the following things in your terminal:

Code: Select all

cd ../..
pwd
cp doc/environ.sh.sample ~/environ.sh
chmod u+x ~/environ.sh
Make note of what that pwd command spits out. It should be something like /home/[your username]/kallistios. Now, you'll want to open up that environ.sh file you just copied in your favorite text editor. The file should be in your home directory. I'm not entirely sure of how Cygwin installs these days, but back when I used Cygwin last, the home directory would be something like C:\Cygwin\home\[your username]. Find the file, and open it. Look for the lines that say

Code: Select all

# KOS main base path
export KOS_BASE="/usr/local/home/bard/prj/svn/kos"
Change the path on the KOS_BASE line to match whatever was spit out of the "pwd" command earlier. Now your environment script will be set up properly. Start a new Cygwin terminal (you should be able to close the old one at this point, if you haven't already), and run the following commands to build KOS (note the space between the two dots on the first command, it is important):

Code: Select all

. ./environ.sh
cd $KOS_BASE
make
And that should have everything built for you, assuming I haven't missed anything and that Cygwin doesn't fail spectacularly. :wink:

Also... Moving this to the Programming forum, where it might get more attention from people who use Cygwin for this stuff. :wink:
Vectrix Quest
DCEmu Fast Newbie
DCEmu Fast Newbie
Posts: 22
Joined: Thu Nov 14, 2013 1:10 pm
Has thanked: 0
Been thanked: 0

Re: DCDev ISO Link

Post by Vectrix Quest »

BlueCrab wrote:Even that is pretty old, as KOS isn't in SVN anymore anyway...

Unfortunately, there is no automated way of getting things to work, but it isn't all that hard to get things going as long as you're willing to do a little bit of work (which, if you're planning on programming anyway, you should be willing to do :wink: ).

I can't guarantee any of this information, since I don't use Cygwin, but here goes... Go to the cygwin site and download the installer. While installing, make sure the following packages are installed (some version numbers are listed in parenthesis, make sure that at least that version or later are installed):
Indiket wrote:automake, bison, flex, binutils, gcc4 (4.7.2), gcc4-g++, git, libgmp-devel (5.1.1-1), libgmp10, libmpfr-devel, (libmpfr1 + libmpfr4),
libmpc-devel, (libmpc1 + libmpc3), libiconv, make, patch, patchutils, wget, libtool
From there, once Cygwin is installed, start it up and run the following commands to get the latest KOS source code:

Code: Select all

git clone git://git.code.sf.net/p/cadcdev/kallistios
git clone git://git.code.sf.net/p/cadcdev/kos-ports
cd kos-ports
git submodule update --init
Also... Moving this to the Programming forum, where it might get more attention from people who use Cygwin for this stuff. :wink:
I got up to the following part:

Code: Select all

git submodule update --init
and got a huge load of errors:
Copying skeleton files.
These files are for the users to personalise their cygwin experience.

They will never be overwritten nor automatically updated.

`./.bashrc' -> `/home/User//.bashrc'
`./.bash_profile' -> `/home/User//.bash_profile'
`./.inputrc' -> `/home/User//.inputrc'
`./.profile' -> `/home/User//.profile'

User@Mothra-PC ~
$ git clone git://git.code.sf.net/p/cadcdev/kallistios
Cloning into 'kallistios'...
remote: Counting objects: 9290, done.
remote: Compressing objects: 100% (4207/4207), done.
remote: Total 9290 (delta 5840), reused 7984 (delta 4966)
Receiving objects: 100% (9290/9290), 5.28 MiB | 2.10 MiB/s, done.
Resolving deltas: 100% (5840/5840), done.

User@Mothra-PC ~
$ git clone git://git.code.sf.net/p/cadcdev/kos-port
Cloning into 'kos-port'...
fatal: The remote end hung up unexpectedly

User@Mothra-PC ~
$ git clone git://git.code.sf.net/p/cadcdev/kos-ports
Cloning into 'kos-ports'...
remote: Counting objects: 25, done.
remote: Compressing objects: 100% (23/23), done.
remote: Total 25 (delta 9), reused 0 (delta 0)
Receiving objects: 100% (25/25), 4.91 KiB, done.
Resolving deltas: 100% (9/9), done.

User@Mothra-PC ~
$ cd kos-ports

User@Mothra-PC ~/kos-ports
$ git submodule update --init
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'SDL'...
remote: Counting objects: 505, done.
remote: Compressing objects: 100% (179/179), done.
remote: Total 505 (delta 319), reused 467 (delta 312)
Receiving objects: 100% (505/505), 449.77 KiB, done.
Resolving deltas: 100% (319/319), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libbz2'...
remote: Counting objects: 47, done.
remote: Compressing objects: 100% (44/44), done.
remote: Total 47 (delta 19), reused 0 (delta 0)
Receiving objects: 100% (47/47), 488.19 KiB | 643 KiB/s, done.
Resolving deltas: 100% (19/19), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libconio'...
remote: Counting objects: 55, done.
remote: Compressing objects: 100% (51/51), done.
remote: Total 55 (delta 22), reused 0 (delta 0)
Receiving objects: 100% (55/55), 13.27 KiB, done.
Resolving deltas: 100% (22/22), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libdcplib'...
remote: Counting objects: 36, done.
remote: Compressing objects: 100% (34/34), done.
remote: Total 36 (delta 13), reused 0 (delta 0)
Receiving objects: 100% (36/36), 50.42 KiB, done.
Resolving deltas: 100% (13/13), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libgl'...
remote: Counting objects: 60, done.
remote: Compressing objects: 100% (57/57), done.
remote: Total 60 (delta 29), reused 0 (delta 0)
Receiving objects: 100% (60/60), 29.76 KiB, done.
Resolving deltas: 100% (29/29), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libimageload'...
remote: Counting objects: 25, done.
remote: Compressing objects: 100% (23/23), done.
remote: Total 25 (delta 7), reused 0 (delta 0)
Receiving objects: 100% (25/25), 8.00 KiB, done.
Resolving deltas: 100% (7/7), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libjpeg'...
remote: Counting objects: 91, done.
remote: Compressing objects: 100% (89/89), done.
remote: Total 91 (delta 16), reused 0 (delta 0)
Receiving objects: 100% (91/91), 245.82 KiB, done.
Resolving deltas: 100% (16/16), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libkmg'...
remote: Counting objects: 28, done.
remote: Compressing objects: 100% (25/25), done.
remote: Total 28 (delta 10), reused 0 (delta 0)
Receiving objects: 100% (28/28), 5.30 KiB, done.
Resolving deltas: 100% (10/10), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libkosh'...
remote: Counting objects: 50, done.
remote: Compressing objects: 100% (46/46), done.
remote: Total 50 (delta 25), reused 0 (delta 0)
Receiving objects: 100% (50/50), 10.27 KiB, done.
Resolving deltas: 100% (25/25), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libmodplug'...
remote: Counting objects: 55, done.
remote: Compressing objects: 100% (52/52), done.
remote: Total 55 (delta 6), reused 0 (delta 0)
Receiving objects: 100% (55/55), 166.64 KiB, done.
Resolving deltas: 100% (6/6), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libmp3'...
remote: Counting objects: 158, done.
remote: Compressing objects: 100% (79/79), done.
remote: Total 158 (delta 78), reused 146 (delta 75)
Receiving objects: 100% (158/158), 129.59 KiB, done.
Resolving deltas: 100% (78/78), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'liboggvorbis'...
remote: Counting objects: 191, done.
remote: Compressing objects: 100% (95/95), done.
remote: Total 191 (delta 91), reused 178 (delta 88)
Receiving objects: 100% (191/191), 183.50 KiB, done.
Resolving deltas: 100% (91/91), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libparallax'...
remote: Counting objects: 71, done.
remote: Compressing objects: 100% (68/68), done.
remote: Total 71 (delta 32), reused 0 (delta 0)
Receiving objects: 100% (71/71), 26.46 KiB, done.
Resolving deltas: 100% (32/32), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libpcx'...
remote: Counting objects: 37, done.
remote: Compressing objects: 100% (34/34), done.
remote: Total 37 (delta 13), reused 0 (delta 0)
Receiving objects: 100% (37/37), 6.31 KiB, done.
Resolving deltas: 100% (13/13), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libpng'...
remote: Counting objects: 92, done.
remote: Compressing objects: 100% (89/89), done.
remote: Total 92 (delta 33), reused 0 (delta 0)
Receiving objects: 100% (92/92), 513.43 KiB, done.
Resolving deltas: 100% (33/33), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libs3m'...
remote: Counting objects: 25, done.
remote: Compressing objects: 100% (24/24), done.
remote: Total 25 (delta 7), reused 0 (delta 0)
Receiving objects: 100% (25/25), 20.25 KiB, done.
Resolving deltas: 100% (7/7), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libtga'...
remote: Counting objects: 40, done.
remote: Compressing objects: 100% (37/37), done.
remote: Total 40 (delta 15), reused 0 (delta 0)
Receiving objects: 100% (40/40), 6.01 KiB, done.
Resolving deltas: 100% (15/15), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libtremor'...
remote: Counting objects: 145, done.
remote: Compressing objects: 100% (77/77), done.
remote: Total 145 (delta 69), reused 135 (delta 65)
Receiving objects: 100% (145/145), 263.26 KiB, done.
Resolving deltas: 100% (69/69), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'libtsunami'...
remote: Counting objects: 219, done.
remote: Compressing objects: 100% (95/95), done.
remote: Total 219 (delta 120), reused 212 (delta 119)
Receiving objects: 100% (219/219), 48.54 KiB, done.
Resolving deltas: 100% (120/120), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'lua'...
remote: Counting objects: 360, done.
remote: Compressing objects: 100% (264/264), done.
remote: Total 360 (delta 133), reused 238 (delta 90)
Receiving objects: 100% (360/360), 513.21 KiB, done.
Resolving deltas: 100% (133/133), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'lwip'...
remote: Counting objects: 249, done.
remote: Compressing objects: 100% (129/129), done.
remote: Total 249 (delta 105), reused 245 (delta 104)
Receiving objects: 100% (249/249), 303.99 KiB, done.
Resolving deltas: 100% (105/105), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

Cloning into 'zlib'...
remote: Counting objects: 108, done.
remote: Compressing objects: 100% (78/78), done.
remote: Total 108 (delta 31), reused 98 (delta 28)
Receiving objects: 100% (108/108), 297.25 KiB, done.
Resolving deltas: 100% (31/31), done.
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
/usr/lib/git-core/git.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory


User@Mothra-PC ~/kos-ports
$
Any advice would be greatly appreciated.

Sincerely,

Vectrix Quest
User avatar
BlueCrab
The Crabby Overlord
The Crabby Overlord
Posts: 5658
Joined: Mon May 27, 2002 11:31 am
Location: Sailing the Skies of Arcadia
Has thanked: 9 times
Been thanked: 69 times
Contact:

Re: DCDev ISO Link

Post by BlueCrab »

It does appear that it worked, even though it spit out those errors. The rest of the output looks correct.
User avatar
I.M. Weasel
Iron Muskateer Weasel
Posts: 2780
Joined: Fri Jan 04, 2002 4:45 am
Location: The city of the future, Los Braingeles
Has thanked: 1 time
Been thanked: 3 times
Contact:

Re: DCDev ISO Link

Post by I.M. Weasel »

looks good until this part
Vectrix wrote:User@Mothra-PC ~
$ git clone git://git.code.sf.net/p/cadcdev/kos-port
Cloning into 'kos-port'...
fatal: The remote end hung up unexpectedly
Since the remote server lost connection, maybe try running it again and see if the connection stays constant and thus finishes downloading the packages.
:arrow: http://tofuheavyindustries.com
Mac Dream Tool / Mac Dream Tool Services (released Sept. 2019)
Creator of Various awesome Video Games

"You don't have to be forgiven. Clint Eastwood taught us that."
Vectrix Quest
DCEmu Fast Newbie
DCEmu Fast Newbie
Posts: 22
Joined: Thu Nov 14, 2013 1:10 pm
Has thanked: 0
Been thanked: 0

Re: DCDev ISO Link

Post by Vectrix Quest »

I.M. Weasel wrote:looks good until this part
Vectrix wrote:User@Mothra-PC ~
$ git clone git://git.code.sf.net/p/cadcdev/kos-port
Cloning into 'kos-port'...
fatal: The remote end hung up unexpectedly
Since the remote server lost connection, maybe try running it again and see if the connection stays constant and thus finishes downloading the packages.
I did:
$ git clone git://git.code.sf.net/p/cadcdev/kos-ports
Cloning into 'kos-ports'...
remote: Counting objects: 25, done.
remote: Compressing objects: 100% (23/23), done.
remote: Total 25 (delta 9), reused 0 (delta 0)
Receiving objects: 100% (25/25), 4.91 KiB, done.
Resolving deltas: 100% (9/9), done.
Thanks anyways,

User@Mothra-PC ~
$ cd kallistios/utils/dc-chain

User@Mothra-PC ~/kallistios/utils/dc-chain
$ ./unpack.sh

User@Mothra-PC ~/kallistios/utils/dc-chain
$ make
patch -d gcc-4.7.3 -p1 < /home/User/kallistios/utils/dc-chain/patches/gcc-4.7.3-kos.diff
patching file gcc/configure
patching file libgcc/config/sh/crt1.S
patching file libgcc/config/sh/fake-kos.S
patching file libgcc/config/sh/gthr-kos.h
patching file libgcc/config/sh/t-sh
patching file libgcc/configure
patch -d newlib-2.0.0 -p1 < /home/User/kallistios/utils/dc-chain/patches/newlib-2.0.0-kos.diff
patching file newlib/configure.host
patching file newlib/libc/include/assert.h
patching file newlib/libc/include/machine/_default_types.h
patching file newlib/libc/include/sys/types.h
patching file newlib/libc/stdlib/assert.c
patching file newlib/libc/sys/sh/ftruncate.c
patching file newlib/libc/sys/sh/sys/lock.h
patching file newlib/libc/sys/sh/syscalls.c
patching file newlib/libc/sys/sh/trap.S
patching file newlib/libc/sys/sh/truncate.c
+++ Building binutils-2.23.2 to build-binutils-sh-elf-2.23.2...
mkdir -p build-binutils-sh-elf-2.23.2
> /home/User/kallistios/utils/dc-chain/logs/build-binutils-sh-elf-2.23.2.log
cd build-binutils-sh-elf-2.23.2; ../binutils-2.23.2/configure --target=sh-elf --prefix=/opt/toolchains/dc/sh-elf --disable-werror 2>&1 | tee -a /home/User/kallistios/utils/dc-chain/logs/build-binutils-sh-elf-2.23.2.log && [ $PIPESTATUS -eq 0 ]
checking build system type... x86_64-unknown-cygwin
checking host system type... x86_64-unknown-cygwin
checking target system type... sh-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... /usr/bin/sed
checking for gawk... gawk
checking to see if cat works as expected... yes
checking for gcc... gcc
checking for C compiler default output file name... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... .exe
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 g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for gnatbind... no
checking for gnatmake... no
checking whether compiler driver understands Ada... no
checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
checking for objdir... .libs
checking for PWL_handle_timeout in -lpwl... no
checking for version 0.11 (revision 0 or later) of PPL... no
checking for default BUILD_CONFIG...
checking for bison... bison -y
checking for bison... bison
checking for gm4... no
checking for gnum4... no
checking for m4... m4
checking for flex... flex
checking for flex... flex
checking for makeinfo... makeinfo
checking for expect... no
checking for runtest... no
checking for ar... ar
checking for as... as
checking for dlltool... dlltool
checking for ld... (cached) /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking for lipo... no
checking for nm... nm
checking for ranlib... ranlib
checking for strip... strip
checking for windres... windres
checking for windmc... windmc
checking for objcopy... objcopy
checking for objdump... objdump
checking for readelf... readelf
checking for sh-elf-cc... no
checking for sh-elf-gcc... no
checking for sh-elf-c++... no
checking for sh-elf-g++... no
checking for sh-elf-cxx... no
checking for sh-elf-gxx... no
checking for sh-elf-gcc... no
checking for sh-elf-gcj... no
checking for sh-elf-gfortran... no
checking for sh-elf-gccgo... no
checking for sh-elf-ar... no
checking for sh-elf-as... no
checking for sh-elf-dlltool... no
checking for sh-elf-ld... no
checking for sh-elf-lipo... no
checking for sh-elf-nm... no
checking for sh-elf-objdump... no
checking for sh-elf-ranlib... no
checking for sh-elf-readelf... no
checking for sh-elf-strip... no
checking for sh-elf-windres... no
checking for sh-elf-windmc... no
checking where to find the target ar... just compiled
checking where to find the target as... just compiled
checking where to find the target cc... pre-installed
checking where to find the target c++... pre-installed
checking where to find the target c++ for libstdc++... pre-installed
checking where to find the target dlltool... just compiled
checking where to find the target gcc... pre-installed
checking where to find the target gcj... pre-installed
checking where to find the target gfortran... pre-installed
checking where to find the target gccgo... pre-installed
checking where to find the target ld... just compiled
checking where to find the target lipo... pre-installed
checking where to find the target nm... just compiled
checking where to find the target objdump... just compiled
checking where to find the target ranlib... just compiled
checking where to find the target readelf... just compiled
checking where to find the target strip... just compiled
checking where to find the target windres... just compiled
checking where to find the target windmc... just compiled
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether -fkeep-inline-functions is supported... yes
configure: creating ./config.status
config.status: creating Makefile
make -j4 -C build-binutils-sh-elf-2.23.2 DESTDIR= 2>&1 | tee -a /home/User/kallistios/utils/dc-chain/logs/build-binutils-sh-elf-2.23.2.log && [ $PIPESTATUS -eq 0 ]
make[1]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2'
make[2]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2'
make[2]: Nothing to be done for 'all-target'.
mkdir -p -- ./libiberty
mkdir -p -- ./intl
mkdir -p -- ./etc
Configuring in ./libiberty
Configuring in ./intl
Configuring in ./etc
configure: creating cache ./config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for makeinfo... makeinfo --split-size=5000000
configure: creating cache ./config.cache
checking for a BSD-compatible install... /usr/bin/install -c
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
configure: updating cache ./config.cache
checking for msgfmt... no
checking for gmsgfmt... configure: creating ./config.status
:
checking for xgettext... no
checking for msgmerge... checking for perl... no
perl
checking for x86_64-unknown-cygwin-gcc... gcc
checking build system type... checking for C compiler default output file name... x86_64-unknown-cygwin
checking host system type... x86_64-unknown-cygwin
checking for x86_64-unknown-cygwin-ar... ar
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking for x86_64-unknown-cygwin-gcc... gcc
a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... .exe
checking for suffix of object files... checking for C compiler default output file name... config.status: creating Makefile
o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... a.exe
checking whether the C compiler works... yes
checking for gcc option to accept ISO C89... yes
checking whether we are cross compiling... no
checking for suffix of executables... none needed
checking build system type... .exe
checking for suffix of object files... make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/etc'
for f in standards.info configure.info; do \
if test -f ../../binutils-2.23.2/etc/`echo $f | sed -e 's/.info$/.texi/'`; then \
if make "MAKEINFO=makeinfo --split-size=5000000 --split-size=5000000" $f; then \
true; \
else \
exit 1; \
fi; \
fi; \
done
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/etc'
make[4]: '../../binutils-2.23.2/etc/standards.info' is up to date.
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/etc'
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/etc'
make[4]: '../../binutils-2.23.2/etc/configure.info' is up to date.
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/etc'
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/etc'
x86_64-unknown-cygwin
checking host system type... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... x86_64-unknown-cygwin
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking for library containing strerror... 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... none required
checking how to run the C preprocessor... no
checking how to run the C preprocessor... gcc -E
gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... 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 for an ANSI C-conforming const... yes
checking whether gcc supports -pedantic ... yes
checking for inline... yes
checking whether gcc and cc understand -c and -o together... inline
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for an ANSI C-conforming const... yes
checking for stdlib.h... yes
checking for inline... yes
inline
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
yes
checking for sys/types.h... checking for inttypes.h... yes
checking for sys/stat.h... yes
checking for stdint.h... yes
checking for stdlib.h... yes
yes
checking for unistd.h... checking for string.h... yes
yes
checking for off_t... checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for size_t... yes
checking for stdint.h... yes
checking for unistd.h... yes
yes
checking for working alloca.h... checking whether byte ordering is bigendian... yes
checking for alloca... no
checking for a BSD-compatible install... /usr/bin/install -c
checking for sys/file.h... yes
checking for stdlib.h... (cached) yes
yes
checking for unistd.h... (cached) yes
checking for getpagesize... checking for sys/param.h... yes
checking for limits.h... yes
yes
checking for stdlib.h... (cached) yes
checking for working mmap... checking for malloc.h... yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for strings.h... (cached) yes
no
checking whether we are using the GNU C Library 2.1 or newer... checking for sys/time.h... no
checking whether integer division by zero raises SIGFPE... yes
checking for time.h... yes
checking for sys/resource.h... yes
checking for inttypes.h... yes
checking for sys/stat.h... (cached) yes
yes
checking for stdint.h... checking for sys/mman.h... yes
checking for unsigned long long... yes
checking for fcntl.h... yes
checking for alloca.h... yes
checking for inttypes.h... yes
checking for sys/pstat.h... yes
checking whether the inttypes.h PRIxNN macros are broken... no
no
checking for ld used by GCC... checking for sys/sysmp.h... no
checking for sys/sysinfo.h... /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
yes
checking for shared library run path origin... checking for machine/hal_sysinfo.h... no
checking for sys/table.h... done
checking argz.h usability... no
checking for sys/sysctl.h... yes
checking argz.h presence... no
checking for sys/systemcfg.h... yes
checking for argz.h... yes
checking limits.h usability... no
checking for stdint.h... (cached) yes
checking for stdio_ext.h... yes
checking limits.h presence... yes
checking for limits.h... yes
yes
checking locale.h usability... checking for process.h... yes
checking for sys/prctl.h... yes
checking locale.h presence... yes
checking for locale.h... yes
no
checking for sys/wait.h that is POSIX.1 compatible... checking nl_types.h usability... yes
checking whether time.h and sys/time.h may both be included... no
checking nl_types.h presence... yes
checking whether errno must be declared... no
checking for nl_types.h... no
checking malloc.h usability... no
checking size of int... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking stddef.h usability... 4
checking for a 64-bit type... yes
checking stddef.h presence... uint64_t
yes
checking for stddef.h... yes
checking for intptr_t... 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 for uintptr_t... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking for feof_unlocked... yes
checking for ssize_t... no
checking for fgets_unlocked... yes
checking for pid_t... no
yes
checking for library containing strerror... checking for getc_unlocked... yes
none required
checking for asprintf... checking for getcwd... yes
yes
checking for atexit... checking for getegid... yes
yes
checking for basename... checking for geteuid... yes
yes
checking for bcmp... checking for getgid... yes
yes
checking for bcopy... checking for getuid... yes
yes
checking for bsearch... checking for mempcpy... yes
checking for bzero... yes
checking for munmap... yes
yes
checking for calloc... checking for putenv... yes
yes
checking for setenv... checking for clock... yes
yes
checking for setlocale... checking for ffs... yes
checking for stpcpy... yes
checking for getcwd... yes
checking for strcasecmp... yes
checking for getpagesize... yes
yes
checking for strdup... checking for gettimeofday... yes
yes
checking for index... checking for strtoul... yes
yes
checking for tsearch... checking for insque... yes
yes
checking for __argz_count... checking for memchr... no
yes
checking for __argz_stringify... checking for memcmp... no
checking for __argz_next... yes
checking for memcpy... no
checking for __fsetlocking... yes
checking for memmem... no
checking for iconv... yes
checking for memmove... no, consider installing GNU libiconv
checking for nl_langinfo and CODESET... yes
checking for mempcpy... yes
checking for LC_MESSAGES... yes
checking for memset... yes
checking for bison... bison
checking version of bison... 2.7.1, ok
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for GNU gettext in libc... no
checking for GNU gettext in libintl... yes
no
checking for mkstemps... checking whether to use NLS... yes
checking where the gettext function comes from... included intl directory
checking for aclocal... no
checking for autoconf... autoconf
checking for autoheader... autoheader
configure: updating cache ./config.cache
configure: creating ./config.status
yes
checking for putenv... yes
checking for random... yes
checking for rename... config.status: creating Makefile
config.status: creating config.intl
yes
checking for rindex... config.status: creating config.h
config.status: executing default-1 commands
yes
mkdir -p -- ./gas
mkdir -p -- ./binutils
checking for setenv... Configuring in ./gas
Configuring in ./binutils
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/intl'
rm -f stamp-h1
/bin/sh ./config.status config.h
yes
checking for snprintf... config.status: creating config.h
config.status: config.h is unchanged
cp ../../binutils-2.23.2/intl/libgnuintl.h libintl.h
yes
test -f config.h || (rm -f stamp-h1 && make stamp-h1)
gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/bindtextdom.c
checking for sigsetmask... gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/dcgettext.c
gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/dgettext.c
no
checking for stpcpy... gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/gettext.c
configure: creating cache ./config.cache
configure: creating cache ./config.cache
gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/finddomain.c
checking build system type... checking build system type... gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/loadmsgcat.c
yes
x86_64-unknown-cygwin
checking host system type... x86_64-unknown-cygwin
checking host system type... checking for stpncpy... x86_64-unknown-cygwin
checking target system type... gcc -c -g -O2 -DHAVE_CONFIG_H -DLOCALE_ALIAS_PATH="\"/opt/toolchains/dc/sh-elf/share/locale\"" -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/localealias.c
x86_64-unknown-cygwin
checking target system type... gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/textdomain.c
sh-unknown-elf
checking for x86_64-unknown-cygwin-gcc... gcc
sh-unknown-elf
checking for x86_64-unknown-cygwin-gcc... gcc
gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/l10nflist.c
yes
checking for strcasecmp... gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/explodename.c
checking for C compiler default output file name... checking for C compiler default output file name... gcc -c -g -O2 -DHAVE_CONFIG_H -DLOCALEDIR="\"/opt/toolchains/dc/sh-elf/share/locale\"" -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/dcigettext.c
yes
a.exe
checking whether the C compiler works... a.exe
checking whether the C compiler works... gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/dcngettext.c
yes
yes
checking for strchr... checking whether we are cross compiling... no
checking for suffix of executables... checking whether we are cross compiling... no
checking for suffix of executables... gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/dngettext.c
gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/ngettext.c
gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/plural.c
.exe
checking for suffix of object files... .exe
checking for suffix of object files... yes
o
checking whether we are using the GNU C compiler... gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/plural-exp.c
o
checking whether we are using the GNU C compiler... checking for strdup... gcc -c -g -O2 -DHAVE_CONFIG_H -DLIBDIR="\"/opt/toolchains/dc/sh-elf/lib\"" -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/localcharset.c
yes
checking whether gcc accepts -g... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... gcc -c -g -O2 -DHAVE_CONFIG_H -DINSTALLDIR="\"/opt/toolchains/dc/sh-elf/lib\"" -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/relocatable.c
yes
checking for gcc option to accept ISO C89... yes
gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/localename.c
none needed
checking for library containing strerror... none needed
checking for library containing strerror... checking for strncasecmp... gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/log.c
gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/osdep.c
gcc -c -g -O2 -DHAVE_CONFIG_H -I. -I../../binutils-2.23.2/intl ../../binutils-2.23.2/intl/intl-compat.c
none required
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... rm -f libintl.a
none required
ar cru libintl.a bindtextdom.o dcgettext.o dgettext.o gettext.o finddomain.o loadmsgcat.o localealias.o textdomain.o l10nflist.o explodename.o dcigettext.o dcngettext.o dngettext.o ngettext.o plural.o plural-exp.o localcharset.o relocatable.o localename.o log.o osdep.o intl-compat.o
yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... ranlib libintl.a
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/intl'
checking for strndup... mkdir -p -- ./gprof
Configuring in ./gprof
yes
checking for strrchr... yes
yes
checking for a thread-safe mkdir -p... checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
yes
checking for style of include used by make... checking for style of include used by make... yes
GNU
GNU
checking for strstr... checking dependency style of gcc... checking dependency style of gcc... yes
gcc3
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
checking for strtod... gcc3
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
configure: creating cache ./config.cache
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... 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... yes
checking build system type... checking for strtol... gcc -E
x86_64-unknown-cygwin
checking host system type... gcc -E
x86_64-unknown-cygwin
checking target system type... yes
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... checking for grep that handles long lines and -e... /usr/bin/grep -E
checking for ANSI C header files... checking for strtoul... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... sh-unknown-elf
checking for x86_64-unknown-cygwin-gcc... gcc
yes
checking for strverscmp... checking for C compiler default output file name... a.exe
checking whether the C compiler works... yes
yes
checking whether we are cross compiling... no
checking for suffix of executables... yes
checking for sys/types.h... checking for sys/types.h... no
checking for tmpnam... yes
yes
checking for sys/stat.h... checking for sys/stat.h... .exe
checking for suffix of object files... yes
checking for vasprintf... o
checking whether we are using the GNU C compiler... yes
yes
checking for stdlib.h... checking for stdlib.h... yes
checking whether gcc accepts -g... yes
yes
yes
checking for gcc option to accept ISO C89... yes
checking for string.h... checking for string.h... checking for vfprintf... none needed
checking for library containing strerror... yes
yes
checking for memory.h... checking for memory.h... yes
yes
none required
yes
checking for strings.h... checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... checking for strings.h... checking for vprintf... yes
yes
checking for inttypes.h... checking for inttypes.h... yes
yes
yes
checking for stdint.h... checking for vsnprintf... checking for stdint.h... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
yes
checking for unistd.h... checking for unistd.h... yes
yes
checking for style of include used by make... GNU
checking for vsprintf... yes
yes
checking minix/config.h usability... checking minix/config.h usability... checking dependency style of gcc... no
checking minix/config.h presence... no
checking minix/config.h presence... yes
no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... checking for waitpid... gcc3
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
no
checking how to print strings... checking how to print strings... yes
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... printf
checking for a sed that does not truncate output... printf
checking for a sed that does not truncate output... checking for setproctitle... /usr/bin/sed
/usr/bin/sed
checking for fgrep... checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/grep -F
checking for ld used by gcc... gcc -E
/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... no
checking whether alloca needs Cray hooks... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... checking for grep that handles long lines and -e... no
checking stack direction for C alloca... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for x86_64-unknown-cygwin-objdump... objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for x86_64-unknown-cygwin-ar... ar
checking for x86_64-unknown-cygwin-strip... checking for /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for x86_64-unknown-cygwin-objdump... objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for x86_64-unknown-cygwin-ar... ar
checking for x86_64-unknown-cygwin-strip... no
checking for strip... strip
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking command to parse nm output from gcc object... no
checking for strip... strip
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking command to parse nm output from gcc object... -1
checking for vfork.h... no
checking for fork... ok
checking for dlfcn.h... yes
checking for sys/types.h... ok
checking for dlfcn.h... yes
yes
yes
yes
checking for objdir... checking for objdir... checking for vfork... .libs
.libs
checking for sys/stat.h... yes
yes
checking for stdlib.h... checking for working fork... yes
checking if gcc supports -fno-rtti -fno-exceptions... checking if gcc supports -fno-rtti -fno-exceptions... checking for string.h... no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes
yes
checking for working vfork... (cached) yes
checking for _doprnt... checking for memory.h... yes
checking if gcc static flag -static works... yes
checking if gcc static flag -static works... yes
yes
checking if gcc supports -c -o file.o... checking for strings.h... yes
checking if gcc supports -c -o file.o... no
checking for sys_errlist... yes
checking for inttypes.h... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking whether -lc should be explicitly linked in... yes
yes
checking for sys_nerr... checking for stdint.h... yes
checking dynamic linker characteristics... yes
checking dynamic linker characteristics... yes
yes
checking for unistd.h... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking for sys_siglist... checking whether to build static libraries... yes
Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
yes
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow
checking for bison... bison -y
checking for flex... flex
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow
checking whether byte ordering is bigendian... checking lex output file root... lex.yy
checking minix/config.h usability... checking lex library... yes
checking for external symbol _system_configuration... no
checking minix/config.h presence... no
no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... checking for __fsetlocking... no
yes
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 print strings... printf
checking for a sed that does not truncate output... no
checking for bison... bison -y
checking for flex... flex
/usr/bin/sed
checking for canonicalize_file_name... checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... checking lex output file root... lex.yy
checking lex library... /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... -lfl
checking whether yytext is a pointer... checking for dup3... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for x86_64-unknown-cygwin-objdump... objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for x86_64-unknown-cygwin-ar... ar
checking for x86_64-unknown-cygwin-strip... no
checking for strip... strip
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking command to parse nm output from gcc object... yes
checking for getrlimit... yes
checking whether NLS is requested... yes
checking for catalogs to be installed... yes
checking for getrusage... -lfl
checking whether yytext is a pointer... ok
checking for dlfcn.h... yes
checking for getsysinfo... yes
checking for objdir... .libs
yes
checking whether NLS is requested... yes
checking for catalogs to be installed... no
checking for gettimeofday... (cached) yes
checking if gcc supports -fno-rtti -fno-exceptions... checking for on_exit... no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes
checking for psignal... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking for pstat_getdynamic... es fi fr id ja ru rw tr es fi fr id ja ru rw tr
checking whether NLS is requested... yes
checking for msgfmt... no
checking for gmsgfmt... :
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... checking for xgettext... no
yes
checking whether -lc should be explicitly linked in... checking for msgmerge... no
checking whether to enable maintainer-specific portions of Makefiles... no
bg da es fi fr id it ja ro ru rw sk sv tr uk vi zh_CN zh_TW bg da es fi fr id it ja ro ru rw sk sv tr uk vi zh_CN zh_TW
checking whether NLS is requested... yes
checking for string.h... (cached) yes
checking for msgfmt... no
checking for gmsgfmt... :
checking for xgettext... checking for stdlib.h... (cached) yes
no
no
checking for pstat_getstatic... checking for msgmerge... no
checking whether to enable maintainer-specific portions of Makefiles... no
checking for memory.h... (cached) yes
checking for x86_64-unknown-cygwin-ranlib... (cached) ranlib
checking for string.h... (cached) yes
yes
checking dynamic linker characteristics... checking for strings.h... (cached) yes
checking for strings.h... (cached) yes
checking for unistd.h... (cached) yes
checking for stdlib.h... (cached) yes
Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for setmode... checking errno.h usability... checking for unistd.h... (cached) yes
no
checking fcntl.h usability... checking for realpath... yes
checking errno.h presence... yes
checking for errno.h... yes
yes
checking fcntl.h presence... no
checking whether NLS is requested... yes
checking for catalogs to be installed... checking for sys/types.h... (cached) yes
yes
checking for fcntl.h... yes
checking limits.h usability... yes
checking sys/file.h usability... checking for setrlimit... yes
checking limits.h presence... yes
checking sys/file.h presence... yes
checking for limits.h... yes
yes
checking for sys/file.h... yes
checking locale.h usability... yes
checking limits.h usability... checking for sbrk... yes
checking locale.h presence... yes
checking limits.h presence... yes
checking for locale.h... yes
yes
checking for limits.h... yes
checking time.h usability... checking locale.h usability... yes
checking for spawnve... yes
checking time.h presence... yes
checking locale.h presence... yes
checking for locale.h... yes
yes
checking for time.h... yes
checking sys/param.h usability... checking for sys/stat.h... (cached) yes
checking whether string.h and strings.h may both be included... yes
yes
checking sys/param.h presence... checking for spawnvpe... yes
checking whether compiling a cross-assembler... yes
checking for working alloca.h... yes
checking for sys/param.h... yes
checking wchar.h usability... yes
yes
checking for alloca... yes
checking wchar.h presence... checking for strerror... yes
checking for wchar.h... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for inline... yes
checking whether string.h and strings.h may both be included... yes
inline
checking for unlink... yes
checking for working alloca.h... checking for strsignal... yes
yes
checking for alloca... bg da de eo es fi fr ga id it ja ms nl pt_BR ro ru rw sr sv tr uk vi bg da de eo es fi fr ga id it ja ms nl pt_BR ro ru rw sr sv tr uk vi
checking whether NLS is requested... yes
yes
checking for msgfmt... no
checking for gmsgfmt... :
checking for sysconf... checking for sbrk... checking for xgettext... no
checking for msgmerge... no
checking whether to enable maintainer-specific portions of Makefiles... no
checking sys/gmon_out.h usability... yes
yes
yes
checking for sbrk... no
checking sys/gmon_out.h presence... checking for setlocale... checking for sysctl... no
checking for sys/gmon_out.h... no
checking for a known getopt prototype in unistd.h... yes
yes
checking for library containing fabs... yes
checking for utimes... checking for LC_MESSAGES... no
checking for sysmp... yes
yes
checking for working assert macro... none required
checking for setmode... Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow
no
checking for table... configure: updating cache ./config.cache
configure: creating ./config.status
yes
checking whether declaration is required for errno... no
checking for getc_unlocked... no
no
checking for a known getopt prototype in unistd.h... checking for times... yes
checking whether declaration is required for environ... yes
checking for strcoll... yes
checking for wait3... no
checking whether declaration is required for ffs... yes
checking for setlocale... yes
no
checking whether declaration is required for free... checking for wait4... yes
checking for mkstemp... no
checking whether declaration is required for malloc... yes
yes
checking for mkdtemp... checking whether basename is declared... no
checking whether declaration is required for sbrk... yes
checking for mbstate_t... no
checking whether ffs is declared... yes
checking for library containing frexp... no
checking whether declaration is required for strstr... yes
checking whether asprintf is declared... yes
no
none required
checking for LC_MESSAGES... checking whether free is declared... checking whether vasprintf is declared... yes
yes
checking whether getenv is declared... checking whether snprintf is declared... yes
checking for time_t in time.h... yes
yes
checking for time_t in sys/types.h... yes
checking whether malloc is declared... checking whether vsnprintf is declared... yes
checking for a known getopt prototype in unistd.h... yes
yes
checking whether calloc is declared... yes
checking for utime.h... checking whether mempcpy is declared... yes
yes
yes
checking whether fprintf is declared... checking whether getenv is declared... checking whether realloc is declared... yes
yes
yes
checking whether stpcpy is declared... checking whether getopt is declared... checking whether stpcpy is declared... yes
yes
yes
checking whether malloc is declared... checking whether strstr is declared... checking whether strstr is declared... yes
yes
yes
checking whether sbrk is declared... checking whether realloc is declared... checking whether vsnprintf is declared... yes
yes
checking whether getenv is declared... yes
checking whether sbrk is declared... checking for library containing zlibVersion... yes
yes
checking whether environ is declared... checking whether strverscmp is declared... yes
no
checking whether canonicalize_file_name must be declared... checking whether getc_unlocked is declared... no
yes
checking for stdlib.h... (cached) yes
no
checking for struct tm.tm_gmtoff in time.h... checking whether snprintf is declared... checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... yes
no
checking for struct stat.st_mtim.tv_sec in sys/stat.h... checking whether vsnprintf is declared... yes
checking for struct stat.st_mtim.tv_nsec in sys/stat.h... yes
checking for library containing zlibVersion... no
checking for working strncmp... yes
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
yes
config.status: creating po/Makefile.in
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating gconfig.h
no
checking iconv.h usability... config.status: executing depfiles commands
no
checking iconv.h presence... no
checking for iconv.h... no
checking for ld used by GCC... /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking for shared library run path origin... config.status: executing libtool commands
done
checking for iconv... config.status: executing default-1 commands
config.status: creating Makefile
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: creating testsuite/Makefile
no, consider installing GNU libiconv
configure: updating cache ./config.cache
config.status: creating config.h
configure: creating ./config.status
mkdir -p -- ./ld
Configuring in ./ld
config.status: executing default commands
mkdir -p -- ./bfd
Configuring in ./bfd
configure: creating cache ./config.cache
checking build system type... x86_64-unknown-cygwin
checking host system type... configure: creating cache ./config.cache
x86_64-unknown-cygwin
checking target system type... checking build system type... sh-unknown-elf
checking for x86_64-unknown-cygwin-gcc... gcc
x86_64-unknown-cygwin
checking host system type... x86_64-unknown-cygwin
checking target system type... checking for C compiler default output file name... sh-unknown-elf
checking for x86_64-unknown-cygwin-gcc... gcc
a.exe
checking whether the C compiler works... checking for C compiler default output file name... yes
checking whether we are cross compiling... no
checking for suffix of executables... .exe
checking for suffix of object files... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... o
checking whether we are using the GNU C compiler... config.status: creating .gdbinit
yes
checking whether gcc accepts -g... .exe
checking for suffix of object files... yes
checking for gcc option to accept ISO C89... config.status: creating Makefile
o
checking whether we are using the GNU C compiler... none needed
checking for library containing strerror... config.status: creating doc/Makefile
yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... config.status: creating po/Makefile.in
none required
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... none needed
checking for library containing strerror... config.status: creating config.h
config.status: executing depfiles commands
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... /usr/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... yes
checking for a thread-safe mkdir -p... /usr/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 whether to enable maintainer-specific portions of Makefiles... no
checking how to run the C preprocessor... gcc -E
gcc3
checking for x86_64-unknown-cygwin-ar... ar
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
config.status: creating Makefile
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow
checking for LC_MESSAGES... config.status: creating doc/Makefile
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... config.status: creating po/Makefile.in
gcc -E
yes
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
config.status: creating config.h
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... 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
config.status: executing depfiles commands
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... yes
checking for sys/types.h... yes
checking for sys/stat.h... gcc3
checking for ANSI C header files... yes
checking for stdlib.h... config.status: executing libtool commands
yes
checking for string.h... config.status: executing default-1 commands
yes
config.status: creating po/POTFILES
config.status: creating po/Makefile
checking for memory.h... yes
config.status: executing default commands
checking for sys/types.h... yes
yes
checking for strings.h... checking for sys/stat.h... config.status: executing libtool commands
yes
yes
checking for inttypes.h... make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/libiberty'
if [ x"" != x ] && [ ! -d pic ]; then \
mkdir pic; \
else true; fi
checking for stdlib.h... touch stamp-picdir
config.status: executing default-1 commands
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/dwarfnames.c -o pic/dwarfnames.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/dwarfnames.c -o dwarfnames.o
yes
yes
config.status: creating po/POTFILES
checking for stdint.h... config.status: creating po/Makefile
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/dyn-string.c -o pic/dyn-string.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/dyn-string.c -o dyn-string.o
checking for string.h... yes
yes
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/fdmatch.c -o pic/fdmatch.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/fdmatch.c -o fdmatch.o
checking for unistd.h... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/fibheap.c -o pic/fibheap.o; \
else true; fi
checking for memory.h... gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/fibheap.c -o fibheap.o
yes
mkdir -p -- ./opcodes
yes
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/filename_cmp.c -o pic/filename_cmp.o; \
else true; fi
checking minix/config.h usability... Configuring in ./opcodes
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/filename_cmp.c -o filename_cmp.o
checking for strings.h... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/floatformat.c -o pic/floatformat.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/floatformat.c -o floatformat.o
yes
no
checking minix/config.h presence... checking for inttypes.h... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/fnmatch.c -o pic/fnmatch.o; \
else true; fi
no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/fnmatch.c -o fnmatch.o
yes
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/fopen_unlocked.c -o pic/fopen_unlocked.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/fopen_unlocked.c -o fopen_unlocked.o
checking for stdint.h... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/getopt.c -o pic/getopt.o; \
else true; fi
/usr/bin/grep -F
checking for ld used by gcc... gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/getopt.c -o getopt.o
yes
checking for unistd.h... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/getopt1.c -o pic/getopt1.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/getopt1.c -o getopt1.o
yes
/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... checking minix/config.h usability... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/getpwd.c -o pic/getpwd.o; \
else true; fi
yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/getpwd.c -o getpwd.o
BSD nm
checking whether ln -s works... yes
if [ x"" != x ]; then \
checking the maximum length of command line arguments... gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/getruntime.c -o pic/getruntime.o; \
else true; fi
8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/getruntime.c -o getruntime.o
no
checking minix/config.h presence... checking for /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for x86_64-unknown-cygwin-objdump... objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for x86_64-unknown-cygwin-ar... (cached) ar
checking for x86_64-unknown-cygwin-strip... no
checking for strip... strip
checking for x86_64-unknown-cygwin-ranlib... (cached) ranlib
checking command to parse nm output from gcc object... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/hashtab.c -o pic/hashtab.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/hashtab.c -o hashtab.o
no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... configure: creating cache ./config.cache
yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... checking build system type... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/hex.c -o pic/hex.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/hex.c -o hex.o
no
x86_64-unknown-cygwin
checking host system type... checking how to print strings... printf
checking for a sed that does not truncate output... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/lbasename.c -o pic/lbasename.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/lbasename.c -o lbasename.o
/usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... x86_64-unknown-cygwin
checking target system type... ok
checking for dlfcn.h... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/lrealpath.c -o pic/lrealpath.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/lrealpath.c -o lrealpath.o
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/make-relative-prefix.c -o pic/make-relative-prefix.o; \
else true; fi
yes
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/make-relative-prefix.c -o make-relative-prefix.o
checking for objdir... sh-unknown-elf
checking for x86_64-unknown-cygwin-gcc... gcc
.libs
/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/make-temp-file.c -o pic/make-temp-file.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/make-temp-file.c -o make-temp-file.o
BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... checking for C compiler default output file name... yes
checking whether the shell understands "+="... yes
checking for /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for x86_64-unknown-cygwin-objdump... objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for x86_64-unknown-cygwin-ar... ar
checking for x86_64-unknown-cygwin-strip... no
checking for strip... strip
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking command to parse nm output from gcc object... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/objalloc.c -o pic/objalloc.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/objalloc.c -o objalloc.o
checking if gcc supports -fno-rtti -fno-exceptions... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/obstack.c -o pic/obstack.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/obstack.c -o obstack.o
a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/partition.c -o pic/partition.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/partition.c -o partition.o
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/pexecute.c -o pic/pexecute.o; \
else true; fi
yes
checking if gcc static flag -static works... gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/pexecute.c -o pexecute.o
.exe
checking for suffix of object files... ok
checking for dlfcn.h... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/physmem.c -o pic/physmem.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/physmem.c -o physmem.o
o
checking whether we are using the GNU C compiler... yes
checking if gcc supports -c -o file.o... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/pex-common.c -o pic/pex-common.o; \
else true; fi
yes
checking whether gcc accepts -g... yes
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/pex-common.c -o pex-common.o
checking for objdir... .libs
yes
checking for gcc option to accept ISO C89... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/pex-one.c -o pic/pex-one.o; \
else true; fi
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/pex-one.c -o pex-one.o
yes
checking dynamic linker characteristics... none needed
checking for library containing strerror... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/pex-unix.c -o pic/pex-unix.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/pex-unix.c -o pex-unix.o
checking if gcc supports -fno-rtti -fno-exceptions... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether a program can dlopen itself... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/safe-ctype.c -o pic/safe-ctype.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/safe-ctype.c -o safe-ctype.o
none required
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/simple-object.c -o pic/simple-object.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/simple-object.c -o simple-object.o
yes
checking whether a statically linked program can dlopen itself... yes
checking if gcc static flag -static works... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/simple-object-coff.c -o pic/simple-object-coff.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/simple-object-coff.c -o simple-object-coff.o
yes
checking if gcc supports -c -o file.o... 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... yes
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/simple-object-elf.c -o pic/simple-object-elf.o; \
else true; fi
checking for a thread-safe mkdir -p... gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/simple-object-elf.c -o simple-object-elf.o
no
/usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether to install libbfd... no
checking whether NLS is requested... yes
checking for catalogs to be installed... yes
yes
checking whether -lc should be explicitly linked in... checking for style of include used by make... GNU
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/simple-object-mach-o.c -o pic/simple-object-mach-o.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/simple-object-mach-o.c -o simple-object-mach-o.o
checking dependency style of gcc... yes
checking dynamic linker characteristics... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/sort.c -o pic/sort.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/sort.c -o sort.o
Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/spaces.c -o pic/spaces.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/spaces.c -o spaces.o
gcc3
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/splay-tree.c -o pic/splay-tree.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/splay-tree.c -o splay-tree.o
g++ -E
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... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/stack-limit.c -o pic/stack-limit.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/stack-limit.c -o stack-limit.o
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/strerror.c -o pic/strerror.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/strerror.c -o strerror.o
gcc -E
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/strsignal.c -o pic/strsignal.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/strsignal.c -o strsignal.o
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/timeval-utils.c -o pic/timeval-utils.o; \
else true; fi
checking for ld used by g++... /usr/bin/grep -E
checking for ANSI C header files... gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/timeval-utils.c -o timeval-utils.o
da es fi fr id ja ro ru rw sv tr uk vi zh_CN da es fi fr id ja ro ru rw sv tr uk vi zh_CN
checking whether NLS is requested... yes
checking for msgfmt... no
checking for gmsgfmt... :
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/unlink-if-ordinary.c -o pic/unlink-if-ordinary.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/unlink-if-ordinary.c -o unlink-if-ordinary.o
checking for xgettext... no
checking for msgmerge... no
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xatexit.c -o pic/xatexit.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xatexit.c -o xatexit.o
checking size of long long... /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking whether the g++ linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xexit.c -o pic/xexit.o; \
else true; fi
yes
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xexit.c -o xexit.o
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xmalloc.c -o pic/xmalloc.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xmalloc.c -o xmalloc.o
8
checking size of void *... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xmemdup.c -o pic/xmemdup.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xmemdup.c -o xmemdup.o
checking for g++ option to produce PIC... -DDLL_EXPORT -DPIC
checking if g++ PIC flag -DDLL_EXPORT -DPIC works... yes
checking for sys/types.h... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xstrdup.c -o pic/xstrdup.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xstrdup.c -o xstrdup.o
yes
checking if g++ static flag -static works... yes
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xstrerror.c -o pic/xstrerror.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xstrerror.c -o xstrerror.o
checking for sys/stat.h... 8
checking size of long... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xstrndup.c -o pic/xstrndup.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/xstrndup.c -o xstrndup.o
yes
checking if g++ supports -c -o file.o... yes
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/sigsetmask.c -o pic/sigsetmask.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/sigsetmask.c -o sigsetmask.o
checking for stdlib.h... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/strverscmp.c -o pic/strverscmp.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/strverscmp.c -o strverscmp.o
yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking dynamic linker characteristics... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether NLS is requested... yes
checking for catalogs to be installed... yes
8
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/setproctitle.c -o pic/setproctitle.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/setproctitle.c -o setproctitle.o
checking alloca.h usability... checking for string.h... 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 ./dwarfnames.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 ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o > required-list
yes
yes
checking alloca.h presence... make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/libiberty/testsuite'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/libiberty/testsuite'
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/regex.c -o pic/regex.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/regex.c -o regex.o
yes
checking for alloca.h... yes
checking for memory.h... checking stddef.h usability... yes
checking for strings.h... yes
checking stddef.h presence... yes
checking for stddef.h... yes
yes
checking for string.h... (cached) yes
checking for inttypes.h... checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
yes
checking time.h usability... checking for stdint.h... yes
checking time.h presence... yes
yes
checking for time.h... yes
checking for unistd.h... checking for unistd.h... (cached) yes
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/cplus-dem.c -o pic/cplus-dem.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/cplus-dem.c -o cplus-dem.o
checking fcntl.h usability... yes
bg da es fi fr ga id it ja sv tr uk vi zh_CN zh_TW bg da es fi fr ga id it ja sv tr uk vi zh_CN zh_TW
checking whether NLS is requested... yes
checking for msgfmt... no
checking for gmsgfmt... checking minix/config.h usability... :
yes
checking fcntl.h presence... checking for xgettext... no
yes
checking for fcntl.h... yes
checking for msgmerge... no
checking for bison... bison -y
checking for flex... flex
checking sys/file.h usability... no
checking minix/config.h presence... checking lex output file root... lex.yy
checking lex library... yes
checking sys/file.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for sys/file.h... yes
yes
checking for x86_64-unknown-cygwin-ar... ar
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking how to print strings... printf
checking for a sed that does not truncate output... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/cp-demangle.c -o pic/cp-demangle.o; \
else true; fi
/usr/bin/sed
checking sys/time.h usability... gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/cp-demangle.c -o cp-demangle.o
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... yes
checking sys/time.h presence... /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking for sys/time.h... yes
yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... checking for sys/stat.h... (cached) yes
looking for a compliant stdint.h in stdint.h, checking for uintmax_t... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for x86_64-unknown-cygwin-objdump... objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for x86_64-unknown-cygwin-ar... (cached) ar
checking for x86_64-unknown-cygwin-strip... no
checking for strip... strip
checking for x86_64-unknown-cygwin-ranlib... (cached) ranlib
checking command to parse nm output from gcc object... -lfl
checking whether yytext is a pointer... yes
checking for uintptr_t... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/md5.c -o pic/md5.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/md5.c -o md5.o
yes
checking for int_least32_t... ok
checking for dlfcn.h... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking how to compare bootstrapped objects... yes
checking for objdir... .libs
cmp --ignore-initial=16 $$f1 $$f2
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/sha1.c -o pic/sha1.o; \
else true; fi
yes
checking for int_fast32_t... gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/sha1.c -o sha1.o
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/alloca.c -o pic/alloca.o; \
else true; fi
checking for unistd.h... (cached) yes
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/alloca.c -o alloca.o
checking if gcc supports -fno-rtti -fno-exceptions... yes
checking for uint64_t... checking elf-hints.h usability... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/argv.c -o pic/argv.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/argv.c -o argv.o
no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... no
checking elf-hints.h presence... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/choose-temp.c -o pic/choose-temp.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/choose-temp.c -o choose-temp.o
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 if gcc static flag -static works... ../../binutils-2.23.2/libiberty/choose-temp.c: In function ‘choose_temp_base’:
../../binutils-2.23.2/libiberty/choose-temp.c:72:14: warning: call to ‘mktemp’ declared with attribute warning: the use of `mktemp' is dangerous; use `mkstemp' instead [enabled by default]
if (mktemp (temp_filename) == 0)
^
no
checking for elf-hints.h... no
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/concat.c -o pic/concat.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/concat.c -o concat.o
checking limits.h usability... yes
checking for dirent.h that defines DIR... yes
checking if gcc supports -c -o file.o... if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/cp-demint.c -o pic/cp-demint.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/cp-demint.c -o cp-demint.o
yes
checking limits.h presence... yes
yes
checking for limits.h... yes
if [ x"" != x ]; then \
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/crc32.c -o pic/crc32.o; \
else true; fi
checking for library containing opendir... gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../binutils-2.23.2/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../binutils-2.23.2/libiberty/crc32.c -o crc32.o
checking locale.h usability... 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 ./dwarfnames.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 ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./sigsetmask.o ./strverscmp.o ./setproctitle.o
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking dynamic linker characteristics... yes
checking locale.h presence... none required
yes
checking for locale.h... yes
checking windows.h usability... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
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 sys/param.h usability... Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow
checking whether gcc supports -Wmissing-field-initializers... yes
checking sys/param.h presence... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether to install libbfd... no
checking whether NLS is requested... yes
checking for catalogs to be installed... yes
checking for sys/param.h... yes
checking fcntl.h usability... 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 ./dwarfnames.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 ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./sigsetmask.o ./strverscmp.o ./setproctitle.o; \
ranlib ./libiberty.a; \
cd ..; \
else true; fi
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/libiberty'
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 windows.h presence... yes
checking for sys/time.h... yes
checking for sys/stat.h... (cached) yes
checking whether string.h and strings.h may both be included... yes
checking for glob... da de es fi fr ga id it nl pt_BR ro sv tr uk vi zh_CN da de es fi fr ga id it nl pt_BR ro sv tr uk vi zh_CN
checking whether NLS is requested... yes
checking for msgfmt... no
checking for gmsgfmt... :
yes
checking for xgettext... no
checking for mkstemp... checking for msgmerge... no
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking limits.h usability... yes
checking for realpath... yes
checking limits.h presence... yes
checking for limits.h... yes
checking whether string.h and strings.h may both be included... yes
checking for windows.h... yes
yes
yes
checking for dlfcn.h... (cached) yes
checking whether basename is declared... checking whether string.h and strings.h may both be included... checking for sbrk... yes
checking for fcntl... no
checking whether stpcpy is declared... yes
checking for setlocale... yes
checking linker --as-needed support... yes
yes
checking for getpagesize... yes
configure: updating cache ./config.cache
configure: creating ./config.status
checking for waitpid... yes
checking for setitimer... yes
checking for open... yes
checking for sysconf... yes
checking for lseek... yes
checking for fdopen... yes
checking for close... yes
checking for getuid... yes
checking for dirent.h that defines DIR... yes
yes
checking for getgid... checking for library containing opendir... yes
none required
checking for dlfcn.h... (cached) yes
checking for library containing dlopen... checking for fileno... none required
checking for dlopen... yes
checking for strtoull... yes
yes
checking for dlsym... checking whether basename is declared... no
yes
checking whether ftello is declared... checking for dlclose... yes
checking whether ftello64 is declared... yes
checking for .preinit_array/.init_array/.fini_array support... no
checking for a known getopt prototype in unistd.h... no
checking whether fseeko is declared... yes
checking whether strstr is declared... yes
checking whether fseeko64 is declared... yes
checking whether free is declared... no
yes
checking whether ffs is declared... checking whether sbrk is declared... yes
yes
checking whether free is declared... checking whether getenv is declared... config.status: creating Makefile
yes
yes
checking whether getenv is declared... checking whether environ is declared... config.status: creating po/Makefile.in
yes
yes
checking for library containing zlibVersion... checking whether malloc is declared... config.status: creating config.h
config.status: executing depfiles commands
yes
checking whether realloc is declared... yes
checking whether stpcpy is declared... yes
checking whether strstr is declared... no
checking whether ANSI C string concatenation works... yes
yes
checking size of void *... checking whether snprintf is declared... yes
checking whether vsnprintf is declared... 8
yes
checking for library containing zlibVersion... configure: updating cache ./config.cache
configure: creating ./config.status
no
checking linker --as-needed support... yes
checking for gcc version with buggy 64-bit support... no
checking for ftello... yes
checking for ftello64... no
checking for fseeko... yes
checking for fseeko64... no
checking for fopen64... config.status: executing libtool commands
no
checking size of off_t... config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
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... no
checking for madvise... yes
checking for mprotect... yes
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
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: creating po/POTFILES
config.status: creating po/Makefile
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]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd'
rm -f elf32-target.h
rm -f elf64-target.h
rm -f targmatch.h
sed -e s/NN/32/g < ../../binutils-2.23.2/bfd/elfxx-target.h > elf32-target.new
creating bfdver.h
sed -e s/NN/64/g < ../../binutils-2.23.2/bfd/elfxx-target.h > elf64-target.new
sed -f ../../binutils-2.23.2/bfd/targmatch.sed < ../../binutils-2.23.2/bfd/config.bfd > targmatch.new
mv -f elf32-target.new elf32-target.h
mv -f targmatch.new targmatch.h
mv -f elf64-target.new elf64-target.h
Making info in doc
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
make chew.exe
make chew.exe
make chew.exe
make chew.exe
make[5]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
gcc -o chew.$$ -g -O2 \
-I.. -I../../../binutils-2.23.2/bfd/doc/.. -I../../../binutils-2.23.2/bfd/doc/../../include -I../../../binutils-2.23.2/bfd/doc/../../intl -I../../intl ../../../binutils-2.23.2/bfd/doc/chew.c; \
/bin/sh ../../../binutils-2.23.2/bfd/doc/../../move-if-change chew.$$ chew.exe
make[5]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
gcc -o chew.$$ -g -O2 \
-I.. -I../../../binutils-2.23.2/bfd/doc/.. -I../../../binutils-2.23.2/bfd/doc/../../include -I../../../binutils-2.23.2/bfd/doc/../../intl -I../../intl ../../../binutils-2.23.2/bfd/doc/chew.c; \
/bin/sh ../../../binutils-2.23.2/bfd/doc/../../move-if-change chew.$$ chew.exe
make[5]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
gcc -o chew.$$ -g -O2 \
-I.. -I../../../binutils-2.23.2/bfd/doc/.. -I../../../binutils-2.23.2/bfd/doc/../../include -I../../../binutils-2.23.2/bfd/doc/../../intl -I../../intl ../../../binutils-2.23.2/bfd/doc/chew.c; \
/bin/sh ../../../binutils-2.23.2/bfd/doc/../../move-if-change chew.$$ chew.exe
make[5]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
gcc -o chew.$$ -g -O2 \
-I.. -I../../../binutils-2.23.2/bfd/doc/.. -I../../../binutils-2.23.2/bfd/doc/../../include -I../../../binutils-2.23.2/bfd/doc/../../intl -I../../intl ../../../binutils-2.23.2/bfd/doc/chew.c; \
/bin/sh ../../../binutils-2.23.2/bfd/doc/../../move-if-change chew.$$ chew.exe
make[5]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
make[5]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
./chew.exe -f ../../../binutils-2.23.2/bfd/doc/doc.str < ../../../binutils-2.23.2/bfd/doc/../cache.c >cache.tmp
./chew.exe -f ../../../binutils-2.23.2/bfd/doc/doc.str <../../../binutils-2.23.2/bfd/doc/../elf.c >elf.tmp
make[5]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
./chew.exe -f ../../../binutils-2.23.2/bfd/doc/doc.str <../../../binutils-2.23.2/bfd/doc/../archive.c >archive.tmp
/bin/sh ../../../binutils-2.23.2/bfd/doc/../../move-if-change cache.tmp cache.texi
/bin/sh ../../../binutils-2.23.2/bfd/doc/../../move-if-change archive.tmp archive.texi
/bin/sh ../../../binutils-2.23.2/bfd/doc/../../move-if-change elf.tmp elf.texi
make[5]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
./chew.exe -f ../../../binutils-2.23.2/bfd/doc/doc.str < ../../../binutils-2.23.2/bfd/doc/../bfdio.c >bfdio.tmp
make chew.exe
make[5]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
make[5]: 'chew.exe' is up to date.
make[5]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
./chew.exe -f ../../../binutils-2.23.2/bfd/doc/doc.str <../../../binutils-2.23.2/bfd/doc/../opncls.c >opncls.tmp
make chew.exe
/bin/sh ../../../binutils-2.23.2/bfd/doc/../../move-if-change bfdio.tmp bfdio.texi
make[5]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
make[5]: 'chew.exe' is up to date.
make[5]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
./chew.exe -f ../../../binutils-2.23.2/bfd/doc/doc.str <../../../binutils-2.23.2/bfd/doc/../linker.c >linker.tmp
/bin/sh ../../../binutils-2.23.2/bfd/doc/../../move-if-change opncls.tmp opncls.texi
/bin/sh ../../../binutils-2.23.2/bfd/doc/../../move-if-change linker.tmp linker.texi
restore=: && backupdir=".am$$" && \
rm -rf $backupdir && mkdir $backupdir && \
if (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 makeinfo --split-size=5000000 --split-size=5000000 -I ../../../binutils-2.23.2/bfd/doc \
-o bfd.info `test -f 'bfd.texinfo' || echo '../../../binutils-2.23.2/bfd/doc/'`bfd.texinfo; \
then \
rc=0; \
else \
rc=$?; \
$restore $backupdir/* `echo "./bfd.info" | sed 's|[^/]*$||'`; \
fi; \
rm -rf $backupdir; exit $rc
../../../binutils-2.23.2/bfd/doc/bfd.texinfo:325: unknown command `colophon'
../../../binutils-2.23.2/bfd/doc/bfd.texinfo:336: unknown command `cygnus'
Makefile:421: recipe for target 'bfd.info' failed
make[4]: *** [bfd.info] Error 1
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/doc'
Making info in po
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/po'
( if test 'x../../../binutils-2.23.2/bfd/po' != 'x.'; then \
posrcprefix='../../../binutils-2.23.2/bfd/'; \
else \
posrcprefix="../"; \
fi; \
rm -f SRC-POTFILES-t SRC-POTFILES \
&& (sed -e '/^#/d' \
-e '/^[ ]*$/d' \
-e "s@.*@ $posrcprefix& \\\\@" < ../../../binutils-2.23.2/bfd/po/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@.*@ ../& \\\\@" < ../../../binutils-2.23.2/bfd/po/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[4]: Nothing to be done for 'info'.
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd/po'
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd'
make[4]: Nothing to be done for 'info-am'.
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd'
Makefile:1617: recipe for target 'info-recursive' failed
make[3]: *** [info-recursive] Error 1
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2/bfd'
Makefile:2509: recipe for target 'all-bfd' failed
make[2]: *** [all-bfd] Error 2
make[2]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2'
Makefile:841: recipe for target 'all' failed
make[1]: *** [all] Error 2
make[1]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-binutils-sh-elf-2.23.2'
Makefile:135: recipe for target 'build-sh4-binutils' failed
make: *** [build-sh4-binutils] Error 1

User@Mothra-PC ~/kallistios/utils/dc-chain
$
Nope error 1 and 2 towards the end so i guess i'm part of that "didn't stick the landing" club you were talking about. :P Any assistance in this matter would be greatly appreciated.

Sincerely,

Vectrix Quest
User avatar
I.M. Weasel
Iron Muskateer Weasel
Posts: 2780
Joined: Fri Jan 04, 2002 4:45 am
Location: The city of the future, Los Braingeles
Has thanked: 1 time
Been thanked: 3 times
Contact:

Re: DCDev ISO Link

Post by I.M. Weasel »

well I noticed in the original error post that the 'port' url got that error, but the 'ports' url downloaded just find. I thought they would be 2 seperate packages. But you did get farther this time right?

I just kinda chimed in, BlueCrab is the real master of this stuff.
:arrow: http://tofuheavyindustries.com
Mac Dream Tool / Mac Dream Tool Services (released Sept. 2019)
Creator of Various awesome Video Games

"You don't have to be forgiven. Clint Eastwood taught us that."
Vectrix Quest
DCEmu Fast Newbie
DCEmu Fast Newbie
Posts: 22
Joined: Thu Nov 14, 2013 1:10 pm
Has thanked: 0
Been thanked: 0

Re: DCDev ISO Link

Post by Vectrix Quest »

I.M. Weasel wrote:well I noticed in the original error post that the 'port' url got that error, but the 'ports' url downloaded just find. I thought they would be 2 seperate packages. But you did get farther this time right?

I just kinda chimed in, BlueCrab is the real master of this stuff.
Yes i did get to the part with

Code: Select all

make
And i got the error messages above. I hope BlueCrab will be on soon as i have been trying to figure it out for awhile now. Any assistance in this matter would be greatly appreciated.

Sincerely,

Vectrix Quest
User avatar
I.M. Weasel
Iron Muskateer Weasel
Posts: 2780
Joined: Fri Jan 04, 2002 4:45 am
Location: The city of the future, Los Braingeles
Has thanked: 1 time
Been thanked: 3 times
Contact:

Re: DCDev ISO Link

Post by I.M. Weasel »

Well I see the first error happened here

Code: Select all

rm -rf $backupdir; exit $rc
../../../binutils-2.23.2/bfd/doc/bfd.texinfo:325: unknown command `colophon'
../../../binutils-2.23.2/bfd/doc/bfd.texinfo:336: unknown command `cygnus'
Makefile:421: recipe for target 'bfd.info' failed
make[4]: *** [bfd.info] Error 1
You can use the
find / -name "colophon" -print
find / -name "cygnus" -print
commands to see if those applications installed, and where they installed to.

Since it is the first error appearing on this snippet of output, might be a good start. If you know where the make file expects them to be, but they are in a different location, you may be able to change the paths in the make file to point to the correct location.
:arrow: http://tofuheavyindustries.com
Mac Dream Tool / Mac Dream Tool Services (released Sept. 2019)
Creator of Various awesome Video Games

"You don't have to be forgiven. Clint Eastwood taught us that."
User avatar
BlueCrab
The Crabby Overlord
The Crabby Overlord
Posts: 5658
Joined: Mon May 27, 2002 11:31 am
Location: Sailing the Skies of Arcadia
Has thanked: 9 times
Been thanked: 69 times
Contact:

Re: DCDev ISO Link

Post by BlueCrab »

That's a bug in the binutils texinfo files. I never build them with my builds, so I had never noticed that issue...

Re-run the unpack.sh script, then run the following two commands before doing the make:

Code: Select all

sed -e 's/ @colophon/ @@colophon/' -e 's/doc@cygnus.com/doc@@cygnus.com/' binutils-2.23.2/bfd/doc/bfd.texinfo > binutils-2.23.2/bfd/doc/bfd.texinfo2
mv binutils-2.23.2/bfd/doc/bfd.texinfo2 binutils-2.23.2/bfd/doc/bfd.texinfo
This will be fixed in the git when I update the dc-chain Makefile again.
Vectrix Quest
DCEmu Fast Newbie
DCEmu Fast Newbie
Posts: 22
Joined: Thu Nov 14, 2013 1:10 pm
Has thanked: 0
Been thanked: 0

Re: DCDev ISO Link

Post by Vectrix Quest »

I.M. Weasel wrote:Well I see the first error happened here

Code: Select all

rm -rf $backupdir; exit $rc
../../../binutils-2.23.2/bfd/doc/bfd.texinfo:325: unknown command `colophon'
../../../binutils-2.23.2/bfd/doc/bfd.texinfo:336: unknown command `cygnus'
Makefile:421: recipe for target 'bfd.info' failed
make[4]: *** [bfd.info] Error 1
You can use the
find / -name "colophon" -print
find / -name "cygnus" -print
commands to see if those applications installed, and where they installed to.

Since it is the first error appearing on this snippet of output, might be a good start. If you know where the make file expects them to be, but they are in a different location, you may be able to change the paths in the make file to point to the correct location.
Nope didn't work:

User@Mothra-PC ~
$ find / -name "colophon" -print
find: ‘/proc/registry/HKEY_CLASSES_ROOT/VirtualStore/MACHINE/SOFTWARE/Wow6432Node/BioWare’: Permission denied
find: ‘/proc/registry/HKEY_CLASSES_ROOT/VirtualStore/MACHINE/SOFTWARE/Wow6432Node/Cygwin’: Permission denied
find: ‘/proc/registry/HKEY_CLASSES_ROOT/VirtualStore/MACHINE/SOFTWARE/Wow6432Node/Licenses’: Permission denied
find: ‘/proc/registry/HKEY_CLASSES_ROOT/VirtualStore/MACHINE/SOFTWARE/Wow6432Node/Microsoft’: Permission denied
find: ‘/proc/registry/HKEY_CLASSES_ROOT/VirtualStore/MACHINE/SOFTWARE/Wow6432Node/Riot Games’: Permission denied
find: ‘/proc/registry/HKEY_CLASSES_ROOT/VirtualStore/MACHINE/SOFTWARE/Wow6432Node/Silicon Graphics’: Permission denied
find: ‘/proc/registry/HKEY_CLASSES_ROOT/VirtualStore/MACHINE/SOFTWARE/Wow6432Node/TOSHIBA’: Permission denied
find: ‘/proc/registry/HKEY_CURRENT_USER/Software/Microsoft/Protected Storage System Provider/S-1-5-21-4119018565-1862610916-4137265528-1001’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/BCD00000000’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SAM/SAM’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SECURITY’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/ASP.NET/4.0.30319.0/AutoGenKeys/S-1-5-32-568’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/ASP.NET/4.0.30319.0/CompilationMutexName’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Fax’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/IdentityStore/Cache/S-1-5-21-4119018565-1862610916-4137265528-1000’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/MSDTC/Security/XAKeyCNGKeyDataBlob’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/SQMClient/Windows/CommonDatapoints’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/SQMClient/Windows/Users’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Terminal Server Client/TrustedGateways’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/WBEM/Transports/Decoupled/Client’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Diagnostics/Performance/Shell/StartStop/StartMenu/Runtime’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/GameUX/S-1-5-21-4119018565-1862610916-4137265528-1000’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Group Policy/S-1-5-21-4119018565-1862610916-4137265528-1000’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Group Policy/State/S-1-5-21-4119018565-1862610916-4137265528-1000’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Group Policy/Status/S-1-5-21-4119018565-1862610916-4137265528-1000’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Media Center/Service/Recording/Restricted’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Setup/PnpLockdownFiles’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/WSMAN/CertMapping’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/WSMAN/Listener’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/WSMAN/Plugin’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/WSMAN/Service’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/Tablet PC/Cache’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion/MsiCorruptedFileRecovery/CorruptedFiles’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion/NetworkList’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion/Schedule/Aliases’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion/Schedule/CompatibilityAdapter’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion/Schedule/CredWom’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion/Schedule/Handshake’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion/Schedule/TaskCache’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion/SPP’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion/SystemRestore/Volatile’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows Search/Gather’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows Search/Tracing’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/WwanSvc/Profiles’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Policies/Microsoft/Windows/IPSec/Policy’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Google/Update/network/secure’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Google/Update/network/secure-S-1-5-21-4119018565-1862610916-4137265528-500’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/ASP.NET/4.0.30319.0/AutoGenKeys/S-1-5-32-568’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/ASP.NET/4.0.30319.0/CompilationMutexName’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Fax’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/MediaPlayer/PREFERENCES/HME/S-1-5-21-4119018565-1862610916-4137265528-1000’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/MSDTC/Setup’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Terminal Server Client/TrustedGateways’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows/CurrentVersion/WSMAN/CertMapping’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows/CurrentVersion/WSMAN/Listener’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows/CurrentVersion/WSMAN/Plugin’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows/CurrentVersion/WSMAN/Service’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows/CurrentVersion/Group Policy/S-1-5-21-4119018565-1862610916-4137265528-1000’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows/CurrentVersion/Group Policy/State/S-1-5-21-4119018565-1862610916-4137265528-1000’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows/CurrentVersion/Group Policy/Status/S-1-5-21-4119018565-1862610916-4137265528-1000’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows/CurrentVersion/Setup/PnpLockdownFiles’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows NT/CurrentVersion/NetworkList’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows NT/CurrentVersion/Schedule/Aliases’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows NT/CurrentVersion/Schedule/CompatibilityAdapter’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows NT/CurrentVersion/Schedule/TaskCache’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows Search/Gather’: Permission denied
find: ‘/proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows Search/Tracing’: Permission denied
...
...
...
User avatar
I.M. Weasel
Iron Muskateer Weasel
Posts: 2780
Joined: Fri Jan 04, 2002 4:45 am
Location: The city of the future, Los Braingeles
Has thanked: 1 time
Been thanked: 3 times
Contact:

Re: DCDev ISO Link

Post by I.M. Weasel »

see, theres blucrab, he knows exactly what the issue is!
:arrow: http://tofuheavyindustries.com
Mac Dream Tool / Mac Dream Tool Services (released Sept. 2019)
Creator of Various awesome Video Games

"You don't have to be forgiven. Clint Eastwood taught us that."
Vectrix Quest
DCEmu Fast Newbie
DCEmu Fast Newbie
Posts: 22
Joined: Thu Nov 14, 2013 1:10 pm
Has thanked: 0
Been thanked: 0

Re: DCDev ISO Link

Post by Vectrix Quest »

BlueCrab wrote:That's a bug in the binutils texinfo files. I never build them with my builds, so I had never noticed that issue...

Re-run the unpack.sh script, then run the following two commands before doing the make:

Code: Select all

sed -e 's/ @colophon/ @@colophon/' -e 's/doc@cygnus.com/doc@@cygnus.com/' binutils-2.23.2/bfd/doc/bfd.texinfo > binutils-2.23.2/bfd/doc/bfd.texinfo2
mv binutils-2.23.2/bfd/doc/bfd.texinfo2 binutils-2.23.2/bfd/doc/bfd.texinfo
This will be fixed in the git when I update the dc-chain Makefile again.
Still didn't work:
ame $i`; \
done; \
/usr/bin/install -c -m 644 newlib.h /opt/toolchains/dc/sh-elf/sh-elf/include/newlib.h; \
/bin/sh ../../../newlib-2.0.0/newlib/../mkinstalldirs /opt/toolchains/dc/sh-elf/sh-elf/include/machine; \
for i in ../../../newlib-2.0.0/newlib/libc/include/machine/*.h; do \
/usr/bin/install -c -m 644 $i /opt/toolchains/dc/sh-elf/sh-elf/include/machine/`basename $i`; \
done; \
for i in ../../../newlib-2.0.0/newlib/libc/machine/sh/machine/*.h; do \
if [ -f $i ]; then \
/usr/bin/install -c -m 644 $i /opt/toolchains/dc/sh-elf/sh-elf/include/machine/`basename $i`; \
else true; fi ; \
done; \
/bin/sh ../../../newlib-2.0.0/newlib/../mkinstalldirs /opt/toolchains/dc/sh-elf/sh-elf/include/rpc; \
for i in ../../../newlib-2.0.0/newlib/libc/include/rpc/*.h; do \
/usr/bin/install -c -m 644 $i /opt/toolchains/dc/sh-elf/sh-elf/include/rpc/`basename $i`; \
done; \
/bin/sh ../../../newlib-2.0.0/newlib/../mkinstalldirs /opt/toolchains/dc/sh-elf/sh-elf/include/sys; \
for i in ../../../newlib-2.0.0/newlib/libc/include/sys/*.h; do \
/usr/bin/install -c -m 644 $i /opt/toolchains/dc/sh-elf/sh-elf/include/sys/`basename $i`; \
done; \
for i in ../../../newlib-2.0.0/newlib/libc/machine/sh/sys/*.h; do \
if [ -f $i ]; then \
/usr/bin/install -c -m 644 $i /opt/toolchains/dc/sh-elf/sh-elf/include/sys/`basename $i`; \
else true; fi ; \
done ; \
for i in ../../../newlib-2.0.0/newlib/libc/machine/sh/include/*.h; do \
if [ -f $i ]; then \
/usr/bin/install -c -m 644 $i /opt/toolchains/dc/sh-elf/sh-elf/include/`basename $i`; \
else true; fi ; \
done ; \
for i in ../../../newlib-2.0.0/newlib/libc/sys/sh/sys/*.h; do \
if [ -f $i ]; then \
/usr/bin/install -c -m 644 $i /opt/toolchains/dc/sh-elf/sh-elf/include/sys/`basename $i`; \
else true; fi ; \
done ; \
/bin/sh ../../../newlib-2.0.0/newlib/../mkinstalldirs /opt/toolchains/dc/sh-elf/sh-elf/include/bits; \
for i in ../../../newlib-2.0.0/newlib/libc/sys/sh/bits/*.h; do \
if [ -f $i ]; then \
/usr/bin/install -c -m 644 $i /opt/toolchains/dc/sh-elf/sh-elf/include/bits/`basename $i`; \
else true; fi ; \
done ; \
for i in ../../../newlib-2.0.0/newlib/libc/sys/sh/machine/*.h; do \
if [ -f $i ]; then \
/usr/bin/install -c -m 644 $i /opt/toolchains/dc/sh-elf/sh-elf/include/machine/`basename $i`; \
else true; fi ; \
done ; \
for i in ../../../newlib-2.0.0/newlib/libc/sys/sh/include/*.h; do \
if [ -f $i ]; then \
/usr/bin/install -c -m 644 $i /opt/toolchains/dc/sh-elf/sh-elf/include/`basename $i`; \
else true; fi ; \
done ; \
for i in ../../../newlib-2.0.0/newlib/libc/sys/sh/include/*; do \
if [ -d $i ]; then \
for j in $i/*.h; do \
/usr/bin/install -c -m 644 $j /opt/toolchains/dc/sh-elf/sh-elf/include/`basename $i`/`basename $j`; \
done ; \
else true; fi ; \
done ; \
for i in ../../../newlib-2.0.0/newlib/libc/sys/sh/machine/sh/include/*.h; do \
if [ -f $i ]; then \
/usr/bin/install -c -m 644 $i /opt/toolchains/dc/sh-elf/sh-elf/include/machine/`basename $i`; \
else true; fi ; \
done ; \
for i in rpc/types.h rpc/xdr.h; do \
if [ -f /opt/toolchains/dc/sh-elf/sh-elf/include/$i ]; then \
rm /opt/toolchains/dc/sh-elf/sh-elf/include/$i; \
else true; fi ; \
done ; \
else true; fi
mkdir -p -- /opt/toolchains/dc/sh-elf/sh-elf/include
mkdir -p -- /opt/toolchains/dc/sh-elf/sh-elf/include/machine
mkdir -p -- /opt/toolchains/dc/sh-elf/sh-elf/include/rpc
mkdir -p -- /opt/toolchains/dc/sh-elf/sh-elf/include/sys
mkdir -p -- /opt/toolchains/dc/sh-elf/sh-elf/include/bits
/usr/bin/mkdir -p '/opt/toolchains/dc/sh-elf/sh-elf/lib'
/usr/bin/install -c -m 644 crt0.o '/opt/toolchains/dc/sh-elf/sh-elf/lib'
make[5]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/newlib'
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/newlib'
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/newlib'
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/libgloss'
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/libgloss/doc'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/libgloss/doc'
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/libgloss/libnosys'
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/libgloss/libnosys'
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/libgloss'
if [ -z "m4-nofpu m4" ]; then \
true; \
else \
rootpre=`${PWDCMD-pwd}`/; export rootpre; \
srcrootpre=`cd ../../../newlib-2.0.0/libgloss; ${PWDCMD-pwd}`/; export srcrootpre; \
lib=`echo "${rootpre}" | sed -e 's,^.*/\([^/][^/]*\)/$,\1,'`; \
compiler="sh-elf-gcc -B/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/newlib/ -isystem /home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/newlib/targ-include -isystem /home/User/kallistios/utils/dc-chain/newlib-2.0.0/newlib/libc/include -B/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/libgloss/sh -L/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/libgloss/libnosys -L/home/User/kallistios/utils/dc-chain/newlib-2.0.0/libgloss/sh "; \
for i in `${compiler} --print-multi-lib 2>/dev/null`; do \
dir=`echo $i | sed -e 's/;.*$//'`; \
if [ "${dir}" = "." ]; then \
true; \
else \
if [ -d ../${dir}/${lib} ]; then \
flags=`echo $i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
if (cd ../${dir}/${lib}; make "CC=sh-elf-gcc -B/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/newlib/ -isystem /home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/newlib/targ-include -isystem /home/User/kallistios/utils/dc-chain/newlib-2.0.0/newlib/libc/include -B/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/libgloss/sh -L/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/libgloss/libnosys -L/home/User/kallistios/utils/dc-chain/newlib-2.0.0/libgloss/sh " "CFLAGS=-g -O2" "CFLAGS_FOR_TARGET=-g -O2" "CCASFLAGS=" "AR=sh-elf-ar" "RANLIB=sh-elf-ranlib" "AR_FLAGS=rc" "MAKEINFO=makeinfo --split-size=5000000 --split-size=5000000" "AS=sh-elf-as" "LD=sh-elf-ld" "CROSS_CFLAGS=" "TARGET_CFLAGS=" "exec_prefix=/opt/toolchains/dc/sh-elf" "prefix=/opt/toolchains/dc/sh-elf" "tooldir=/opt/toolchains/dc/sh-elf/sh-elf" "infodir=/opt/toolchains/dc/sh-elf/share/info" "libdir=/opt/toolchains/dc/sh-elf/lib" "top_toollibdir=" "INSTALL=/usr/bin/install -c" "INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_DATA=/usr/bin/install -c -m 644" "DESTDIR=" \
CFLAGS="-g -O2 ${flags}" \
CCASFLAGS=" ${flags}" \
FCFLAGS=" ${flags}" \
FFLAGS=" ${flags}" \
ADAFLAGS=" ${flags}" \
prefix="/opt/toolchains/dc/sh-elf" \
exec_prefix="/opt/toolchains/dc/sh-elf" \
GCJFLAGS=" ${flags}" \
GOCFLAGS="-O2 -g ${flags}" \
CXXFLAGS="-g -O2 ${flags}" \
LIBCFLAGS="-g -O2 ${flags}" \
LIBCXXFLAGS="-g -O2 -fno-implicit-templates ${flags}" \
LDFLAGS=" ${flags}" \
MULTIFLAGS="${flags}" \
DESTDIR="" \
INSTALL="/usr/bin/install -c" \
INSTALL_DATA="/usr/bin/install -c -m 644" \
INSTALL_PROGRAM="/usr/bin/install -c" \
INSTALL_SCRIPT="/usr/bin/install -c" \
install); then \
true; \
else \
exit 1; \
fi; \
else true; \
fi; \
fi; \
done; \
fi
make[5]: Entering directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/m4-nofpu/libgloss'
make[6]: Entering directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/m4-nofpu/libgloss/libnosys'
make[6]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/m4-nofpu/libgloss/libnosys'
make[5]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/m4-nofpu/libgloss'
make[5]: Entering directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/m4/libgloss'
make[6]: Entering directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/m4/libgloss/libnosys'
make[6]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/m4/libgloss/libnosys'
make[5]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/m4/libgloss'
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/libgloss'
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0/sh-elf/libgloss'
make[2]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0'
make[1]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-newlib-sh-elf-2.0.0'
+++ Cleaning up build-newlib-sh-elf-2.0.0...
rm -rf build-newlib-sh-elf-2.0.0
+++ Fixing up sh4 newlib includes...
cp /home/User/kallistios/utils/dc-chain/../../include/pthread.h /opt/toolchains/dc/sh-elf/sh-elf/include
cp /home/User/kallistios/utils/dc-chain/../../include/sys/_pthread.h /opt/toolchains/dc/sh-elf/sh-elf/include/sys
cp /home/User/kallistios/utils/dc-chain/../../include/sys/sched.h /opt/toolchains/dc/sh-elf/sh-elf/include/sys
ln -nsf /home/User/kallistios/utils/dc-chain/../../include/kos /opt/toolchains/dc/sh-elf/sh-elf/include
ln -nsf /home/User/kallistios/utils/dc-chain/../../kernel/arch/dreamcast/include/arch /opt/toolchains/dc/sh-elf/sh-elf/include
ln -nsf /home/User/kallistios/utils/dc-chain/../../kernel/arch/dreamcast/include/dc /opt/toolchains/dc/sh-elf/sh-elf/include
+++ Building gcc-4.7.3 to build-gcc-sh-elf-4.7.3 (pass 2)...
mkdir -p build-gcc-sh-elf-4.7.3
> /home/User/kallistios/utils/dc-chain/logs/build-gcc-sh-elf-4.7.3-pass2.log
cd build-gcc-sh-elf-4.7.3; ../gcc-4.7.3/configure --target=sh-elf --prefix=/opt/toolchains/dc/sh-elf --with-newlib --disable-libssp --disable-tls \
--enable-threads=kos --enable-languages=c,c++,objc,obj-c++ --with-multilib-list=m4-single-only,m4-nofpu,m4 --with-endian=little --with-cpu=m4-single-only 2>&1 | tee -a /home/User/kallistios/utils/dc-chain/logs/build-gcc-sh-elf-4.7.3-pass2.log && [ $PIPESTATUS -eq 0 ]
checking build system type... x86_64-unknown-cygwin
checking host system type... x86_64-unknown-cygwin
checking target system type... sh-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... /usr/bin/sed
checking for gawk... gawk
checking for libitm support... no
checking to see if cat works as expected... yes
checking for gcc... gcc
checking for C compiler default output file name... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... .exe
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 g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for gnatbind... no
checking for gnatmake... no
checking whether compiler driver understands Ada... no
checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
checking for objdir... .libs
checking for the correct version of gmp.h... yes
checking for the correct version of mpfr.h... yes
checking for the correct version of mpc.h... yes
checking for the correct version of the gmp/mpfr/mpc libraries... yes
checking for PWL_handle_timeout in -lpwl... no
checking for version 0.11 (revision 0 or later) of PPL... no
The following languages will be built: c,c++,lto,objc,obj-c++
*** This configuration is not supported in the following subdirectories:
target-libmudflap target-libgomp target-libitm gnattools target-libada target-libgfortran target-libgo target-libffi target-zlib target-libjava target-libssp target-boehm-gc
(Any other directories should still work fine.)
checking for default BUILD_CONFIG...
*** removing build-x86_64-unknown-cygwin/libiberty/Makefile to force reconfigure
*** removing build-x86_64-unknown-cygwin/fixincludes/Makefile to force reconfigure
*** removing intl/Makefile to force reconfigure
*** removing libiberty/Makefile to force reconfigure
*** removing zlib/Makefile to force reconfigure
*** removing libcpp/Makefile to force reconfigure
*** removing libdecnumber/Makefile to force reconfigure
*** removing fixincludes/Makefile to force reconfigure
*** removing gcc/Makefile to force reconfigure
*** removing lto-plugin/Makefile to force reconfigure
*** removing sh-elf/libgcc/Makefile to force reconfigure
*** removing sh-elf/libquadmath/Makefile to force reconfigure
checking for bison... bison -y
checking for bison... bison
checking for gm4... no
checking for gnum4... no
checking for m4... m4
checking for flex... flex
checking for flex... flex
checking for makeinfo... makeinfo
checking for expect... no
checking for runtest... no
checking for ar... ar
checking for as... as
checking for dlltool... dlltool
checking for ld... (cached) /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking for lipo... no
checking for nm... nm
checking for ranlib... ranlib
checking for strip... strip
checking for windres... windres
checking for windmc... windmc
checking for objcopy... objcopy
checking for objdump... objdump
checking for readelf... readelf
checking for sh-elf-cc... no
checking for sh-elf-gcc... sh-elf-gcc
checking for sh-elf-c++... no
checking for sh-elf-g++... no
checking for sh-elf-cxx... no
checking for sh-elf-gxx... no
checking for sh-elf-gcc... sh-elf-gcc
checking for sh-elf-gcj... no
checking for sh-elf-gfortran... no
checking for sh-elf-gccgo... no
checking for ar... /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for as... /opt/toolchains/dc/sh-elf/sh-elf/bin/as
checking for dlltool... no
checking for sh-elf-dlltool... no
checking for ld... /opt/toolchains/dc/sh-elf/sh-elf/bin/ld
checking for lipo... no
checking for sh-elf-lipo... no
checking for nm... /opt/toolchains/dc/sh-elf/sh-elf/bin/nm
checking for objdump... /opt/toolchains/dc/sh-elf/sh-elf/bin/objdump
checking for ranlib... /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking for readelf... no
checking for sh-elf-readelf... sh-elf-readelf
checking for strip... /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for windres... no
checking for sh-elf-windres... no
checking for windmc... no
checking for sh-elf-windmc... no
checking where to find the target ar... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target as... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target cc... just compiled
checking where to find the target c++... just compiled
checking where to find the target c++ for libstdc++... just compiled
checking where to find the target dlltool... pre-installed
checking where to find the target gcc... just compiled
checking where to find the target gcj... pre-installed
checking where to find the target gfortran... pre-installed
checking where to find the target gccgo... pre-installed
checking where to find the target ld... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target lipo... pre-installed
checking where to find the target nm... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target objdump... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target ranlib... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target readelf... pre-installed
checking where to find the target strip... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target windres... pre-installed
checking where to find the target windmc... pre-installed
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether -fkeep-inline-functions is supported... yes
configure: creating ./config.status
config.status: creating Makefile
make -j4 -C build-gcc-sh-elf-4.7.3 DESTDIR= 2>&1 | tee -a /home/User/kallistios/utils/dc-chain/logs/build-gcc-sh-elf-4.7.3-pass2.log && [ $PIPESTATUS -eq 0 ]
make[1]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3'
make[2]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3'
Configuring in ./libiberty
Configuring in ./intl
Configuring in ./lto-plugin
Configuring in ./fixincludes
configure: loading cache ./config.cache
configure: loading cache ./config.cache
checking whether make sets $(MAKE)... (cached) yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether NLS is requested... yes
configure: loading cache ./config.cache
checking for msgfmt... (cached) no
checking for gmsgfmt... (cached) :
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) x86_64-unknown-cygwin
checking target system type... (cached) sh-unknown-elf
configure: loading cache ./config.cache
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... checking whether to enable maintainer-specific portions of Makefiles... no
checking for makeinfo... (cached) makeinfo --split-size=5000000
checking for xgettext... (cached) no
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) x86_64-unknown-cygwin
checking target system type... (cached) sh-unknown-elf
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
checking for msgmerge... (cached) no
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
checking for perl... (cached) perl
yes
checking for C compiler default output file name... checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) x86_64-unknown-cygwin
checking for x86_64-unknown-cygwin-ar... (cached) ar
checking for x86_64-unknown-cygwin-ranlib... (cached) ranlib
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
checking for a thread-safe mkdir -p... (cached) /usr/bin/mkdir -p
checking for gawk... (cached) gawk
checking whether make sets $(MAKE)... (cached) yes
checking for C compiler default output file name... a.exe
checking whether the C compiler works... checking whether to enable maintainer-specific portions of Makefiles... no
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
yes
checking whether we are cross compiling... no
checking for suffix of executables... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... .exe
checking for suffix of object files... (cached) o
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... (cached) gcc -E
checking for C compiler default output file name... checking for C compiler default output file name... .exe
checking for suffix of object files... (cached) o
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 build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) x86_64-unknown-cygwin
checking for x86_64-unknown-cygwin-ranlib... (cached) ranlib
checking for library containing strerror... (cached) none required
checking how to run the C preprocessor... (cached) gcc -E
a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... a.exe
checking whether the C compiler works... checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for ANSI C header files... (cached) yes
yes
checking for sys/types.h... (cached) yes
checking whether we are cross compiling... no
checking for suffix of executables... .exe
checking for sys/stat.h... (cached) yes
checking for suffix of object files... (cached) o
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 for style of include used by make... checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for ANSI C header files... (cached) yes
checking for an ANSI C-conforming const... (cached) yes
checking for inline... (cached) inline
checking for sys/types.h... (cached) yes
GNU
checking dependency style of gcc... (cached) gcc3
checking for special C compiler options needed for large files... (cached) no
checking for _FILE_OFFSET_BITS value needed for large files... (cached) no
checking for stdlib.h... (cached) yes
.exe
checking for suffix of object files... (cached) o
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 for special C compiler options needed for large files... (cached) no
checking for _FILE_OFFSET_BITS value needed for large files... (cached) no
checking whether gcc supports -Wall... (cached) yes
checking how to print strings... checking how to run the C preprocessor... (cached) gcc -E
checking for sys/stat.h... (cached) yes
printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for string.h... (cached) yes
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for fgrep... (cached) /usr/bin/grep -F
checking for ld used by gcc... checking for memory.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for strings.h... (cached) yes
checking for string.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
(cached) /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... (cached) nm
checking the name lister (nm) interface... (cached) BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... (cached) 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... checking whether gcc supports -W... (cached) yes
yes
checking for unistd.h... (cached) yes
checking whether gcc supports -Wall... (cached) yes
checking for memory.h... (cached) yes
checking for /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe option to reload object files... (cached) -r
checking for x86_64-unknown-cygwin-objdump... (cached) objdump
checking how to recognize dependent libraries... checking for minix/config.h... (cached) no
(cached) file_magic ^x86 archive import|^x86 DLL
checking whether it is safe to define __EXTENSIONS__... (cached) yes
checking for x86_64-unknown-cygwin-ar... (cached) ar
checking for x86_64-unknown-cygwin-strip... checking for a sed that does not truncate output... (cached) /usr/bin/sed
no
checking for strip... (cached) strip
checking for x86_64-unknown-cygwin-ranlib... (cached) ranlib
checking command to parse nm output from gcc object... (cached) ok
checking how to run the C preprocessor... (cached) gcc -E
checking whether gcc supports -Wwrite-strings... (cached) yes
checking whether gcc supports -W... (cached) yes
checking whether gcc supports -Wc++-compat... (cached) yes
checking for strings.h... (cached) yes
checking whether gcc supports -Wstrict-prototypes... (cached) yes
checking whether gcc supports -pedantic ... (cached) yes
checking whether gcc and cc understand -c and -o together... checking whether gcc supports -Wall... (cached) yes
(cached) yes
checking for an ANSI C-conforming const... (cached) yes
checking for inline... (cached) inline
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for ANSI C header files... checking whether gcc supports -Wwrite-strings... (cached) yes
(cached) yes
checking for sys/types.h... (cached) yes
checking for inttypes.h... (cached) yes
checking whether gcc supports -Wstrict-prototypes... (cached) yes
checking for ANSI C header files... (cached) yes
checking for stdint.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for sys/types.h... (cached) yes
checking whether gcc supports -Wmissing-prototypes... (cached) yes
checking for stdlib.h... (cached) yes
checking whether gcc supports -Wold-style-definition... (cached) yes
checking for unistd.h... (cached) yes
checking whether gcc supports -Wmissing-format-attribute... (cached) yes
checking for off_t... (cached) yes
checking for size_t... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for string.h... (cached) yes
checking whether gcc supports -Woverlength-strings... (cached) yes
checking for stdlib.h... (cached) yes
checking whether gcc supports -pedantic -Wlong-long... (cached) yes
checking for sys/stat.h... (cached) yes
checking for ANSI C header files... (cached) yes
checking for memory.h... (cached) yes
checking for stddef.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) no
checking whether we are using the GNU C Library 2.1 or newer... (cached) no
checking whether integer division by zero raises SIGFPE... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for unsigned long long... (cached) yes
checking for inttypes.h... (cached) yes
checking whether the inttypes.h PRIxNN macros are broken... (cached) no
checking for ld used by GCC... checking for strings.h... (cached) yes
checking for strings.h... (cached) yes
checking for memory.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for unistd.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdint.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for fcntl.h... (cached) yes
checking for unistd.h... (cached) yes
checking whether byte ordering is bigendian... (cached) no
checking for a BSD-compatible install... /usr/bin/install -c
checking for stdint.h... (cached) yes
checking for sys/file.h... (cached) yes
(cached) /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... (cached) yes
checking for shared library run path origin... (cached) done
checking for sys/file.h... (cached) yes
checking for argz.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for limits.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for objdir... (cached) .libs
checking for clearerr_unlocked... (cached) no
checking for feof_unlocked... (cached) no
checking for limits.h... (cached) yes
checking for locale.h... (cached) yes
checking for ferror_unlocked... (cached) no
checking for fflush_unlocked... (cached) no
checking for fgetc_unlocked... (cached) no
checking for stdlib.h... (cached) yes
checking for fgets_unlocked... (cached) no
checking for nl_types.h... (cached) no
checking for fileno_unlocked... (cached) no
checking for malloc.h... (cached) yes
checking for malloc.h... (cached) yes
checking for string.h... (cached) yes
checking for fprintf_unlocked... (cached) no
checking for stddef.h... (cached) yes
checking if gcc supports -fno-rtti -fno-exceptions... (cached) no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... (cached) yes
checking if gcc static flag -static works... (cached) yes
checking if gcc supports -c -o file.o... (cached) yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... checking for fputc_unlocked... (cached) no
checking for unistd.h... (cached) yes
yes
checking whether -lc should be explicitly linked in... (cached) yes
checking dynamic linker characteristics... checking for fputs_unlocked... (cached) no
checking for fread_unlocked... (cached) no
checking for fwrite_unlocked... (cached) no
checking for strings.h... (cached) yes
checking for getchar_unlocked... (cached) yes
Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... checking for stdlib.h... (cached) yes
yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for int64_t... (cached) yes
checking for uint64_t... (cached) yes
checking for sys/wait.h that is POSIX.1 compatible... (cached) yes
checking for getc_unlocked... (cached) yes
checking for sys/time.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for putchar_unlocked... (cached) yes
configure: creating ./config.status
checking for time.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for putc_unlocked... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking whether abort is declared... (cached) yes
checking for feof_unlocked... (cached) no
checking for fgets_unlocked... (cached) no
checking for sys/mman.h... (cached) yes
checking for getc_unlocked... (cached) yes
checking whether asprintf is declared... (cached) yes
checking for getcwd... (cached) yes
checking whether basename is declared... (cached) no
checking for fcntl.h... (cached) yes
checking whether errno is declared... (cached) no
checking for getegid... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking for alloca.h... (cached) yes
checking whether clearerr_unlocked is declared... (cached) no
checking for geteuid... (cached) yes
checking for sys/pstat.h... (cached) no
checking whether feof_unlocked is declared... (cached) no
checking for getgid... (cached) yes
checking for sys/sysmp.h... (cached) no
checking for sys/sysinfo.h... (cached) yes
checking whether ferror_unlocked is declared... (cached) no
checking for getuid... (cached) yes
checking whether fflush_unlocked is declared... (cached) no
checking for mempcpy... (cached) yes
checking for machine/hal_sysinfo.h... (cached) no
checking for sys/table.h... (cached) no
checking whether fgetc_unlocked is declared... (cached) no
checking for munmap... (cached) yes
checking for sys/sysctl.h... (cached) no
checking for sys/systemcfg.h... (cached) no
checking whether fgets_unlocked is declared... (cached) no
checking for stdint.h... (cached) yes
checking for putenv... (cached) yes
checking whether fileno_unlocked is declared... (cached) no
checking for stdio_ext.h... (cached) yes
checking for setenv... (cached) yes
checking whether fprintf_unlocked is declared... (cached) no
checking for process.h... (cached) yes
checking for setlocale... (cached) yes
checking for sys/prctl.h... (cached) no
checking for sys/wait.h that is POSIX.1 compatible... (cached) yes
checking whether time.h and sys/time.h may both be included... (cached) yes
checking whether errno must be declared... (cached) no
checking size of int... (cached) 4
checking whether fputc_unlocked is declared... (cached) no
checking for a 64-bit type... (cached) uint64_t
checking for intptr_t... (cached) yes
checking for uintptr_t... (cached) yes
checking for ssize_t... (cached) yes
checking for pid_t... (cached) yes
checking for library containing strerror... (cached) none required
checking for asprintf... (cached) yes
checking for stpcpy... (cached) yes
checking for strcasecmp... (cached) yes
checking for atexit... (cached) yes
checking for basename... (cached) yes
checking whether fputs_unlocked is declared... (cached) no
checking for strdup... (cached) yes
checking whether fread_unlocked is declared... (cached) no
checking for strtoul... (cached) yes
checking for bcmp... (cached) yes
checking whether fwrite_unlocked is declared... (cached) no
checking for tsearch... (cached) yes
checking for bcopy... (cached) yes
checking whether getchar_unlocked is declared... (cached) yes
checking for __argz_count... (cached) no
checking for bsearch... (cached) yes
checking for __argz_stringify... (cached) no
checking whether getc_unlocked is declared... (cached) yes
checking for __argz_next... (cached) no
checking whether putchar_unlocked is declared... (cached) yes
checking for bzero... (cached) yes
checking for __fsetlocking... (cached) no
checking for iconv... (cached) no, consider installing GNU libiconv
checking for nl_langinfo and CODESET... (cached) yes
checking for LC_MESSAGES... (cached) yes
checking for bison... (cached) bison
checking version of bison... 2.7.1, ok
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for GNU gettext in libc... (cached) no
checking for calloc... (cached) yes
checking for GNU gettext in libintl... (cached) no
checking whether putc_unlocked is declared... (cached) yes
checking for an ANSI C-conforming const... (cached) yes
checking for sys/mman.h... (cached) yes
checking for mmap... (cached) yes
checking whether read-only mmap of a plain file works... (cached) yes
checking whether mmap from /dev/zero works... (cached) no
checking for MAP_ANON(YMOUS)... (cached) yes
checking whether mmap with MAP_ANON(YMOUS) works... (cached) no
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether to use NLS... yes
checking where the gettext function comes from... included intl directory
checking for aclocal... no
checking for autoconf... (cached) autoconf
checking for autoheader... (cached) autoheader
checking for clock... (cached) yes
configure: creating ./config.status
checking for ffs... (cached) yes
checking for getcwd... (cached) yes
configure: creating ./config.status
checking for getpagesize... (cached) yes
checking for gettimeofday... (cached) yes
checking for index... (cached) yes
checking for insque... (cached) yes
checking for memchr... (cached) yes
checking for memcmp... (cached) yes
checking for memcpy... (cached) yes
checking for memmem... (cached) yes
checking for memmove... (cached) yes
checking for mempcpy... (cached) yes
checking for memset... (cached) yes
checking for mkstemps... (cached) yes
checking for putenv... (cached) yes
config.status: creating Makefile
checking for random... (cached) yes
checking for rename... (cached) yes
config.status: creating Makefile
config.status: creating mkheaders.almost
checking for rindex... (cached) yes
checking for setenv... (cached) yes
checking for snprintf... (cached) yes
config.status: creating config.intl
config.status: creating config.h
config.status: config.h is unchanged
checking for sigsetmask... (cached) no
checking for stpcpy... (cached) yes
config.status: creating config.h
checking for stpncpy... (cached) yes
config.status: config.h is unchanged
config.status: executing default-1 commands
checking for strcasecmp... (cached) yes
Configuring in build-x86_64-unknown-cygwin/libiberty
checking for strchr... (cached) yes
Configuring in build-x86_64-unknown-cygwin/fixincludes
checking for strdup... (cached) yes
checking for strncasecmp... (cached) yes
checking for strndup... (cached) yes
checking for strrchr... (cached) yes
checking for strstr... (cached) yes
checking for strtod... (cached) yes
checking for strtol... (cached) yes
checking for strtoul... (cached) yes
checking for strverscmp... (cached) no
checking for tmpnam... (cached) yes
checking for vasprintf... (cached) yes
checking for vfprintf... (cached) yes
checking for vprintf... (cached) yes
checking for vsnprintf... (cached) yes
checking for vsprintf... (cached) yes
checking for waitpid... (cached) yes
checking for setproctitle... (cached) no
checking whether alloca needs Cray hooks... (cached) no
checking stack direction for C alloca... (cached) -1
checking for vfork.h... (cached) no
checking for fork... (cached) yes
checking for vfork... (cached) yes
configure: loading cache ../config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for makeinfo... (cached) makeinfo --split-size=5000000
checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for _doprnt... (cached) no
checking for sys_errlist... (cached) yes
checking for sys_nerr... (cached) yes
checking for sys_siglist... (cached) yes
checking for perl... (cached) perl
checking for external symbol _system_configuration... config.status: creating Makefile
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) x86_64-unknown-cygwin
checking for x86_64-unknown-cygwin-ar... (cached) ar
checking for x86_64-unknown-cygwin-ranlib... (cached) ranlib
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
configure: loading cache ../config.cache
no
config.status: creating config.h
checking for __fsetlocking... (cached) no
checking for canonicalize_file_name... (cached) yes
config.status: config.h is unchanged
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) x86_64-unknown-cygwin
checking target system type... config.status: executing depfiles commands
checking for dup3... (cached) yes
checking for getrlimit... (cached) yes
config.status: executing libtool commands
checking for getrusage... (cached) yes
checking for C compiler default output file name... sh-unknown-elf
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
checking for getsysinfo... (cached) no
checking for gettimeofday... (cached) yes
a.exe
checking whether the C compiler works... yes
checking for on_exit... (cached) yes
checking whether we are cross compiling... no
checking for suffix of executables... checking for C compiler default output file name... checking for psignal... (cached) yes
Configuring in ./zlib
.exe
checking for suffix of object files... (cached) o
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 for special C compiler options needed for large files... (cached) no
checking for _FILE_OFFSET_BITS value needed for large files... (cached) no
checking how to run the C preprocessor... (cached) gcc -E
checking for pstat_getdynamic... (cached) no
checking for pstat_getstatic... (cached) no
checking for realpath... (cached) yes
checking for setrlimit... (cached) yes
a.exe
checking whether the C compiler works... yes
checking whether gcc supports -W... (cached) yes
checking for sbrk... (cached) yes
checking whether we are cross compiling... no
checking for suffix of executables... checking whether gcc supports -Wall... (cached) yes
checking whether gcc supports -Wwrite-strings... (cached) yes
checking for spawnve... (cached) yes
checking whether gcc supports -Wc++-compat... (cached) yes
checking for spawnvpe... (cached) yes
checking whether gcc supports -Wstrict-prototypes... (cached) yes
checking whether gcc supports -pedantic ... (cached) yes
checking whether gcc and cc understand -c and -o together... (cached) yes
checking for an ANSI C-conforming const... (cached) yes
checking for inline... (cached) inline
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for ANSI C header files... (cached) yes
.exe
checking for strerror... (cached) yes
checking for suffix of object files... (cached) o
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... (cached) gcc -E
checking for sys/types.h... (cached) yes
checking for strsignal... (cached) yes
checking for sys/stat.h... (cached) yes
checking for sysconf... (cached) yes
checking for stdlib.h... (cached) yes
checking for sysctl... (cached) no
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for ANSI C header files... (cached) yes
checking for sysmp... (cached) no
checking for sys/types.h... (cached) yes
checking for table... (cached) no
checking for string.h... (cached) yes
checking for times... (cached) yes
checking for memory.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for wait3... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for wait4... (cached) yes
checking for inttypes.h... (cached) yes
checking for string.h... (cached) yes
checking for stdint.h... (cached) yes
checking whether basename is declared... (cached) no
checking for memory.h... (cached) yes
checking for unistd.h... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether byte ordering is bigendian... (cached) no
checking for a BSD-compatible install... /usr/bin/install -c
checking for strings.h... (cached) yes
checking whether asprintf is declared... (cached) yes
checking for inttypes.h... (cached) yes
checking for sys/file.h... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking for sys/param.h... (cached) yes
checking whether snprintf is declared... (cached) yes
checking for stdint.h... (cached) yes
checking for limits.h... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
configure: loading cache ./config.cache
checking minix/config.h usability... checking whether calloc is declared... (cached) yes
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) x86_64-unknown-cygwin
checking target system type... (cached) sh-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... checking for malloc.h... (cached) yes
checking whether getenv is declared... (cached) yes
checking whether getopt is declared... (cached) yes
checking for string.h... (cached) yes
no
checking minix/config.h presence... checking for unistd.h... (cached) yes
checking whether malloc is declared... (cached) yes
yes
checking for strings.h... (cached) yes
checking for a thread-safe mkdir -p... (cached) /usr/bin/mkdir -p
checking for gawk... (cached) gawk
checking whether make sets $(MAKE)... checking whether realloc is declared... (cached) yes
(cached) yes
checking for sys/time.h... (cached) yes
no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... checking whether sbrk is declared... (cached) yes
checking for time.h... (cached) yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
yes
checking for a sed that does not truncate output... checking for sys/resource.h... (cached) yes
/usr/bin/sed
checking whether strverscmp is declared... (cached) no
checking whether gcc supports -W... (cached) yes
checking whether canonicalize_file_name must be declared... (cached) no
checking for working strncmp... (cached) yes
checking for sys/stat.h... (cached) yes
checking whether gcc supports -Wall... (cached) yes
checking for sys/mman.h... (cached) yes
checking whether gcc supports -Wwrite-strings... (cached) yes
checking whether gcc supports -Wstrict-prototypes... (cached) yes
checking whether gcc supports -Wmissing-prototypes... checking for fcntl.h... (cached) yes
checking for alloca.h... (cached) yes
yes
checking for C compiler default output file name... checking whether gcc supports -Wold-style-definition... checking for sys/pstat.h... (cached) no
checking for sys/sysmp.h... (cached) no
checking for sys/sysinfo.h... (cached) yes
yes
configure: creating ./config.status
checking for machine/hal_sysinfo.h... (cached) no
a.exe
checking whether the C compiler works... checking whether gcc supports -Wmissing-format-attribute... yes
checking for sys/table.h... (cached) no
checking whether we are cross compiling... no
checking for suffix of executables... checking for sys/sysctl.h... (cached) no
yes
checking for sys/systemcfg.h... (cached) no
.exe
checking for suffix of object files... (cached) o
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 for stdint.h... (cached) yes
checking for style of include used by make... checking whether gcc supports -Woverlength-strings... GNU
checking dependency style of gcc... (cached) gcc3
checking how to print strings... checking for stdio_ext.h... (cached) yes
printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for fgrep... (cached) /usr/bin/grep -F
checking for ld used by gcc... yes
checking whether gcc supports -pedantic -Wlong-long... checking for process.h... (cached) yes
yes
checking for ANSI C header files... (cached) yes
checking stddef.h usability... (cached) /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... (cached) nm
checking the name lister (nm) interface... (cached) BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... (cached) 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
yes
checking stddef.h presence... checking for /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe option to reload object files... (cached) -r
checking for x86_64-unknown-cygwin-objdump... (cached) objdump
checking how to recognize dependent libraries... (cached) file_magic ^x86 archive import|^x86 DLL
checking for x86_64-unknown-cygwin-ar... (cached) ar
checking for x86_64-unknown-cygwin-strip... no
checking for strip... (cached) strip
checking for x86_64-unknown-cygwin-ranlib... (cached) ranlib
checking command to parse nm output from gcc object... (cached) ok
checking how to run the C preprocessor... (cached) gcc -E
yes
checking for stddef.h... yes
checking for stdlib.h... (cached) yes
checking for sys/prctl.h... (cached) no
checking for sys/wait.h that is POSIX.1 compatible... (cached) yes
checking whether time.h and sys/time.h may both be included... (cached) yes
checking whether errno must be declared... (cached) no
checking size of int... (cached) 4
checking for a 64-bit type... (cached) uint64_t
checking for intptr_t... (cached) yes
checking for uintptr_t... (cached) yes
checking for ssize_t... (cached) yes
checking for pid_t... (cached) yes
checking for library containing strerror... (cached) none required
checking for ANSI C header files... (cached) yes
checking for asprintf... (cached) yes
checking for strings.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for atexit... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for basename... (cached) yes
checking for fcntl.h... (cached) yes
checking for bcmp... (cached) yes
checking for sys/file.h... (cached) yes
checking for string.h... (cached) yes
checking for bcopy... (cached) yes
config.status: creating Makefile
checking for sys/stat.h... (cached) yes
checking for bsearch... (cached) yes
checking for memory.h... (cached) yes
checking for strings.h... (cached) yes
checking for clearerr_unlocked... config.status: creating testsuite/Makefile
checking for bzero... (cached) yes
checking for inttypes.h... (cached) yes
checking for calloc... (cached) yes
checking for stdint.h... (cached) yes
config.status: creating config.h
config.status: config.h is unchanged
checking for clock... (cached) yes
checking for unistd.h... (cached) yes
config.status: executing default commands
no
checking for feof_unlocked... checking for dlfcn.h... (cached) yes
checking for objdir... (cached) .libs
checking for ffs... (cached) yes
checking for getcwd... (cached) yes
checking for getpagesize... (cached) yes
no
checking for gettimeofday... (cached) yes
Configuring in ./libdecnumber
checking for ferror_unlocked... checking if gcc supports -fno-rtti -fno-exceptions... (cached) no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... (cached) yes
checking if gcc static flag -static works... (cached) yes
checking if gcc supports -c -o file.o... (cached) yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... checking for index... (cached) yes
yes
checking whether -lc should be explicitly linked in... (cached) yes
checking dynamic linker characteristics... checking for insque... (cached) yes
checking for memchr... (cached) yes
no
Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... checking for fflush_unlocked... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C preprocessor... gcc -E
checking for memcmp... (cached) yes
checking for memcpy... (cached) yes
checking for memmem... (cached) yes
checking for memmove... (cached) yes
no
checking for memcpy... (cached) yes
checking for fgetc_unlocked... checking for mempcpy... (cached) yes
checking for strerror... (cached) yes
checking for memset... (cached) yes
checking for unistd.h... (cached) yes
checking for mkstemps... (cached) yes
checking for putenv... (cached) yes
no
checking for fgets_unlocked... checking for random... (cached) yes
configure: creating ./config.status
checking for rename... (cached) yes
checking for rindex... (cached) yes
no
checking for fileno_unlocked... checking for setenv... (cached) yes
checking for snprintf... (cached) yes
checking for sigsetmask... (cached) no
checking for stpcpy... (cached) yes
no
checking for fprintf_unlocked... checking for stpncpy... (cached) yes
checking for strcasecmp... (cached) yes
checking for strchr... (cached) yes
configure: loading cache ./config.cache
no
checking whether make sets $(MAKE)... checking for fputc_unlocked... (cached) yes
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
checking for strdup... (cached) yes
checking for strncasecmp... (cached) yes
checking for strndup... (cached) yes
no
checking for C compiler default output file name... checking for strrchr... (cached) yes
checking for fputs_unlocked... checking for strstr... (cached) yes
checking for strtod... (cached) yes
a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... checking for strtol... (cached) yes
no
checking for fread_unlocked... checking for strtoul... (cached) yes
.exe
checking for suffix of object files... (cached) o
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 for x86_64-unknown-cygwin-ranlib... (cached) ranlib
checking for aclocal... no
checking for autoconf... (cached) autoconf
checking for autoheader... (cached) autoheader
checking whether gcc supports -W... (cached) yes
checking for strverscmp... (cached) no
checking whether gcc supports -Wall... (cached) yes
checking for tmpnam... (cached) yes
checking whether gcc supports -Wwrite-strings... (cached) yes
no
checking for vasprintf... (cached) yes
checking for fwrite_unlocked... checking whether gcc supports -Wstrict-prototypes... (cached) yes
checking whether gcc supports -Wmissing-prototypes... (cached) yes
checking for vfprintf... (cached) yes
checking whether gcc supports -Wold-style-definition... (cached) yes
checking whether gcc supports -Wmissing-format-attribute... (cached) yes
checking whether gcc supports -Wcast-qual... (cached) yes
checking whether gcc supports -pedantic -Wlong-long... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for vprintf... (cached) yes
checking for vsnprintf... (cached) yes
no
checking for vsprintf... (cached) yes
checking for getchar_unlocked... checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for ANSI C header files... (cached) yes
checking for waitpid... (cached) yes
checking for sys/types.h... (cached) yes
checking for setproctitle... (cached) no
checking whether alloca needs Cray hooks... (cached) no
checking stack direction for C alloca... (cached) -1
checking for vfork.h... (cached) no
checking for sys/stat.h... (cached) yes
checking for fork... (cached) yes
yes
checking for vfork... (cached) yes
checking for stdlib.h... (cached) yes
checking for getc_unlocked... checking for working fork... checking for string.h... (cached) (cached) yes
yes
checking for working vfork... (cached) yes
checking for _doprnt... (cached) no
checking for sys_errlist... (cached) yes
checking for sys_nerr... (cached) yes
checking for memory.h... (cached) yes
checking for sys_siglist... (cached) yes
checking for external symbol _system_configuration... yes
checking for strings.h... (cached) yes
checking for putchar_unlocked... checking for inttypes.h... (cached) yes
no
checking for stdint.h... (cached) yes
checking for __fsetlocking... (cached) no
checking for canonicalize_file_name... (cached) yes
checking for unistd.h... (cached) yes
yes
checking for dup3... (cached) yes
checking for ctype.h... (cached) yes
checking for putc_unlocked... checking for getrlimit... (cached) yes
checking for stddef.h... (cached) yes
checking for getrusage... (cached) yes
checking for string.h... (cached) yes
checking for getsysinfo... (cached) no
yes
checking for gettimeofday... (cached) yes
checking for stdio.h... (cached) yes
checking for on_exit... (cached) yes
looking for a compliant stdint.h in stdint.h, checking for uintmax_t... checking whether abort is declared... checking for psignal... (cached) yes
checking for pstat_getdynamic... (cached) no
yes
checking for pstat_getstatic... (cached) no
checking for realpath... (cached) yes
checking whether asprintf is declared... (cached) yes
yes
checking for uintptr_t... checking for setrlimit... (cached) yes
checking whether basename is declared... (cached) no
checking for sbrk... (cached) yes
checking whether errno is declared... checking for spawnve... (cached) yes
yes
checking for int_least32_t... checking for spawnvpe... (cached) yes
checking for strerror... (cached) yes
no
checking for strsignal... (cached) yes
checking whether vasprintf is declared... (cached) yes
yes
checking for int_fast32_t... checking whether clearerr_unlocked is declared... checking for sysconf... (cached) yes
checking for sysctl... (cached) no
checking for sysmp... (cached) no
no
checking for table... (cached) no
checking for times... (cached) yes
yes
checking for uint64_t... checking whether feof_unlocked is declared... checking for wait3... (cached) yes
checking for wait4... (cached) yes
no
checking whether ferror_unlocked is declared... yes
checking what to include in gstdint.h... stdint.h (already complete)
checking for an ANSI C-conforming const... (cached) yes
checking for off_t... (cached) yes
checking size of int... (cached) 4
checking whether basename is declared... (cached) no
checking size of long... (cached) 8
checking for ANSI C header files... (cached) yes
checking whether ffs is declared... (cached) yes
no
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) x86_64-unknown-cygwin
checking target system type... (cached) sh-unknown-elf
checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
dpd
checking whether byte ordering is bigendian... (cached) no
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
configure: creating ./config.status
checking whether fflush_unlocked is declared... checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether calloc is declared... (cached) yes
no
checking whether getenv is declared... (cached) yes
checking whether fgetc_unlocked is declared... checking whether getopt is declared... (cached) yes
checking whether malloc is declared... (cached) yes
checking whether realloc is declared... (cached) yes
no
checking whether sbrk is declared... (cached) yes
config.status: creating Makefile
checking whether strverscmp is declared... (cached) no
checking whether fgets_unlocked is declared... checking whether canonicalize_file_name must be declared... (cached) no
checking for working strncmp... (cached) yes
config.status: executing default-1 commands
no
checking whether fileno_unlocked is declared... configure: creating ./config.status
no
checking whether fprintf_unlocked is declared... config.status: creating Makefile
no
config.status: executing depfiles commands
checking whether fputc_unlocked is declared... config.status: creating config.h
config.status: config.h is unchanged
config.status: executing gstdint.h commands
no
config.status: executing libtool commands
checking whether fputs_unlocked is declared... no
checking whether fread_unlocked is declared... no
config.status: creating Makefile
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libiberty'
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 ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.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 '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/intl'
rm -f stamp-h1
checking whether fwrite_unlocked is declared... /bin/sh ./config.status config.h
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libiberty/testsuite'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libiberty/testsuite'
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libiberty'
no
config.status: creating testsuite/Makefile
checking whether getchar_unlocked is declared... make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/zlib'
true "AR_FLAGS=rc" "CC_FOR_BUILD=gcc" "CFLAGS=-g -O2" "CXXFLAGS=-g -O2" "CFLAGS_FOR_BUILD=-g -O2" "CFLAGS_FOR_TARGET=-g -O2" "INSTALL=/usr/bin/install -c" "INSTALL_DATA=/usr/bin/install -c -m 644" "INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install -c" "LDFLAGS=-Wl,--stack,12582912" "LIBCFLAGS=-g -O2" "LIBCFLAGS_FOR_TARGET=-g -O2" "MAKE=make" "MAKEINFO=makeinfo --split-size=5000000 --split-size=5000000 " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/sh" "EXPECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS=" "exec_prefix=/opt/toolchains/dc/sh-elf" "infodir=/opt/toolchains/dc/sh-elf/share/info" "libdir=/opt/toolchains/dc/sh-elf/lib" "prefix=/opt/toolchains/dc/sh-elf" "tooldir=/opt/toolchains/dc/sh-elf/sh-elf" "AR=ar" "AS=as" "CC=gcc" "CXX=g++" "LD=/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe" "LIBCFLAGS=-g -O2" "NM=nm" "PICFLAG=" "RANLIB=ranlib" "DESTDIR=" DO=all multi-do # make
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/zlib'
config.status: creating config.h
yes
config.status: config.h is unchanged
Configuring in ./libcpp
config.status: executing default commands
config.status: creating config.h
checking whether getc_unlocked is declared... config.status: config.h is unchanged
test -f config.h || (rm -f stamp-h1 && make stamp-h1)
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/intl'
yes
checking whether putchar_unlocked is declared... make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libdecnumber'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libdecnumber'
yes
checking whether putc_unlocked is declared... make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin'
make all-am
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin'
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/fixincludes'
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin'
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin'
srcdir="../../gcc-4.7.3/fixincludes" /bin/sh ../../gcc-4.7.3/fixincludes/mkfixinc.sh sh-unknown-elf
yes
checking for an ANSI C-conforming const... (cached) yes
checking for sys/mman.h... (cached) yes
checking for mmap... sed -e 's/@gcc_version@/4.7.3/' < mkheaders.almost > mkheadersT
mv -f mkheadersT mkheaders
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/fixincludes'
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/build-x86_64-unknown-cygwin/libiberty'
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 ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o > required-list
Configuring in ./gcc
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/build-x86_64-unknown-cygwin/libiberty/testsuite'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/build-x86_64-unknown-cygwin/libiberty/testsuite'
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/build-x86_64-unknown-cygwin/libiberty'
yes
checking whether read-only mmap of a plain file works... yes
checking whether mmap from /dev/zero works... no
checking for MAP_ANON(YMOUS)... yes
checking whether mmap with MAP_ANON(YMOUS) works... no
checking whether to enable maintainer-specific portions of Makefiles... no
configure: updating cache ../config.cache
configure: creating ./config.status
configure: loading cache ./config.cache
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) x86_64-unknown-cygwin
checking target system type... (cached) sh-unknown-elf
checking whether make sets $(MAKE)... (cached) yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
checking for C compiler default output file name... a.exe
checking whether the C compiler works... yes
configure: loading cache ./config.cache
checking whether we are cross compiling... no
checking for suffix of executables... checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) x86_64-unknown-cygwin
checking target system type... (cached) sh-unknown-elf
checking LIBRARY_PATH variable... ok
checking GCC_EXEC_PREFIX variable... ok
checking whether to place generated files in the source directory... no
checking whether a default linker was specified... no
checking whether a default assembler was specified... no
.exe
checking for x86_64-unknown-cygwin-gcc... (cached) gcc
checking for suffix of object files... (cached) o
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
config.status: creating Makefile
config.status: creating mkheaders.almost
checking for C compiler default output file name... checking whether we are using the GNU C++ compiler... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking for x86_64-unknown-cygwin-ranlib... (cached) ranlib
checking how to run the C preprocessor... (cached) gcc -E
config.status: creating config.h
config.status: config.h is unchanged
a.exe
checking whether the C compiler works... checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for ANSI C header files... (cached) yes
checking for sys/types.h... (cached) yes
yes
checking whether we are cross compiling... no
checking for suffix of executables... checking for sys/stat.h... (cached) yes
checking for stdlib.h... (cached) yes
.exe
checking for suffix of object files... (cached) o
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 whether gcc and cc understand -c and -o together... checking for string.h... (cached) yes
checking for memory.h... (cached) yes
(cached) yes
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/build-x86_64-unknown-cygwin/fixincludes'
srcdir="../../../gcc-4.7.3/fixincludes" /bin/sh ../../../gcc-4.7.3/fixincludes/mkfixinc.sh sh-unknown-elf
sed -e 's/@gcc_version@/4.7.3/' < mkheaders.almost > mkheadersT
mv -f mkheadersT mkheaders
checking for strings.h... (cached) yes
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/build-x86_64-unknown-cygwin/fixincludes'
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking whether we are using the GNU C++ compiler... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking for x86_64-unknown-cygwin-gnatbind... (cached) no
checking for x86_64-unknown-cygwin-gnatmake... (cached) no
checking whether compiler driver understands Ada... (cached) no
checking how to run the C preprocessor... (cached) gcc -E
checking for unistd.h... (cached) yes
checking for minix/config.h... (cached) no
checking whether it is safe to define __EXTENSIONS__... (cached) yes
checking for special C compiler options needed for large files... (cached) no
checking for _FILE_OFFSET_BITS value needed for large files... (cached) no
checking for aclocal... no
checking for autoconf... (cached) autoconf
checking for autoheader... (cached) autoheader
checking whether gcc supports -W... (cached) yes
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for ANSI C header files... (cached) yes
checking whether gcc supports -Wall... (cached) yes
checking for sys/types.h... (cached) yes
checking whether gcc supports -Wnarrowing... (cached) yes
checking for sys/stat.h... (cached) yes
checking whether gcc supports -Wwrite-strings... (cached) yes
checking whether gcc supports -Wmissing-format-attribute... (cached) yes
checking whether gcc supports -Wstrict-prototypes... (cached) yes
checking for stdlib.h... (cached) yes
checking whether gcc supports -Wmissing-prototypes... (cached) yes
checking whether gcc supports -Wold-style-definition... (cached) yes
checking for string.h... (cached) yes
checking whether gcc supports -Wc++-compat... (cached) yes
checking whether gcc supports -pedantic -Wlong-long... (cached) yes
checking for memory.h... (cached) yes
checking whether gcc supports -fno-exceptions... (cached) yes
checking whether gcc supports -fno-rtti... (cached) yes
checking for strings.h... (cached) yes
checking dependency style of gcc... (cached) gcc3
checking whether time.h and sys/time.h may both be included... (cached) yes
checking whether string.h and strings.h may both be included... (cached) yes
checking for locale.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for fcntl.h... (cached) yes
checking for unistd.h... (cached) yes
checking for limits.h... (cached) yes
checking for minix/config.h... (cached) no
checking whether it is safe to define __EXTENSIONS__... (cached) yes
checking how to run the C preprocessor... gcc -E
checking for stddef.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for strings.h... (cached) yes
checking for inline... (cached) inline
checking for special C compiler options needed for large files... (cached) no
checking for _FILE_OFFSET_BITS value needed for large files... (cached) no
checking size of void *... (cached) 8
checking size of short... (cached) 2
checking size of int... (cached) 4
checking size of long... (cached) 8
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking for __int64... (cached) no
checking for int8_t... (cached) yes
checking for int16_t... (cached) yes
checking for int32_t... (cached) yes
checking for int64_t... (cached) yes
checking for long long int... (cached) yes
checking for intmax_t... (cached) yes
checking for intptr_t... (cached) yes
checking for uint8_t... (cached) yes
checking for uint16_t... (cached) yes
checking for uint32_t... (cached) yes
checking for uint64_t... (cached) yes
checking for unsigned long long int... checking for string.h... (cached) yes
(cached) yes
checking for uintmax_t... (cached) yes
checking for uintptr_t... (cached) yes
checking whether gcc supports -W... (cached) yes
checking whether gcc supports -Wall... (cached) yes
checking whether gcc supports -Wnarrowing... (cached) yes
checking for sys/file.h... (cached) yes
checking whether gcc supports -Wwrite-strings... (cached) yes
checking whether gcc supports -Wcast-qual... (cached) yes
checking whether gcc supports -Wstrict-prototypes... (cached) yes
checking for unistd.h... (cached) yes
checking whether gcc supports -Wmissing-prototypes... (cached) yes
checking whether byte ordering is bigendian... (cached) no
checking for an ANSI C-conforming const... (cached) yes
checking for inline... (cached) inline
checking for obstacks... (cached) no
checking for off_t... (cached) yes
checking for size_t... (cached) yes
checking for ssize_t... (cached) yes
checking for uintptr_t... (cached) yes
checking for ptrdiff_t... (cached) yes
checking whether struct tm is in sys/time.h or time.h... (cached) time.h
checking size of int... (cached) 4
checking size of long... (cached) 8
checking whether gcc supports -Wmissing-format-attribute... (cached) yes
checking whether gcc supports -Wold-style-definition... (cached) yes
checking for clearerr_unlocked... (cached) no
checking for feof_unlocked... (cached) no
checking whether gcc supports -Wc++-compat... (cached) yes
checking whether gcc supports -pedantic -Wlong-long -Wvariadic-macros -Woverlength-strings... (cached) yes
checking for ferror_unlocked... (cached) no
checking whether gcc supports -fno-exceptions... (cached) yes
checking for fflush_unlocked... (cached) no
checking for fgetc_unlocked... (cached) no
checking whether gcc supports -fno-rtti... (cached) yes
checking for valgrind.h... (cached) no
checking for multiarch configuration... no, disabled auto check (cross build configured without --with-sysroot)
configure: WARNING: decimal float is not supported for this target, ignored
checking for fgets_unlocked... (cached) no
checking for fileno_unlocked... (cached) no
configure: WARNING: fixed-point is not supported for this target, ignored
checking for fprintf_unlocked... (cached) no
checking for fputc_unlocked... (cached) no
checking whether make sets $(MAKE)... checking for fputs_unlocked... (cached) no
(cached) yes
checking for gawk... (cached) gawk
checking whether ln -s works... (cached) yes
checking whether ln works... (cached) yes
checking for x86_64-unknown-cygwin-ranlib... (cached) ranlib
checking for a BSD compatible install... /usr/bin/install -c
checking for cmp's capabilities... (cached) gnucompare
checking for mktemp... (cached) yes
checking for makeinfo... (cached) makeinfo --split-size=5000000
checking for modern makeinfo... (cached) yes
checking for recent Pod::Man... checking for fread_unlocked... (cached) no
checking for fwrite_unlocked... (cached) no
yes
checking for flex... (cached) flex
checking for bison... (cached) bison
checking for nm... (cached) nm
checking for ar... (cached) ar
checking for ANSI C header files... (cached) yes
checking whether time.h and sys/time.h may both be included... (cached) yes
checking whether string.h and strings.h may both be included... (cached) yes
checking for sys/wait.h that is POSIX.1 compatible... (cached) yes
checking for getchar_unlocked... (cached) yes
checking for limits.h... (cached) yes
checking for getc_unlocked... (cached) yes
checking for stddef.h... (cached) yes
checking for putchar_unlocked... (cached) yes
checking for string.h... (cached) yes
checking for putc_unlocked... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking whether abort is declared... (cached) yes
checking for time.h... (cached) yes
checking whether asprintf is declared... (cached) yes
checking for iconv.h... (cached) no
checking whether basename is declared... (cached) no
checking for fcntl.h... (cached) yes
checking whether errno is declared... (cached) no
checking for unistd.h... (cached) yes
checking whether getopt is declared... (cached) yes
checking for sys/file.h... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking for sys/time.h... (cached) yes
checking whether clearerr_unlocked is declared... (cached) no
checking whether feof_unlocked is declared... (cached) no
checking for sys/mman.h... (cached) yes
checking whether ferror_unlocked is declared... (cached) no
checking for sys/resource.h... (cached) yes
checking whether fflush_unlocked is declared... (cached) no
checking for sys/param.h... (cached) yes
checking whether fgetc_unlocked is declared... (cached) no
checking for sys/times.h... (cached) yes
checking whether fgets_unlocked is declared... (cached) no
checking whether fileno_unlocked is declared... (cached) no
checking for sys/stat.h... (cached) yes
checking for direct.h... (cached) no
checking whether fprintf_unlocked is declared... (cached) no
checking for malloc.h... (cached) yes
checking whether fputc_unlocked is declared... (cached) no
checking for langinfo.h... (cached) yes
checking whether fputs_unlocked is declared... (cached) no
checking for ldfcn.h... (cached) no
checking whether fread_unlocked is declared... (cached) no
checking for locale.h... (cached) yes
checking whether fwrite_unlocked is declared... (cached) no
checking for wchar.h... (cached) yes
checking for thread.h... (cached) no
checking for pthread.h... (cached) yes
checking for CHAR_BIT... (cached) yes
checking whether byte ordering is bigendian... (cached) no
checking how to run the C++ preprocessor... (cached) g++ -E
checking whether getchar_unlocked is declared... (cached) yes
checking whether getc_unlocked is declared... (cached) yes
checking whether putchar_unlocked is declared... (cached) yes
checking whether putc_unlocked is declared... (cached) yes
checking for unordered_map... (cached) no
checking for tr1/unordered_map... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for ANSI C header files... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking whether NLS is requested... yes
checking for catalogs to be installed... checking for ext/hash_map... (cached) yes
checking for collect2 libraries... (cached) none required
checking for library containing exc_resume... (cached) no
checking for library containing kstat_open... (cached) no
checking for library containing ldexp... (cached) none required
checking for inttypes.h... (cached) yes
checking for times... (cached) yes
checking for clock... (cached) yes
checking for kill... (cached) yes
checking for getrlimit... (cached) yes
checking for setrlimit... (cached) yes
checking for atoll... (cached) yes
checking for atoq... (cached) no
checking for sysconf... (cached) yes
checking for strsignal... (cached) yes
checking for getrusage... (cached) yes
checking for nl_langinfo... (cached) yes
checking for gettimeofday... (cached) yes
checking for mbstowcs... (cached) yes
checking for wcswidth... (cached) yes
checking for mmap... (cached) yes
checking for setlocale... (cached) yes
checking for clearerr_unlocked... (cached) no
checking for feof_unlocked... (cached) no
checking for ferror_unlocked... (cached) no
checking for fflush_unlocked... (cached) no
checking for fgetc_unlocked... (cached) no
checking for fgets_unlocked... (cached) no
checking for fileno_unlocked... (cached) no
checking for fprintf_unlocked... (cached) no
checking for fputc_unlocked... (cached) no
checking for fputs_unlocked... (cached) no
checking for fread_unlocked... (cached) no
checking for fwrite_unlocked... (cached) no
checking for getchar_unlocked... (cached) yes
checking for getc_unlocked... (cached) yes
checking for putchar_unlocked... (cached) yes
checking for putc_unlocked... (cached) yes
checking for madvise... (cached) yes
checking whether mbstowcs works... (cached) yes
checking for ssize_t... (cached) yes
checking for caddr_t... (cached) yes
checking for sys/mman.h... (cached) yes
checking for mmap... (cached) yes
checking whether read-only mmap of a plain file works... (cached) yes
checking whether mmap from /dev/zero works... (cached) no
checking for MAP_ANON(YMOUS)... (cached) yes
checking whether mmap with MAP_ANON(YMOUS) works... (cached) no
checking for pid_t... (cached) yes
checking for vfork.h... (cached) no
checking for fork... (cached) yes
be ca da de el eo es fi fr id ja nl ru sr sv tr uk vi zh_CN zh_TW be ca da de el eo es fi fr id ja nl ru sr sv tr uk vi zh_CN zh_TW
checking for uchar... checking for vfork... (cached) yes
checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for ld used by GCC...
checking for ld used by GCC... (cached) /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... (cached) yes
checking for shared library run path origin... (cached) done
checking for iconv... (cached) no, consider installing GNU libiconv
checking for LC_MESSAGES... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking whether getenv is declared... (cached) yes
(cached) /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... (cached) yes
checking for shared library run path origin... (cached) done
checking whether atol is declared... (cached) yes
checking for iconv... (cached) no, consider installing GNU libiconv
checking whether asprintf is declared... (cached) yes
checking whether sbrk is declared... (cached) yes
configure: creating ./config.status
checking whether abort is declared... (cached) yes
checking whether atof is declared... (cached) yes
checking whether getcwd is declared... (cached) yes
checking whether getwd is declared... (cached) yes
checking whether strsignal is declared... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether stpcpy is declared... (cached) yes
checking whether strverscmp is declared... (cached) no
checking whether errno is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether malloc is declared... (cached) yes
checking whether realloc is declared... (cached) yes
checking whether calloc is declared... (cached) yes
checking whether free is declared... (cached) yes
checking whether basename is declared... (cached) no
checking whether getopt is declared... (cached) no
checking whether clock is declared... (cached) config.status: creating Makefile
yes
checking whether getpagesize is declared... (cached) yes
checking whether clearerr_unlocked is declared... (cached) no
config.status: creating config.h
checking whether feof_unlocked is declared... (cached) no
checking whether ferror_unlocked is declared... (cached) no
config.status: config.h is unchanged
config.status: executing depdir commands
checking whether fflush_unlocked is declared... (cached) no
checking whether fgetc_unlocked is declared... (cached) no
checking whether fgets_unlocked is declared... (cached) no
checking whether fileno_unlocked is declared... (cached) no
checking whether fprintf_unlocked is declared... (cached) no
checking whether fputc_unlocked is declared... (cached) no
checking whether fputs_unlocked is declared... (cached) no
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libcpp'
test -f config.h || (rm -f stamp-h1 && make stamp-h1)
echo "#define LOCALEDIR \"/opt/toolchains/dc/sh-elf/share/locale\"" > localedir.new
../../gcc-4.7.3/libcpp/../move-if-change localedir.new localedir.h
checking whether fread_unlocked is declared... (cached) no
echo timestamp > localedir.hs
checking whether fwrite_unlocked is declared... (cached) no
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libcpp'
checking whether getchar_unlocked is declared... (cached) yes
checking whether getc_unlocked is declared... (cached) yes
checking whether putchar_unlocked is declared... (cached) yes
checking whether putc_unlocked is declared... (cached) yes
checking whether getrlimit is declared... (cached) yes
checking whether setrlimit is declared... (cached) yes
checking whether getrusage is declared... (cached) yes
checking whether ldgetname is declared... (cached) no
checking whether times is declared... (cached) yes
checking whether sigaltstack is declared... (cached) no
checking whether madvise is declared... (cached) yes
checking for struct tms... (cached) yes
checking for clock_t... (cached) yes
checking for F_SETLKW... (cached) yes
checking if mkdir takes one argument... (cached) no
Using `../../gcc-4.7.3/gcc/config/sh/sh.c' for machine-specific logic.
Using `../../gcc-4.7.3/gcc/config/sh/sh.md' as machine description file.
Using the following target machine macro files:
../../gcc-4.7.3/gcc/config/sh/little.h
../../gcc-4.7.3/gcc/config/sh/sh.h
../../gcc-4.7.3/gcc/config/dbxelf.h
../../gcc-4.7.3/gcc/config/elfos.h
../../gcc-4.7.3/gcc/config/sh/elf.h
../../gcc-4.7.3/gcc/config/sh/embed-elf.h
../../gcc-4.7.3/gcc/config/newlib-stdint.h
../../gcc-4.7.3/gcc/config/./sysroot-suffix.h
../../gcc-4.7.3/gcc/config/initfini-array.h
Using host-default.o for host machine hooks.
checking whether NLS is requested... yes
checking for catalogs to be installed... be da de el es fi fr hr id ja nl ru sr sv tr vi zh_CN zh_TW be da de el es fi fr hr id ja nl ru sr sv tr vi zh_CN zh_TW
checking for library containing RegOpenKeyExA... (cached) none required
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for fgrep... (cached) /usr/bin/grep -F
checking for ld used by gcc... (cached) /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... (cached) nm
checking the name lister (nm) interface... (cached) BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... (cached) 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe option to reload object files... (cached) -r
checking for x86_64-unknown-cygwin-objdump... (cached) objdump
checking how to recognize dependent libraries... (cached) file_magic ^x86 archive import|^x86 DLL
checking for x86_64-unknown-cygwin-ar... (cached) ar
checking for x86_64-unknown-cygwin-strip... no
checking for strip... (cached) strip
checking for x86_64-unknown-cygwin-ranlib... (cached) ranlib
checking command to parse nm output from gcc object... (cached) ok
checking for dlfcn.h... (cached) yes
checking for objdir... (cached) .libs
checking if gcc supports -fno-rtti -fno-exceptions... (cached) no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... (cached) yes
checking if gcc static flag -static works... (cached) yes
checking if gcc supports -c -o file.o... (cached) yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking whether -lc should be explicitly linked in... (cached) yes
checking dynamic linker characteristics... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... (cached) /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... (cached) yes
checking whether the g++ linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking for g++ option to produce PIC... -DDLL_EXPORT -DPIC
checking if g++ PIC flag -DDLL_EXPORT -DPIC works... (cached) yes
checking if g++ static flag -static works... (cached) yes
checking if g++ supports -c -o file.o... (cached) yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking dynamic linker characteristics... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking what assembler to use... /opt/toolchains/dc/sh-elf/sh-elf/bin/as
checking whether we are using gold... no
checking what linker to use... /opt/toolchains/dc/sh-elf/sh-elf/bin/ld
checking what nm to use... /opt/toolchains/dc/sh-elf/sh-elf/bin/nm
checking what objdump to use... /opt/toolchains/dc/sh-elf/sh-elf/bin/objdump
checking what readelf to use... /usr/bin/readelf
checking assembler flags... (cached)
checking assembler for .balign and .p2align... (cached) yes
checking assembler for .p2align with maximum skip... (cached) yes
checking assembler for .literal16... (cached) no
checking assembler for working .subsection -1... (cached) yes
checking assembler for .weak... (cached) yes
checking assembler for .weakref... (cached) yes
checking assembler for .nsubspa comdat... (cached) no
checking assembler for .hidden... (cached) yes
checking linker for .hidden support... (cached) yes
checking linker read-only and read-write section mixing... read-write
checking for .preinit_array/.init_array/.fini_array support... (cached) no
checking assembler for .sleb128 and .uleb128... (cached) yes
checking assembler for cfi directives... (cached) yes
checking assembler for working cfi advance... (cached) yes
checking assembler for cfi personality directive... (cached) yes
checking assembler for cfi sections directive... (cached) yes
checking assembler for eh_frame optimization... (cached) yes
checking assembler for section merging support... (cached) yes
checking assembler for COMDAT group support (GNU as)... (cached) yes
checking assembler for line table discriminator support... (cached) yes
checking linker -Bstatic/-Bdynamic option... yes
checking linker --demangle support... no
checking linker plugin support... 2
checking assembler for .lcomm with alignment... (cached) no
checking assembler for gnu_unique_object... (cached) yes
checking assembler for tolerance to line number 0... (cached) yes
checking linker PT_GNU_EH_FRAME support... yes
checking linker position independent executable support... yes
checking linker EH-compatible garbage collection of sections... yes
checking linker EH garbage collection of sections bug... no
checking linker --as-needed support... (cached) yes
checking linker --build-id support... (cached) yes
checking linker *_sol2 emulation support... (cached) no
checking linker --sysroot support... (cached) yes
checking __stack_chk_fail in target C library... (cached) no
checking sys/sdt.h in the target C library... no
checking dl_iterate_phdr in target C library... unknown
Using ggc-page for garbage collection.
checking whether to enable maintainer-specific portions of Makefiles... no
Links are now set up to build a cross-compiler
from x86_64-unknown-cygwin to sh-unknown-elf.
checking for exported symbols... objdump: conftest: not a dynamic object
yes
checking for -rdynamic... objdump: conftest: not a dynamic object
no
checking for library containing dlopen... (cached) none required
checking for -fPIC -shared... no
configure: creating ./config.status
config.status: creating as
config.status: creating collect-ld
config.status: creating nm
config.status: creating Makefile
config.status: creating ada/gcc-interface/Makefile
config.status: creating ada/Makefile
config.status: creating auto-host.h
config.status: auto-host.h is unchanged
config.status: executing default commands
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/gcc'
Makefile:3811: warning: overriding recipe for target 'gt-sh.h'
../../gcc-4.7.3/gcc/config/sh/t-sh:86: warning: ignoring old recipe for target 'gt-sh.h'
TARGET_CPU_DEFAULT="" \
HEADERS="auto-host.h ansidecl.h" DEFINES="" \
/bin/sh ../../gcc-4.7.3/gcc/mkconfig.sh config.h
TARGET_CPU_DEFAULT="SELECT_SH4_SINGLE_ONLY" \
HEADERS="options.h insn-constants.h config/sh/little.h config/sh/sh.h config/dbxelf.h config/elfos.h config/sh/elf.h config/sh/embed-elf.h config/newlib-stdint.h sysroot-suffix.h config/initfini-array.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 SH_MULTILIB_CPU_DEFAULT=\"m4-single-only\" SUPPORT_SH4_SINGLE_ONLY=1 SUPPORT_SH4_SINGLE_ONLY=1 SUPPORT_SH4_NOFPU=1 SUPPORT_SH4=1" \
/bin/sh ../../gcc-4.7.3/gcc/mkconfig.sh tm.h
gawk -f ../../gcc-4.7.3/gcc/opt-gather.awk ../../gcc-4.7.3/gcc/ada/gcc-interface/lang.opt ../../gcc-4.7.3/gcc/fortran/lang.opt ../../gcc-4.7.3/gcc/go/lang.opt ../../gcc-4.7.3/gcc/java/lang.opt ../../gcc-4.7.3/gcc/lto/lang.opt ../../gcc-4.7.3/gcc/c-family/c.opt ../../gcc-4.7.3/gcc/common.opt ../../gcc-4.7.3/gcc/config/sh/sh.opt > tmp-optionlist
TARGET_CPU_DEFAULT="" \
HEADERS="auto-host.h ansidecl.h" DEFINES="" \
/bin/sh ../../gcc-4.7.3/gcc/mkconfig.sh bconfig.h
bconfig.h is unchanged
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-optionlist optionlist
config.h is unchanged
echo timestamp > s-options
tm.h is unchanged
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-gi.list gtyp-input.list
TARGET_CPU_DEFAULT="" \
HEADERS="config/sh/sh-protos.h tm-preds.h" DEFINES="" \
/bin/sh ../../gcc-4.7.3/gcc/mkconfig.sh tm_p.h
rm -f tmp-all-tree.def
tm_p.h is unchanged
echo timestamp > s-gtyp-input
echo '#include "tree.def"' > tmp-all-tree.def
if test yes = yes \
|| test -n "=! m1=!m1 /m1=!/m1 m2a=!m2a /m2a=!/m2a m2a-nofpu=!m2a-nofpu /m2a-nofpu=!/m2a-nofpu m2a-single-only=!m2a-single-only /m2a-single-only=!/m2a-single-only m2a-single=!m2a-single /m2a-single=!/m2a-single m2e=!m2e /m2e=!/m2e m2=!m2 /m2=!/m2 m3e=!m3e /m3e=!/m3e m3=!m3 /m3=!/m3 m4-nofpu=!m4-nofpu /m4-nofpu=!/m4-nofpu m4-single-only=!m4-single-only /m4-single-only=!/m4-single-only m4-single=!m4-single /m4-single=!/m4-single m4=!m4 /m4=!/m4 m4a-nofpu=!m4a-nofpu /m4a-nofpu=!/m4a-nofpu m4a-single-only=!m4a-single-only /m4a-single-only=!/m4a-single-only m4a-single=!m4a-single /m4a-single=!/m4a-single m4a=!m4a /m4a=!/m4a m4al=!m4al /m4al=!/m4al m5-32media=!m5-32media /m5-32media=!/m5-32media m5-32media-nofpu=!m5-32media-nofpu /m5-32media-nofpu=!/m5-32media-nofpu m5-compact=!m5-compact /m5-compact=!/m5-compact m5-compact-nofpu=!m5-compact-nofpu /m5-compact-nofpu=!/m5-compact-nofpu m5-64media=!m5-64media /m5-64media=!/m5-64media m5-64media-nofpu=!m5-64media-nofpu /m5-64media-nofpu=!/m5-64media-nofpu"; then \
/bin/sh ../../gcc-4.7.3/gcc/genmultilib \
" m4-single-only/m4-nofpu/m4" \
"" \
"" \
"ml/m1 ml/m2a* " \
"" \
"" \
"=! m1=!m1 /m1=!/m1 m2a=!m2a /m2a=!/m2a m2a-nofpu=!m2a-nofpu /m2a-nofpu=!/m2a-nofpu m2a-single-only=!m2a-single-only /m2a-single-only=!/m2a-single-only m2a-single=!m2a-single /m2a-single=!/m2a-single m2e=!m2e /m2e=!/m2e m2=!m2 /m2=!/m2 m3e=!m3e /m3e=!/m3e m3=!m3 /m3=!/m3 m4-nofpu=!m4-nofpu /m4-nofpu=!/m4-nofpu m4-single-only=!m4-single-only /m4-single-only=!/m4-single-only m4-single=!m4-single /m4-single=!/m4-single m4=!m4 /m4=!/m4 m4a-nofpu=!m4a-nofpu /m4a-nofpu=!/m4a-nofpu m4a-single-only=!m4a-single-only /m4a-single-only=!/m4a-single-only m4a-single=!m4a-single /m4a-single=!/m4a-single m4a=!m4a /m4a=!/m4a m4al=!m4al /m4al=!/m4al m5-32media=!m5-32media /m5-32media=!/m5-32media m5-32media-nofpu=!m5-32media-nofpu /m5-32media-nofpu=!/m5-32media-nofpu m5-compact=!m5-compact /m5-compact=!/m5-compact m5-compact-nofpu=!m5-compact-nofpu /m5-compact-nofpu=!/m5-compact-nofpu m5-64media=!m5-64media /m5-64media=!/m5-64media m5-64media-nofpu=!m5-64media-nofpu /m5-64media-nofpu=!/m5-64media-nofpu" \
"" \
"yes" \
> tmp-mlib.h; \
else \
/bin/sh ../../gcc-4.7.3/gcc/genmultilib '' '' '' '' '' '' '' "" no \
> tmp-mlib.h; \
fi
lsf="../../gcc-4.7.3/gcc/cp/lang-specs.h ../../gcc-4.7.3/gcc/lto/lang-specs.h ../../gcc-4.7.3/gcc/objc/lang-specs.h ../../gcc-4.7.3/gcc/objcp/lang-specs.h"; for f in $lsf; do \
echo "#include \"$f\""; \
done | sed 's|../../gcc-4.7.3/gcc/||' > tmp-specs.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-specs.h specs.h
echo 'END_OF_BASE_TREE_CODES' >> tmp-all-tree.def
TARGET_CPU_DEFAULT="" \
HEADERS="auto-host.h ansidecl.h" DEFINES="USED_FOR_TARGET " \
/bin/sh ../../gcc-4.7.3/gcc/mkconfig.sh tconfig.h
echo '#include "c-family/c-common.def"' >> tmp-all-tree.def
ltf="../../gcc-4.7.3/gcc/ada/gcc-interface/ada-tree.def ../../gcc-4.7.3/gcc/cp/cp-tree.def ../../gcc-4.7.3/gcc/java/java-tree.def ../../gcc-4.7.3/gcc/objc/objc-tree.def"; for f in $ltf; do \
echo "#include \"$f\""; \
done | sed 's|../../gcc-4.7.3/gcc/||' >> tmp-all-tree.def
echo timestamp > s-specs
cp doc/gcc.1 doc/g++.1
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-all-tree.def all-tree.def
tconfig.h is unchanged
echo timestamp > s-alltree
(SHLIB=''; \
gcc -c -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber -DSTANDARD_STARTFILE_PREFIX=\"../../../\" -DSTANDARD_EXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/lib/gcc/\" -DSTANDARD_LIBEXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/libexec/gcc/\" -DDEFAULT_TARGET_VERSION=\"4.7.3\" -DDEFAULT_TARGET_MACHINE=\"sh-elf\" -DSTANDARD_BINDIR_PREFIX=\"/opt/toolchains/dc/sh-elf/bin/\" -DTOOLDIR_BASE_PREFIX=\"../../../../\" `test "X${SHLIB}" = "X" || test "yes" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` -DCONFIGURE_SPECS="\"\"" \
-I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/g++spec.c)
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-mlib.h multilib.h
echo timestamp > s-mlib
gcc -c -DGCC_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/include\" -DFIXED_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/include-fixed\" -DGPLUSPLUS_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/include/c++/4.7.3\" -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT=0 -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/include/c++/4.7.3/sh-elf\" -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/include/c++/4.7.3/backward\" -DLOCAL_INCLUDE_DIR=\"/usr/local/include\" -DCROSS_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/sys-include\" -DTOOL_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/include\" -DNATIVE_SYSTEM_HEADER_DIR=\"/usr/include\" -DPREFIX=\"/opt/toolchains/dc/sh-elf/\" -DSTANDARD_EXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/lib/gcc/\" -DBASEVER="\"4.7.3\"" -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cppbuiltin.c -o cppbuiltin.o
gcc -c -DGCC_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/include\" -DFIXED_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/include-fixed\" -DGPLUSPLUS_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/include/c++/4.7.3\" -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT=0 -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/include/c++/4.7.3/sh-elf\" -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/include/c++/4.7.3/backward\" -DLOCAL_INCLUDE_DIR=\"/usr/local/include\" -DCROSS_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/sys-include\" -DTOOL_INCLUDE_DIR=\"/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/include\" -DNATIVE_SYSTEM_HEADER_DIR=\"/usr/include\" -DPREFIX=\"/opt/toolchains/dc/sh-elf/\" -DSTANDARD_EXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/lib/gcc/\" -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cppdefault.c -o cppdefault.o
gcc -c -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/plugin.c -o plugin.o
gcc -c -DTARGET_NAME=\"sh-elf\" -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/toplev.c -o toplev.o
gcc -c -DPREFIX=\"/opt/toolchains/dc/sh-elf\" -DBASEVER="\"4.7.3\"" -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/prefix.c -o prefix.o
In file included from ../../gcc-4.7.3/gcc/plugin.c:27:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/cppbuiltin.c:25:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/toplev.c:33:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DLOCALEDIR=\"/opt/toolchains/dc/sh-elf/share/locale\" -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/intl.c -o intl.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/cp-lang.c -o cp/cp-lang.o
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/call.c -o cp/call.o
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/decl.c -o cp/decl.o
In file included from ../../gcc-4.7.3/gcc/cp/cp-lang.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/expr.c -o cp/expr.o
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/pt.c -o cp/pt.o
In file included from ../../gcc-4.7.3/gcc/cp/call.c:32:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/cp/decl.c:35:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/cp/pt.c:33:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/cp/expr.c:27:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/typeck2.c -o cp/typeck2.o
In file included from ../../gcc-4.7.3/gcc/cp/typeck2.c:34:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/class.c -o cp/class.o
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/decl2.c -o cp/decl2.o
In file included from ../../gcc-4.7.3/gcc/cp/class.c:30:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/cp/decl2.c:35:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/error.c -o cp/error.o
In file included from ../../gcc-4.7.3/gcc/cp/error.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/lex.c -o cp/lex.o
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/parser.c -o cp/parser.o
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/ptree.c -o cp/ptree.o
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/rtti.c -o cp/rtti.o
In file included from ../../gcc-4.7.3/gcc/cp/lex.c:31:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/cp/parser.c:28:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/typeck.c -o cp/typeck.o
In file included from ../../gcc-4.7.3/gcc/cp/rtti.c:28:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
../../gcc-4.7.3/gcc/cp/parser.c: In function ‘cp_parser_late_return_type_opt’:
../../gcc-4.7.3/gcc/cp/parser.c:16705:3: warning: ISO C90 forbids mixed declarations and code [-Wpedantic]
tree save_ccp = current_class_ptr;
^
In file included from ../../gcc-4.7.3/gcc/cp/ptree.c:28:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/cvt.c -o cp/cvt.o
In file included from ../../gcc-4.7.3/gcc/cp/typeck.c:34:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/except.c -o cp/except.o
In file included from ../../gcc-4.7.3/gcc/cp/cvt.c:33:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/friend.c -o cp/friend.o
In file included from ../../gcc-4.7.3/gcc/cp/except.c:30:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/cp/friend.c:25:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/init.c -o cp/init.o
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/method.c -o cp/method.o
In file included from ../../gcc-4.7.3/gcc/cp/init.c:29:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/search.c -o cp/search.o
In file included from ../../gcc-4.7.3/gcc/cp/method.c:30:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/cp/search.c:30:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/semantics.c -o cp/semantics.o
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/tree.c -o cp/tree.o
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/repo.c -o cp/repo.o
In file included from ../../gcc-4.7.3/gcc/cp/tree.c:27:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/cp/semantics.c:31:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/dump.c -o cp/dump.o
In file included from ../../gcc-4.7.3/gcc/cp/repo.c:32:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/cp/dump.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/optimize.c -o cp/optimize.o
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/mangle.c -o cp/mangle.o
In file included from ../../gcc-4.7.3/gcc/cp/optimize.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/cp-objcp-common.c -o cp/cp-objcp-common.o
In file included from ../../gcc-4.7.3/gcc/cp/mangle.c:52:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/name-lookup.c -o cp/name-lookup.o
In file included from ../../gcc-4.7.3/gcc/cp/cp-objcp-common.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/cxx-pretty-print.c -o cp/cxx-pretty-print.o
gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/cp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/cp/cp-gimplify.c -o cp/cp-gimplify.o
In file included from ../../gcc-4.7.3/gcc/cp/name-lookup.c:27:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/cp/cp-gimplify.c:27:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-lang.c -o objc/objc-lang.o
In file included from ../../gcc-4.7.3/gcc/function.h:25:0,
from ../../gcc-4.7.3/gcc/cp/cp-tree.h:27,
from ../../gcc-4.7.3/gcc/cp/cxx-pretty-print.c:27:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-act.c -o objc/objc-act.o
In file included from ../../gcc-4.7.3/gcc/objc/objc-lang.c:27:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-runtime-shared-support.c -o objc/objc-runtime-shared-support.o
In file included from ../../gcc-4.7.3/gcc/objc/objc-act.c:27:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-gnu-runtime-abi-01.c -o objc/objc-gnu-runtime-abi-01.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-next-runtime-abi-01.c -o objc/objc-next-runtime-abi-01.o
In file included from ../../gcc-4.7.3/gcc/objc/objc-gnu-runtime-abi-01.c:24:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/objc/objc-runtime-shared-support.c:25:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/objc/objc-next-runtime-abi-01.c:30:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-next-runtime-abi-02.c -o objc/objc-next-runtime-abi-02.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-encoding.c -o objc/objc-encoding.o
In file included from ../../gcc-4.7.3/gcc/objc/objc-next-runtime-abi-02.c:32:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
In file included from ../../gcc-4.7.3/gcc/objc/objc-encoding.c:25:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-map.c -o objc/objc-map.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -DOBJCPLUS -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/cp -DHAVE_CONFIG_H -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-act.c \
-o objcp/objcp-act.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -DOBJCPLUS -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/cp -DHAVE_CONFIG_H -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objcp/objcp-lang.c -o objcp/objcp-lang.o
In file included from ../../gcc-4.7.3/gcc/objc/objc-map.c:23:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
unsigned thread_local : 1;
^
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -DOBJCPLUS -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/cp -DHAVE_CONFIG_H -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objcp/objcp-decl.c -o objcp/objcp-decl.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -DOBJCPLUS -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/cp -DHAVE_CONFIG_H -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-runtime-shared-support.c \
-o objcp/objc-runtime-shared-support.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -DOBJCPLUS -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/cp -DHAVE_CONFIG_H -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-gnu-runtime-abi-01.c \
-o objcp/objc-gnu-runtime-abi-01.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -DOBJCPLUS -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/cp -DHAVE_CONFIG_H -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-next-runtime-abi-01.c \
-o objcp/objc-next-runtime-abi-01.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -DOBJCPLUS -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/cp -DHAVE_CONFIG_H -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-next-runtime-abi-02.c \
-o objcp/objc-next-runtime-abi-02.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -DOBJCPLUS -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/cp -DHAVE_CONFIG_H -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-encoding.c \
-o objcp/objc-encoding.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -DOBJCPLUS -I../../gcc-4.7.3/gcc/objc -I../../gcc-4.7.3/gcc/cp -DHAVE_CONFIG_H -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber -I. -Iobjcp -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/objcp -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber ../../gcc-4.7.3/gcc/objc/objc-map.c \
-o objcp/objc-map.o
(SHLIB=''; \
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber \
-DSTANDARD_STARTFILE_PREFIX=\"../../../\" -DSTANDARD_EXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/lib/gcc/\" -DSTANDARD_LIBEXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/libexec/gcc/\" -DDEFAULT_TARGET_VERSION=\"4.7.3\" -DDEFAULT_TARGET_MACHINE=\"sh-elf\" -DSTANDARD_BINDIR_PREFIX=\"/opt/toolchains/dc/sh-elf/bin/\" -DTOOLDIR_BASE_PREFIX=\"../../../../\" `test "X${SHLIB}" = "X" || test "yes" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` -DCONFIGURE_SPECS="\"\"" \
-c ../../gcc-4.7.3/gcc/gcc.c -o gcc.o)
rm -rf libbackend.a
ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o cgraph.o cgraphbuild.o cgraphunit.o combine.o combine-stack-adj.o compare-elim.o convert.o coverage.o cppbuiltin.o cppdefault.o cprop.o cse.o cselib.o data-streamer.o data-streamer-in.o data-streamer-out.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2cfi.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimple-streamer-in.o gimple-streamer-out.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hw-doloop.o hwint.o ifcvt.o ree.o incpath.o init-regs.o integrate.o internal-fn.o ipa-cp.o ipa-split.o ipa-inline.o ipa-inline-analysis.o ipa-inline-transform.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-utils.o ipa.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-compress.o matrix-reorg.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options-save.o opts-global.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o streamer-hooks.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o trans-mem.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-inline.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-nested.o tree-nomudflap.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-strlen.o tree-ssa-structalias.o tree-ssa-tail-merge.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-streamer.o tree-streamer-in.o tree-streamer-out.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o varpool.o vmsdbgout.o web.o xcoffout.o sh.o host-default.o
rm -rf libcommon-target.a
ar rc libcommon-target.a sh-common.o prefix.o params.o opts.o opts-common.o options.o vec.o hooks.o common/common-targhooks.o
ranlib libcommon-target.a
rm -rf libcommon.a
ar rc libcommon.a diagnostic.o pretty-print.o intl.o input.o version.o
ranlib libcommon.a
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 gcov.o libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a -o gcov
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 gcov-dump.o \
libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a -o gcov-dump
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 -o Tcollect2 \
collect2.o collect2-aix.o tlink.o vec.o ggc-none.o libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 -o Tlto-wrapper \
lto-wrapper.o ggc-none.o libcommon-target.a libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 gcc-ar.o -o gcc-ar \
libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 gcc-nm.o -o gcc-nm \
libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 gcc-ranlib.o -o gcc-ranlib \
libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
mv -f Tlto-wrapper lto-wrapper
mv -f Tcollect2 collect2
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 -o xgcc gcc.o ggc-none.o \
gccspec.o libcommon-target.a \
libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 -o cpp gcc.o ggc-none.o \
cppspec.o libcommon-target.a \
libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 -o g++ \
gcc.o ggc-none.o g++spec.o libcommon-target.a \
libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
cp xgcc gcc-cross
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -dumpspecs > tmp-specs
rm -f g++-cross
cp g++ g++-cross
mv tmp-specs specs
: > tmp-libgcc.mvars
echo GCC_CFLAGS = '-g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include ' >> tmp-libgcc.mvars
echo INHIBIT_LIBC_CFLAGS = '-Dinhibit_libc' >> tmp-libgcc.mvars
echo TARGET_SYSTEM_ROOT = '' >> tmp-libgcc.mvars
mv tmp-libgcc.mvars libgcc.mvars
ranlib libbackend.a
build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o default-c.o sh-c.o main.o libbackend.a libcommon-target.a libcommon.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a libcommon.a ../libcpp/libcpp.a ../libiberty/libiberty.a ./../intl/libintl.a ../libdecnumber/libdecnumber.a \
checksum-options > cc1-checksum.c.tmp && \
../../gcc-4.7.3/gcc/../move-if-change cc1-checksum.c.tmp cc1-checksum.c
build/genchecksum cp/cp-lang.o c-family/stub-objc.o cp/call.o cp/decl.o cp/expr.o cp/pt.o cp/typeck2.o cp/class.o cp/decl2.o cp/error.o cp/lex.o cp/parser.o cp/ptree.o cp/rtti.o cp/typeck.o cp/cvt.o cp/except.o cp/friend.o cp/init.o cp/method.o cp/search.o cp/semantics.o cp/tree.o cp/repo.o cp/dump.o cp/optimize.o cp/mangle.o cp/cp-objcp-common.o cp/name-lookup.o cp/cxx-pretty-print.o cp/cp-gimplify.o tree-mudflap.o attribs.o incpath.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o default-c.o sh-c.o main.o libbackend.a libcommon-target.a libcommon.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a libcommon.a ../libcpp/libcpp.a ../libiberty/libiberty.a ./../intl/libintl.a ../libdecnumber/libdecnumber.a \
checksum-options > cc1plus-checksum.c.tmp && \
../../gcc-4.7.3/gcc/../move-if-change cc1plus-checksum.c.tmp cc1plus-checksum.c
build/genchecksum objc/objc-lang.o objc/objc-act.o objc/objc-runtime-shared-support.o objc/objc-gnu-runtime-abi-01.o objc/objc-next-runtime-abi-01.o objc/objc-next-runtime-abi-02.o objc/objc-encoding.o objc/objc-map.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o default-c.o sh-c.o \
main.o libbackend.a libcommon-target.a libcommon.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a libcommon.a ../libcpp/libcpp.a ../libiberty/libiberty.a ./../intl/libintl.a ../libdecnumber/libdecnumber.a checksum-options > cc1obj-checksum.c.tmp && \
../../gcc-4.7.3/gcc/../move-if-change cc1obj-checksum.c.tmp cc1obj-checksum.c
build/genchecksum objcp/objcp-act.o objcp/objcp-lang.o objcp/objcp-decl.o objcp/objc-runtime-shared-support.o objcp/objc-gnu-runtime-abi-01.o objcp/objc-next-runtime-abi-01.o objcp/objc-next-runtime-abi-02.o objcp/objc-encoding.o objcp/objc-map.o cp/call.o cp/decl.o cp/expr.o cp/pt.o cp/typeck2.o cp/class.o cp/decl2.o cp/error.o cp/lex.o cp/parser.o cp/ptree.o cp/rtti.o cp/typeck.o cp/cvt.o cp/except.o cp/friend.o cp/init.o cp/method.o cp/search.o cp/semantics.o cp/tree.o cp/repo.o cp/dump.o cp/optimize.o cp/mangle.o cp/cp-objcp-common.o cp/name-lookup.o cp/cxx-pretty-print.o cp/cp-gimplify.o tree-mudflap.o attribs.o incpath.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o default-c.o sh-c.o main.o libbackend.a libcommon-target.a libcommon.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a \
libcommon.a ../libcpp/libcpp.a ../libiberty/libiberty.a ./../intl/libintl.a ../libdecnumber/libdecnumber.a checksum-options > cc1objplus-checksum.c.tmp && \
../../gcc-4.7.3/gcc/../move-if-change cc1objplus-checksum.c.tmp \
cc1objplus-checksum.c
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 -o lto1 \
lto/lto-lang.o lto/lto.o lto/lto-object.o attribs.o main.o libbackend.a libcommon-target.a libcommon.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a -lmpc -lmpfr -lgmp -L../zlib -lz libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber cc1plus-checksum.c -o cc1plus-checksum.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber cc1obj-checksum.c -o cc1obj-checksum.o
gcc -c -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber cc1-checksum.c -o cc1-checksum.o
gcc -c -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber cc1objplus-checksum.c -o cc1objplus-checksum.o
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 -o cc1 c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o default-c.o sh-c.o \
cc1-checksum.o main.o libbackend.a libcommon-target.a libcommon.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a -lmpc -lmpfr -lgmp -L../zlib -lz
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 -o cc1plus \
cp/cp-lang.o c-family/stub-objc.o cp/call.o cp/decl.o cp/expr.o cp/pt.o cp/typeck2.o cp/class.o cp/decl2.o cp/error.o cp/lex.o cp/parser.o cp/ptree.o cp/rtti.o cp/typeck.o cp/cvt.o cp/except.o cp/friend.o cp/init.o cp/method.o cp/search.o cp/semantics.o cp/tree.o cp/repo.o cp/dump.o cp/optimize.o cp/mangle.o cp/cp-objcp-common.o cp/name-lookup.o cp/cxx-pretty-print.o cp/cp-gimplify.o tree-mudflap.o attribs.o incpath.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o default-c.o sh-c.o cc1plus-checksum.o main.o libbackend.a libcommon-target.a libcommon.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a -lmpc -lmpfr -lgmp -L../zlib -lz
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 -o cc1obj \
objc/objc-lang.o objc/objc-act.o objc/objc-runtime-shared-support.o objc/objc-gnu-runtime-abi-01.o objc/objc-next-runtime-abi-01.o objc/objc-next-runtime-abi-02.o objc/objc-encoding.o objc/objc-map.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o default-c.o sh-c.o cc1obj-checksum.o \
main.o libbackend.a libcommon-target.a libcommon.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a -lmpc -lmpfr -lgmp -L../zlib -lz
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -Wl,--stack,12582912 -o cc1objplus \
objcp/objcp-act.o objcp/objcp-lang.o objcp/objcp-decl.o objcp/objc-runtime-shared-support.o objcp/objc-gnu-runtime-abi-01.o objcp/objc-next-runtime-abi-01.o objcp/objc-next-runtime-abi-02.o objcp/objc-encoding.o objcp/objc-map.o cp/call.o cp/decl.o cp/expr.o cp/pt.o cp/typeck2.o cp/class.o cp/decl2.o cp/error.o cp/lex.o cp/parser.o cp/ptree.o cp/rtti.o cp/typeck.o cp/cvt.o cp/except.o cp/friend.o cp/init.o cp/method.o cp/search.o cp/semantics.o cp/tree.o cp/repo.o cp/dump.o cp/optimize.o cp/mangle.o cp/cp-objcp-common.o cp/name-lookup.o cp/cxx-pretty-print.o cp/cp-gimplify.o tree-mudflap.o attribs.o incpath.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o default-c.o sh-c.o cc1objplus-checksum.o main.o libbackend.a libcommon-target.a libcommon.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a libcommon.a ../libcpp/libcpp.a ./../intl/libintl.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a -lmpc -lmpfr -lgmp -L../zlib -lz
echo | /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -E -dM - | \
sed -n -e 's/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p' \
-e 's/^#define \(_[^_A-Z][a-zA-Z0-9_]*\).*/\1/p' | \
sort -u > tmp-macro_list
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-macro_list macro_list
echo timestamp > s-macro_list
if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -print-sysroot-headers-suffix > /dev/null 2>&1; then \
set -e; for ml in `/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -print-multi-lib`; do \
multi_dir=`echo ${ml} | sed -e 's/;.*$//'`; \
flags=`echo ${ml} | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
sfx=`/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ ${flags} -print-sysroot-headers-suffix`; \
if [ "${multi_dir}" = "." ]; \
then multi_dir=""; \
else \
multi_dir=/${multi_dir}; \
fi; \
echo "${sfx};${multi_dir}"; \
done; \
else \
echo ";"; \
fi > tmp-fixinc_list
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-fixinc_list fixinc_list
echo timestamp > s-fixinc_list
rm -rf include-fixed; mkdir include-fixed
chmod a+rx include-fixed
if [ -d ../prev-gcc ]; then \
cd ../prev-gcc && \
make real-install-headers-tar DESTDIR=`pwd`/../gcc/ \
libsubdir=. ; \
else \
set -e; for ml in `cat fixinc_list`; do \
sysroot_headers_suffix=`echo ${ml} | sed -e 's/;.*$//'`; \
multi_dir=`echo ${ml} | sed -e 's/^[^;]*;//'`; \
fix_dir=include-fixed${multi_dir}; \
if ! true && test ! -d `echo /opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/sys-include | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta`; then \
echo The directory that should contain system headers does not exist: >&2 ; \
echo " `echo /opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/sys-include | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta`" >&2 ; \
tooldir_sysinc=`echo "/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/sys-include" | sed -e :a -e "s,[^/]*/\.\.\/,," -e ta`; \
if test "x`echo /opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/sys-include | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta`" = "x${tooldir_sysinc}"; \
then sleep 1; else exit 1; fi; \
fi; \
/bin/sh ../../gcc-4.7.3/gcc/../mkinstalldirs ${fix_dir}; \
chmod a+rx ${fix_dir} || true; \
(TARGET_MACHINE='sh-unknown-elf'; srcdir=`cd ../../gcc-4.7.3/gcc; ${PWDCMD-pwd}`; \
SHELL='/bin/sh'; MACRO_LIST=`${PWDCMD-pwd}`/macro_list ; \
gcc_dir=`${PWDCMD-pwd}` ; \
export TARGET_MACHINE srcdir SHELL MACRO_LIST && \
cd ../build-x86_64-unknown-cygwin/fixincludes && \
/bin/sh ./fixinc.sh "${gcc_dir}/${fix_dir}" \
`echo /opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/sys-include | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta` ); \
rm -f ${fix_dir}/syslimits.h; \
if [ -f ${fix_dir}/limits.h ]; then \
mv ${fix_dir}/limits.h ${fix_dir}/syslimits.h; \
else \
cp ../../gcc-4.7.3/gcc/gsyslimits.h ${fix_dir}/syslimits.h; \
fi; \
chmod a+r ${fix_dir}/syslimits.h; \
done; \
fi
Fixing headers into /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/gcc/include-fixed for sh-unknown-elf target
No forbidden identifiers defined by this target
echo timestamp > stmp-fixinc
if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
for file in .. ../../gcc-4.7.3/gcc/ginclude/float.h ../../gcc-4.7.3/gcc/ginclude/iso646.h ../../gcc-4.7.3/gcc/ginclude/stdarg.h ../../gcc-4.7.3/gcc/ginclude/stdbool.h ../../gcc-4.7.3/gcc/ginclude/stddef.h ../../gcc-4.7.3/gcc/ginclude/varargs.h ../../gcc-4.7.3/gcc/ginclude/stdfix.h ../../gcc-4.7.3/gcc/ginclude/stdnoreturn.h ../../gcc-4.7.3/gcc/ginclude/stdalign.h ../../gcc-4.7.3/gcc/ginclude/tgmath.h; do \
if [ X$file != X.. ]; then \
realfile=`echo $file | sed -e 's|.*/\([^/]*\)$|\1|'`; \
echo timestamp > include/$realfile; \
rm -f include/$realfile; \
cp $file include; \
chmod a+r include/$realfile; \
fi; \
done
for file in .. ; do \
if [ X$file != X.. ]; then \
mv include/$file include/x_$file; \
echo "#include_next <$file>" >include/$file; \
cat include/x_$file >>include/$file; \
rm -f include/x_$file; \
chmod a+r include/$file; \
fi; \
done
for file in .. ; do \
if [ X$file != X.. ]; then \
echo "#include_next <$file>" >>include/$file; \
chmod a+r include/$file; \
fi; \
done
rm -f include/stdint.h
if [ wrap = wrap ]; then \
rm -f include/stdint-gcc.h; \
cp ../../gcc-4.7.3/gcc/ginclude/stdint-gcc.h include/stdint-gcc.h; \
chmod a+r include/stdint-gcc.h; \
cp ../../gcc-4.7.3/gcc/ginclude/stdint-wrap.h include/stdint.h; \
chmod a+r include/stdint.h; \
elif [ wrap = provide ]; then \
cp ../../gcc-4.7.3/gcc/ginclude/stdint-gcc.h include/stdint.h; \
chmod a+r include/stdint.h; \
fi
set -e; for ml in `cat fixinc_list`; do \
sysroot_headers_suffix=`echo ${ml} | sed -e 's/;.*$//'`; \
multi_dir=`echo ${ml} | sed -e 's/^[^;]*;//'`; \
fix_dir=include-fixed${multi_dir}; \
if [ -f `echo /opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3/../../../../sh-elf/sys-include | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta`/limits.h ] ; then \
cat ../../gcc-4.7.3/gcc/limitx.h ../../gcc-4.7.3/gcc/glimits.h ../../gcc-4.7.3/gcc/limity.h > tmp-xlimits.h; \
else \
cat ../../gcc-4.7.3/gcc/glimits.h > tmp-xlimits.h; \
fi; \
/bin/sh ../../gcc-4.7.3/gcc/../mkinstalldirs ${fix_dir}; \
chmod a+rx ${fix_dir} || true; \
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change \
tmp-xlimits.h tmp-limits.h; \
rm -f ${fix_dir}/limits.h; \
cp -p tmp-limits.h ${fix_dir}/limits.h; \
chmod a+r ${fix_dir}/limits.h; \
done
rm -f include-fixed/README
cp ../../gcc-4.7.3/gcc/../fixincludes/README-fixinc include-fixed/README
chmod a+r include-fixed/README
echo timestamp > stmp-int-hdrs
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/gcc'
Checking multilib configuration for libgcc...
Configuring in sh-elf/libgcc
configure: loading cache ./config.cache
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) sh-unknown-elf
checking for --enable-version-specific-runtime-libs... no
checking for a BSD-compatible install... /usr/bin/install -c
checking for gawk... (cached) gawk
checking for sh-elf-ar... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-lipo... (cached) sh-elf-lipo
checking for sh-elf-nm... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm
checking for sh-elf-ranlib... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking for sh-elf-strip... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking whether ln -s works... yes
checking for sh-elf-gcc... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include
checking for suffix of object files... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include accepts -g... (cached) yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include option to accept ISO C89... (cached) unsupported
checking how to run the C preprocessor... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -E
checking size of double... (cached) 4
checking size of long double... (cached) 8
checking whether decimal floating point is supported... (cached) no
configure: WARNING: decimal float is not supported for this target, ignored
checking whether fixed-point is supported... (cached) no
checking whether to use setjmp/longjmp exceptions... (cached) no
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... (cached) yes
checking for thread model used by GCC... kos
checking whether assembler supports CFI directives... (cached) yes
checking for __attribute__((visibility("hidden")))... (cached) yes
checking whether the target assembler supports thread-local storage... (cached) yes
checking whether the thread-local storage support is from emutls... (cached) yes
configure: creating ./config.status
config.status: creating Makefile
config.status: linking ../../../gcc-4.7.3/libgcc/enable-execute-stack-empty.c to enable-execute-stack.c
config.status: linking ../../../gcc-4.7.3/libgcc/unwind-generic.h to unwind.h
config.status: linking ../../../gcc-4.7.3/libgcc/config/no-unwind.h to md-unwind-support.h
config.status: linking ../../../gcc-4.7.3/libgcc/config/no-sfp-machine.h to sfp-machine.h
config.status: linking ../../../gcc-4.7.3/libgcc/config/sh/gthr-kos.h to gthr-default.h
config.status: executing default commands
Adding multilib support to Makefile in ../../../gcc-4.7.3/libgcc
multidirs=m4-nofpu m4
with_multisubdir=
Running configure in multilib subdirs m4-nofpu m4
pwd: /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libgcc
Running configure in multilib subdir m4-nofpu
pwd: /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf
configure: loading cache ./config.cache
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) sh-unknown-elf
checking for --enable-version-specific-runtime-libs... no
checking for a BSD-compatible install... /usr/bin/install -c
checking for gawk... (cached) gawk
checking for sh-elf-ar... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-lipo... (cached) sh-elf-lipo
checking for sh-elf-nm... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm
checking for sh-elf-ranlib... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking for sh-elf-strip... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking whether ln -s works... yes
checking for sh-elf-gcc... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu
checking for suffix of object files... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu accepts -g... (cached) yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu option to accept ISO C89... (cached) unsupported
checking how to run the C preprocessor... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu -E
checking size of double... (cached) 8
checking size of long double... (cached) 8
checking whether decimal floating point is supported... (cached) no
configure: WARNING: decimal float is not supported for this target, ignored
checking whether fixed-point is supported... (cached) no
checking whether to use setjmp/longjmp exceptions... (cached) no
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... (cached) yes
checking for thread model used by GCC... kos
checking whether assembler supports CFI directives... (cached) yes
checking for __attribute__((visibility("hidden")))... (cached) yes
checking whether the target assembler supports thread-local storage... (cached) yes
checking whether the thread-local storage support is from emutls... (cached) yes
configure: creating ./config.status
config.status: creating Makefile
config.status: linking ../../../../gcc-4.7.3/libgcc/enable-execute-stack-empty.c to enable-execute-stack.c
config.status: linking ../../../../gcc-4.7.3/libgcc/unwind-generic.h to unwind.h
config.status: linking ../../../../gcc-4.7.3/libgcc/config/no-unwind.h to md-unwind-support.h
config.status: linking ../../../../gcc-4.7.3/libgcc/config/no-sfp-machine.h to sfp-machine.h
config.status: linking ../../../../gcc-4.7.3/libgcc/config/sh/gthr-kos.h to gthr-default.h
config.status: executing default commands
Adding multilib support to Makefile in ../../../../gcc-4.7.3/libgcc
with_multisubdir=m4-nofpu
Running configure in multilib subdir m4
pwd: /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf
configure: loading cache ./config.cache
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) sh-unknown-elf
checking for --enable-version-specific-runtime-libs... no
checking for a BSD-compatible install... /usr/bin/install -c
checking for gawk... (cached) gawk
checking for sh-elf-ar... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-lipo... (cached) sh-elf-lipo
checking for sh-elf-nm... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm
checking for sh-elf-ranlib... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking for sh-elf-strip... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking whether ln -s works... yes
checking for sh-elf-gcc... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4
checking for suffix of object files... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 accepts -g... (cached) yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 option to accept ISO C89... (cached) unsupported
checking how to run the C preprocessor... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 -E
checking size of double... (cached) 8
checking size of long double... (cached) 8
checking whether decimal floating point is supported... (cached) no
configure: WARNING: decimal float is not supported for this target, ignored
checking whether fixed-point is supported... (cached) no
checking whether to use setjmp/longjmp exceptions... (cached) no
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... (cached) yes
checking for thread model used by GCC... kos
checking whether assembler supports CFI directives... (cached) yes
checking for __attribute__((visibility("hidden")))... (cached) yes
checking whether the target assembler supports thread-local storage... (cached) yes
checking whether the thread-local storage support is from emutls... (cached) yes
configure: creating ./config.status
config.status: creating Makefile
config.status: linking ../../../../gcc-4.7.3/libgcc/enable-execute-stack-empty.c to enable-execute-stack.c
config.status: linking ../../../../gcc-4.7.3/libgcc/unwind-generic.h to unwind.h
config.status: linking ../../../../gcc-4.7.3/libgcc/config/no-unwind.h to md-unwind-support.h
config.status: linking ../../../../gcc-4.7.3/libgcc/config/no-sfp-machine.h to sfp-machine.h
config.status: linking ../../../../gcc-4.7.3/libgcc/config/sh/gthr-kos.h to gthr-default.h
config.status: executing default commands
Adding multilib support to Makefile in ../../../../gcc-4.7.3/libgcc
with_multisubdir=m4
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libgcc'
# If this is the top-level multilib, build all the other
# multilibs.
dest=../.././gcc/include/tmp$$-unwind.h; \
cp unwind.h $dest; \
chmod a+r $dest; \
sh ../../../gcc-4.7.3/libgcc/../move-if-change $dest ../.././gcc/include/unwind.h
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libgcc'
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _muldi3.o -MT _muldi3.o -MD -MP -MF _muldi3.dep -DL_muldi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _negdi2.o -MT _negdi2.o -MD -MP -MF _negdi2.dep -DL_negdi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _lshrdi3.o -MT _lshrdi3.o -MD -MP -MF _lshrdi3.dep -DL_lshrdi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
if [ -z "m4-nofpu m4" ]; then \
true; \
else \
rootpre=`${PWDCMD-pwd}`/; export rootpre; \
srcrootpre=`cd ../../../gcc-4.7.3/libgcc; ${PWDCMD-pwd}`/; export srcrootpre; \
lib=`echo "${rootpre}" | sed -e 's,^.*/\([^/][^/]*\)/$,\1,'`; \
compiler="/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include "; \
for i in `${compiler} --print-multi-lib 2>/dev/null`; do \
dir=`echo $i | sed -e 's/;.*$//'`; \
if [ "${dir}" = "." ]; then \
true; \
else \
if [ -d ../${dir}/${lib} ]; then \
flags=`echo $i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
if (cd ../${dir}/${lib}; make "AR=/opt/toolchains/dc/sh-elf/sh-elf/bin/ar" "AR_FLAGS=rc" "CC=/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include " "CFLAGS=-g -O2" "DESTDIR=" "EXTRA_OFILES=" "HDEFINES=" "INSTALL=/usr/bin/install -c" "INSTALL_DATA=/usr/bin/install -c -m 644" "INSTALL_PROGRAM=/usr/bin/install -c" "LDFLAGS=" "LOADLIBES=" "RANLIB=/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib" "SHELL=/bin/sh" "prefix=/opt/toolchains/dc/sh-elf" "exec_prefix=/opt/toolchains/dc/sh-elf" "libdir=/opt/toolchains/dc/sh-elf/lib" "libsubdir=/opt/toolchains/dc/sh-elf/lib/gcc/sh-elf/4.7.3" "tooldir=/opt/toolchains/dc/sh-elf/sh-elf" \
CFLAGS="-g -O2 ${flags}" \
CCASFLAGS=" ${flags}" \
FCFLAGS=" ${flags}" \
FFLAGS=" ${flags}" \
ADAFLAGS=" ${flags}" \
prefix="/opt/toolchains/dc/sh-elf" \
exec_prefix="/opt/toolchains/dc/sh-elf" \
GCJFLAGS=" ${flags}" \
GOCFLAGS="-O2 -g ${flags}" \
CXXFLAGS="-g -O2 ${flags}" \
LIBCFLAGS="-g -O2 ${flags}" \
LIBCXXFLAGS="-g -O2 -fno-implicit-templates ${flags}" \
LDFLAGS=" ${flags}" \
MULTIFLAGS="${flags}" \
DESTDIR="" \
INSTALL="/usr/bin/install -c" \
INSTALL_DATA="/usr/bin/install -c -m 644" \
INSTALL_PROGRAM="/usr/bin/install -c" \
INSTALL_SCRIPT="/usr/bin/install -c" \
all); then \
true; \
else \
exit 1; \
fi; \
else true; \
fi; \
fi; \
done; \
fi
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _ashldi3.o -MT _ashldi3.o -MD -MP -MF _ashldi3.dep -DL_ashldi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _ashrdi3.o -MT _ashrdi3.o -MD -MP -MF _ashrdi3.dep -DL_ashrdi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _cmpdi2.o -MT _cmpdi2.o -MD -MP -MF _cmpdi2.dep -DL_cmpdi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _ucmpdi2.o -MT _ucmpdi2.o -MD -MP -MF _ucmpdi2.dep -DL_ucmpdi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _clear_cache.o -MT _clear_cache.o -MD -MP -MF _clear_cache.dep -DL_clear_cache -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _trampoline.o -MT _trampoline.o -MD -MP -MF _trampoline.dep -DL_trampoline -c ../../../gcc-4.7.3/libgcc/libgcc2.c
make[5]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libgcc'
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o __main.o -MT __main.o -MD -MP -MF __main.dep -DL__main -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _absvsi2.o -MT _absvsi2.o -MD -MP -MF _absvsi2.dep -DL_absvsi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _absvdi2.o -MT _absvdi2.o -MD -MP -MF _absvdi2.dep -DL_absvdi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
# If this is the top-level multilib, build all the other
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _addvsi3.o -MT _addvsi3.o -MD -MP -MF _addvsi3.dep -DL_addvsi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _addvdi3.o -MT _addvdi3.o -MD -MP -MF _addvdi3.dep -DL_addvdi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
# multilibs.
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _subvsi3.o -MT _subvsi3.o -MD -MP -MF _subvsi3.dep -DL_subvsi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
dest=../../.././gcc/include/tmp$$-unwind.h; \
cp unwind.h $dest; \
chmod a+r $dest; \
sh ../../../../gcc-4.7.3/libgcc/../move-if-change $dest ../../.././gcc/include/unwind.h
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _subvdi3.o -MT _subvdi3.o -MD -MP -MF _subvdi3.dep -DL_subvdi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _muldi3.o -MT _muldi3.o -MD -MP -MF _muldi3.dep -DL_muldi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _negdi2.o -MT _negdi2.o -MD -MP -MF _negdi2.dep -DL_negdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _lshrdi3.o -MT _lshrdi3.o -MD -MP -MF _lshrdi3.dep -DL_lshrdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _mulvsi3.o -MT _mulvsi3.o -MD -MP -MF _mulvsi3.dep -DL_mulvsi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _mulvdi3.o -MT _mulvdi3.o -MD -MP -MF _mulvdi3.dep -DL_mulvdi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _negvsi2.o -MT _negvsi2.o -MD -MP -MF _negvsi2.dep -DL_negvsi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ashldi3.o -MT _ashldi3.o -MD -MP -MF _ashldi3.dep -DL_ashldi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ashrdi3.o -MT _ashrdi3.o -MD -MP -MF _ashrdi3.dep -DL_ashrdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _cmpdi2.o -MT _cmpdi2.o -MD -MP -MF _cmpdi2.dep -DL_cmpdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ucmpdi2.o -MT _ucmpdi2.o -MD -MP -MF _ucmpdi2.dep -DL_ucmpdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _negvdi2.o -MT _negvdi2.o -MD -MP -MF _negvdi2.dep -DL_negvdi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _clear_cache.o -MT _clear_cache.o -MD -MP -MF _clear_cache.dep -DL_clear_cache -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _ctors.o -MT _ctors.o -MD -MP -MF _ctors.dep -DL_ctors -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _ffssi2.o -MT _ffssi2.o -MD -MP -MF _ffssi2.dep -DL_ffssi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _trampoline.o -MT _trampoline.o -MD -MP -MF _trampoline.dep -DL_trampoline -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _ffsdi2.o -MT _ffsdi2.o -MD -MP -MF _ffsdi2.dep -DL_ffsdi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o __main.o -MT __main.o -MD -MP -MF __main.dep -DL__main -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _absvsi2.o -MT _absvsi2.o -MD -MP -MF _absvsi2.dep -DL_absvsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _clz.o -MT _clz.o -MD -MP -MF _clz.dep -DL_clz -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _absvdi2.o -MT _absvdi2.o -MD -MP -MF _absvdi2.dep -DL_absvdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _clzsi2.o -MT _clzsi2.o -MD -MP -MF _clzsi2.dep -DL_clzsi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _addvsi3.o -MT _addvsi3.o -MD -MP -MF _addvsi3.dep -DL_addvsi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _clzdi2.o -MT _clzdi2.o -MD -MP -MF _clzdi2.dep -DL_clzdi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _ctzsi2.o -MT _ctzsi2.o -MD -MP -MF _ctzsi2.dep -DL_ctzsi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _addvdi3.o -MT _addvdi3.o -MD -MP -MF _addvdi3.dep -DL_addvdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _ctzdi2.o -MT _ctzdi2.o -MD -MP -MF _ctzdi2.dep -DL_ctzdi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _subvsi3.o -MT _subvsi3.o -MD -MP -MF _subvsi3.dep -DL_subvsi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _subvdi3.o -MT _subvdi3.o -MD -MP -MF _subvdi3.dep -DL_subvdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _popcount_tab.o -MT _popcount_tab.o -MD -MP -MF _popcount_tab.dep -DL_popcount_tab -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _mulvsi3.o -MT _mulvsi3.o -MD -MP -MF _mulvsi3.dep -DL_mulvsi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _popcountsi2.o -MT _popcountsi2.o -MD -MP -MF _popcountsi2.dep -DL_popcountsi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _mulvdi3.o -MT _mulvdi3.o -MD -MP -MF _mulvdi3.dep -DL_mulvdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _popcountdi2.o -MT _popcountdi2.o -MD -MP -MF _popcountdi2.dep -DL_popcountdi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _paritysi2.o -MT _paritysi2.o -MD -MP -MF _paritysi2.dep -DL_paritysi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _negvsi2.o -MT _negvsi2.o -MD -MP -MF _negvsi2.dep -DL_negvsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _paritydi2.o -MT _paritydi2.o -MD -MP -MF _paritydi2.dep -DL_paritydi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _negvdi2.o -MT _negvdi2.o -MD -MP -MF _negvdi2.dep -DL_negvdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ctors.o -MT _ctors.o -MD -MP -MF _ctors.dep -DL_ctors -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _powisf2.o -MT _powisf2.o -MD -MP -MF _powisf2.dep -DL_powisf2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _powidf2.o -MT _powidf2.o -MD -MP -MF _powidf2.dep -DL_powidf2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ffssi2.o -MT _ffssi2.o -MD -MP -MF _ffssi2.dep -DL_ffssi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ffsdi2.o -MT _ffsdi2.o -MD -MP -MF _ffsdi2.dep -DL_ffsdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _clz.o -MT _clz.o -MD -MP -MF _clz.dep -DL_clz -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _powixf2.o -MT _powixf2.o -MD -MP -MF _powixf2.dep -DL_powixf2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _powitf2.o -MT _powitf2.o -MD -MP -MF _powitf2.dep -DL_powitf2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _clzsi2.o -MT _clzsi2.o -MD -MP -MF _clzsi2.dep -DL_clzsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _clzdi2.o -MT _clzdi2.o -MD -MP -MF _clzdi2.dep -DL_clzdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ctzsi2.o -MT _ctzsi2.o -MD -MP -MF _ctzsi2.dep -DL_ctzsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _mulsc3.o -MT _mulsc3.o -MD -MP -MF _mulsc3.dep -DL_mulsc3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _muldc3.o -MT _muldc3.o -MD -MP -MF _muldc3.dep -DL_muldc3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ctzdi2.o -MT _ctzdi2.o -MD -MP -MF _ctzdi2.dep -DL_ctzdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _popcount_tab.o -MT _popcount_tab.o -MD -MP -MF _popcount_tab.dep -DL_popcount_tab -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _popcountsi2.o -MT _popcountsi2.o -MD -MP -MF _popcountsi2.dep -DL_popcountsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _mulxc3.o -MT _mulxc3.o -MD -MP -MF _mulxc3.dep -DL_mulxc3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _popcountdi2.o -MT _popcountdi2.o -MD -MP -MF _popcountdi2.dep -DL_popcountdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _multc3.o -MT _multc3.o -MD -MP -MF _multc3.dep -DL_multc3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _paritysi2.o -MT _paritysi2.o -MD -MP -MF _paritysi2.dep -DL_paritysi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _divsc3.o -MT _divsc3.o -MD -MP -MF _divsc3.dep -DL_divsc3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _paritydi2.o -MT _paritydi2.o -MD -MP -MF _paritydi2.dep -DL_paritydi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _divdc3.o -MT _divdc3.o -MD -MP -MF _divdc3.dep -DL_divdc3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _powisf2.o -MT _powisf2.o -MD -MP -MF _powisf2.dep -DL_powisf2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _divxc3.o -MT _divxc3.o -MD -MP -MF _divxc3.dep -DL_divxc3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _powidf2.o -MT _powidf2.o -MD -MP -MF _powidf2.dep -DL_powidf2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _divtc3.o -MT _divtc3.o -MD -MP -MF _divtc3.dep -DL_divtc3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _powixf2.o -MT _powixf2.o -MD -MP -MF _powixf2.dep -DL_powixf2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _bswapsi2.o -MT _bswapsi2.o -MD -MP -MF _bswapsi2.dep -DL_bswapsi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _powitf2.o -MT _powitf2.o -MD -MP -MF _powitf2.dep -DL_powitf2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _bswapdi2.o -MT _bswapdi2.o -MD -MP -MF _bswapdi2.dep -DL_bswapdi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _mulsc3.o -MT _mulsc3.o -MD -MP -MF _mulsc3.dep -DL_mulsc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _clrsbsi2.o -MT _clrsbsi2.o -MD -MP -MF _clrsbsi2.dep -DL_clrsbsi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _muldc3.o -MT _muldc3.o -MD -MP -MF _muldc3.dep -DL_muldc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _mulxc3.o -MT _mulxc3.o -MD -MP -MF _mulxc3.dep -DL_mulxc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _clrsbdi2.o -MT _clrsbdi2.o -MD -MP -MF _clrsbdi2.dep -DL_clrsbdi2 -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _fixunssfsi.o -MT _fixunssfsi.o -MD -MP -MF _fixunssfsi.dep -DL_fixunssfsi -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _multc3.o -MT _multc3.o -MD -MP -MF _multc3.dep -DL_multc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _divsc3.o -MT _divsc3.o -MD -MP -MF _divsc3.dep -DL_divsc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _divdc3.o -MT _divdc3.o -MD -MP -MF _divdc3.dep -DL_divdc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _fixunsdfsi.o -MT _fixunsdfsi.o -MD -MP -MF _fixunsdfsi.dep -DL_fixunsdfsi -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _fixunsxfsi.o -MT _fixunsxfsi.o -MD -MP -MF _fixunsxfsi.dep -DL_fixunsxfsi -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _divxc3.o -MT _divxc3.o -MD -MP -MF _divxc3.dep -DL_divxc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _fixsfdi.o -MT _fixsfdi.o -MD -MP -MF _fixsfdi.dep -DL_fixsfdi -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _divtc3.o -MT _divtc3.o -MD -MP -MF _divtc3.dep -DL_divtc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _fixdfdi.o -MT _fixdfdi.o -MD -MP -MF _fixdfdi.dep -DL_fixdfdi -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _bswapsi2.o -MT _bswapsi2.o -MD -MP -MF _bswapsi2.dep -DL_bswapsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _fixxfdi.o -MT _fixxfdi.o -MD -MP -MF _fixxfdi.dep -DL_fixxfdi -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _bswapdi2.o -MT _bswapdi2.o -MD -MP -MF _bswapdi2.dep -DL_bswapdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _fixtfdi.o -MT _fixtfdi.o -MD -MP -MF _fixtfdi.dep -DL_fixtfdi -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _clrsbsi2.o -MT _clrsbsi2.o -MD -MP -MF _clrsbsi2.dep -DL_clrsbsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _fixunssfdi.o -MT _fixunssfdi.o -MD -MP -MF _fixunssfdi.dep -DL_fixunssfdi -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _clrsbdi2.o -MT _clrsbdi2.o -MD -MP -MF _clrsbdi2.dep -DL_clrsbdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _fixunsdfdi.o -MT _fixunsdfdi.o -MD -MP -MF _fixunsdfdi.dep -DL_fixunsdfdi -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunssfsi.o -MT _fixunssfsi.o -MD -MP -MF _fixunssfsi.dep -DL_fixunssfsi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _fixunsxfdi.o -MT _fixunsxfdi.o -MD -MP -MF _fixunsxfdi.dep -DL_fixunsxfdi -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunsdfsi.o -MT _fixunsdfsi.o -MD -MP -MF _fixunsdfsi.dep -DL_fixunsdfsi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _fixunstfdi.o -MT _fixunstfdi.o -MD -MP -MF _fixunstfdi.dep -DL_fixunstfdi -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunsxfsi.o -MT _fixunsxfsi.o -MD -MP -MF _fixunsxfsi.dep -DL_fixunsxfsi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _floatdisf.o -MT _floatdisf.o -MD -MP -MF _floatdisf.dep -DL_floatdisf -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixsfdi.o -MT _fixsfdi.o -MD -MP -MF _fixsfdi.dep -DL_fixsfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _floatdidf.o -MT _floatdidf.o -MD -MP -MF _floatdidf.dep -DL_floatdidf -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixdfdi.o -MT _fixdfdi.o -MD -MP -MF _fixdfdi.dep -DL_fixdfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _floatdixf.o -MT _floatdixf.o -MD -MP -MF _floatdixf.dep -DL_floatdixf -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixxfdi.o -MT _fixxfdi.o -MD -MP -MF _fixxfdi.dep -DL_fixxfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _floatditf.o -MT _floatditf.o -MD -MP -MF _floatditf.dep -DL_floatditf -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixtfdi.o -MT _fixtfdi.o -MD -MP -MF _fixtfdi.dep -DL_fixtfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _floatundisf.o -MT _floatundisf.o -MD -MP -MF _floatundisf.dep -DL_floatundisf -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunssfdi.o -MT _fixunssfdi.o -MD -MP -MF _fixunssfdi.dep -DL_fixunssfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _floatundidf.o -MT _floatundidf.o -MD -MP -MF _floatundidf.dep -DL_floatundidf -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunsdfdi.o -MT _fixunsdfdi.o -MD -MP -MF _fixunsdfdi.dep -DL_fixunsdfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _floatundixf.o -MT _floatundixf.o -MD -MP -MF _floatundixf.dep -DL_floatundixf -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunsxfdi.o -MT _fixunsxfdi.o -MD -MP -MF _fixunsxfdi.dep -DL_fixunsxfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _floatunditf.o -MT _floatunditf.o -MD -MP -MF _floatunditf.dep -DL_floatunditf -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunstfdi.o -MT _fixunstfdi.o -MD -MP -MF _fixunstfdi.dep -DL_fixunstfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _eprintf.o -MT _eprintf.o -MD -MP -MF _eprintf.dep -DL_eprintf -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatdisf.o -MT _floatdisf.o -MD -MP -MF _floatdisf.dep -DL_floatdisf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o __gcc_bcmp.o -MT __gcc_bcmp.o -MD -MP -MF __gcc_bcmp.dep -DL__gcc_bcmp -c ../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatdidf.o -MT _floatdidf.o -MD -MP -MF _floatdidf.dep -DL_floatdidf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatdixf.o -MT _floatdixf.o -MD -MP -MF _floatdixf.dep -DL_floatdixf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _divdi3.o -MT _divdi3.o -MD -MP -MF _divdi3.dep -DL_divdi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _moddi3.o -MT _moddi3.o -MD -MP -MF _moddi3.dep -DL_moddi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatditf.o -MT _floatditf.o -MD -MP -MF _floatditf.dep -DL_floatditf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatundisf.o -MT _floatundisf.o -MD -MP -MF _floatundisf.dep -DL_floatundisf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatundidf.o -MT _floatundidf.o -MD -MP -MF _floatundidf.dep -DL_floatundidf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _udivdi3.o -MT _udivdi3.o -MD -MP -MF _udivdi3.dep -DL_udivdi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _umoddi3.o -MT _umoddi3.o -MD -MP -MF _umoddi3.dep -DL_umoddi3 -c ../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatundixf.o -MT _floatundixf.o -MD -MP -MF _floatundixf.dep -DL_floatundixf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatunditf.o -MT _floatunditf.o -MD -MP -MF _floatunditf.dep -DL_floatunditf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _eprintf.o -MT _eprintf.o -MD -MP -MF _eprintf.dep -DL_eprintf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _udiv_w_sdiv.o -MT _udiv_w_sdiv.o -MD -MP -MF _udiv_w_sdiv.dep -DL_udiv_w_sdiv -c ../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o __gcc_bcmp.o -MT __gcc_bcmp.o -MD -MP -MF __gcc_bcmp.dep -DL__gcc_bcmp -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _divdi3.o -MT _divdi3.o -MD -MP -MF _divdi3.dep -DL_divdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _moddi3.o -MT _moddi3.o -MD -MP -MF _moddi3.dep -DL_moddi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o unwind-dw2.o -MT unwind-dw2.o -MD -MP -MF unwind-dw2.dep -fexceptions -c ../../../gcc-4.7.3/libgcc/unwind-dw2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o unwind-dw2-fde.o -MT unwind-dw2-fde.o -MD -MP -MF unwind-dw2-fde.dep -fexceptions -c ../../../gcc-4.7.3/libgcc/unwind-dw2-fde.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _udivdi3.o -MT _udivdi3.o -MD -MP -MF _udivdi3.dep -DL_udivdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
In file included from ../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../gcc-4.7.3/libgcc/unwind-dw2-fde.c:38:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
In file included from ../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../gcc-4.7.3/libgcc/unwind-dw2.c:38:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _umoddi3.o -MT _umoddi3.o -MD -MP -MF _umoddi3.dep -DL_umoddi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _udiv_w_sdiv.o -MT _udiv_w_sdiv.o -MD -MP -MF _udiv_w_sdiv.dep -DL_udiv_w_sdiv -c ../../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o unwind-sjlj.o -MT unwind-sjlj.o -MD -MP -MF unwind-sjlj.dep -fexceptions -c ../../../gcc-4.7.3/libgcc/unwind-sjlj.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o unwind-dw2.o -MT unwind-dw2.o -MD -MP -MF unwind-dw2.dep -fexceptions -c ../../../../gcc-4.7.3/libgcc/unwind-dw2.c
In file included from ../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../gcc-4.7.3/libgcc/unwind-sjlj.c:32:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o unwind-dw2-fde.o -MT unwind-dw2-fde.o -MD -MP -MF unwind-dw2-fde.dep -fexceptions -c ../../../../gcc-4.7.3/libgcc/unwind-dw2-fde.c
In file included from ../../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../../gcc-4.7.3/libgcc/unwind-dw2.c:38:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o unwind-sjlj.o -MT unwind-sjlj.o -MD -MP -MF unwind-sjlj.dep -fexceptions -c ../../../../gcc-4.7.3/libgcc/unwind-sjlj.c
In file included from ../../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../../gcc-4.7.3/libgcc/unwind-dw2-fde.c:38:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
In file included from ../../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../../gcc-4.7.3/libgcc/unwind-sjlj.c:32:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o unwind-c.o -MT unwind-c.o -MD -MP -MF unwind-c.dep -fexceptions -c ../../../gcc-4.7.3/libgcc/unwind-c.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o emutls.o -MT emutls.o -MD -MP -MF emutls.dep -fexceptions -c ../../../gcc-4.7.3/libgcc/emutls.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o unwind-c.o -MT unwind-c.o -MD -MP -MF unwind-c.dep -fexceptions -c ../../../../gcc-4.7.3/libgcc/unwind-c.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov.o -MT _gcov.o -MD -MP -MF _gcov.dep -DL_gcov -c ../../../gcc-4.7.3/libgcc/libgcov.c
../../../gcc-4.7.3/libgcc/emutls.c: In function ‘__emutls_get_address’:
../../../gcc-4.7.3/libgcc/emutls.c:159:7: warning: implicit declaration of function ‘calloc’ [-Wimplicit-function-declaration]
../../../gcc-4.7.3/libgcc/emutls.c:159:13: warning: incompatible implicit declaration of built-in function ‘calloc’ [enabled by default]
../../../gcc-4.7.3/libgcc/emutls.c:171:7: warning: implicit declaration of function ‘realloc’ [-Wimplicit-function-declaration]
../../../gcc-4.7.3/libgcc/emutls.c:171:13: warning: incompatible implicit declaration of built-in function ‘realloc’ [enabled by default]
In file included from ../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../gcc-4.7.3/libgcc/emutls.c:31:
../../../gcc-4.7.3/libgcc/emutls.c: At top level:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o emutls.o -MT emutls.o -MD -MP -MF emutls.dep -fexceptions -c ../../../../gcc-4.7.3/libgcc/emutls.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov.o -MT _gcov.o -MD -MP -MF _gcov.dep -DL_gcov -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_merge_add.o -MT _gcov_merge_add.o -MD -MP -MF _gcov_merge_add.dep -DL_gcov_merge_add -c ../../../../gcc-4.7.3/libgcc/libgcov.c
../../../../gcc-4.7.3/libgcc/emutls.c: In function ‘__emutls_get_address’:
../../../../gcc-4.7.3/libgcc/emutls.c:159:7: warning: implicit declaration of function ‘calloc’ [-Wimplicit-function-declaration]
../../../../gcc-4.7.3/libgcc/emutls.c:159:13: warning: incompatible implicit declaration of built-in function ‘calloc’ [enabled by default]
../../../../gcc-4.7.3/libgcc/emutls.c:171:7: warning: implicit declaration of function ‘realloc’ [-Wimplicit-function-declaration]
../../../../gcc-4.7.3/libgcc/emutls.c:171:13: warning: incompatible implicit declaration of built-in function ‘realloc’ [enabled by default]
In file included from ../../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../../gcc-4.7.3/libgcc/emutls.c:31:
../../../../gcc-4.7.3/libgcc/emutls.c: At top level:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_merge_add.o -MT _gcov_merge_add.o -MD -MP -MF _gcov_merge_add.dep -DL_gcov_merge_add -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_merge_single.o -MT _gcov_merge_single.o -MD -MP -MF _gcov_merge_single.dep -DL_gcov_merge_single -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_merge_single.o -MT _gcov_merge_single.o -MD -MP -MF _gcov_merge_single.dep -DL_gcov_merge_single -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_merge_delta.o -MT _gcov_merge_delta.o -MD -MP -MF _gcov_merge_delta.dep -DL_gcov_merge_delta -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_fork.o -MT _gcov_fork.o -MD -MP -MF _gcov_fork.dep -DL_gcov_fork -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_merge_delta.o -MT _gcov_merge_delta.o -MD -MP -MF _gcov_merge_delta.dep -DL_gcov_merge_delta -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_fork.o -MT _gcov_fork.o -MD -MP -MF _gcov_fork.dep -DL_gcov_fork -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_execl.o -MT _gcov_execl.o -MD -MP -MF _gcov_execl.dep -DL_gcov_execl -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_execlp.o -MT _gcov_execlp.o -MD -MP -MF _gcov_execlp.dep -DL_gcov_execlp -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_execle.o -MT _gcov_execle.o -MD -MP -MF _gcov_execle.dep -DL_gcov_execle -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_execl.o -MT _gcov_execl.o -MD -MP -MF _gcov_execl.dep -DL_gcov_execl -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_execlp.o -MT _gcov_execlp.o -MD -MP -MF _gcov_execlp.dep -DL_gcov_execlp -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_execv.o -MT _gcov_execv.o -MD -MP -MF _gcov_execv.dep -DL_gcov_execv -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_execvp.o -MT _gcov_execvp.o -MD -MP -MF _gcov_execvp.dep -DL_gcov_execvp -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_execve.o -MT _gcov_execve.o -MD -MP -MF _gcov_execve.dep -DL_gcov_execve -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_execle.o -MT _gcov_execle.o -MD -MP -MF _gcov_execle.dep -DL_gcov_execle -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_execv.o -MT _gcov_execv.o -MD -MP -MF _gcov_execv.dep -DL_gcov_execv -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_interval_profiler.o -MT _gcov_interval_profiler.o -MD -MP -MF _gcov_interval_profiler.dep -DL_gcov_interval_profiler -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_pow2_profiler.o -MT _gcov_pow2_profiler.o -MD -MP -MF _gcov_pow2_profiler.dep -DL_gcov_pow2_profiler -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_one_value_profiler.o -MT _gcov_one_value_profiler.o -MD -MP -MF _gcov_one_value_profiler.dep -DL_gcov_one_value_profiler -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_execvp.o -MT _gcov_execvp.o -MD -MP -MF _gcov_execvp.dep -DL_gcov_execvp -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_execve.o -MT _gcov_execve.o -MD -MP -MF _gcov_execve.dep -DL_gcov_execve -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_indirect_call_profiler.o -MT _gcov_indirect_call_profiler.o -MD -MP -MF _gcov_indirect_call_profiler.dep -DL_gcov_indirect_call_profiler -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_average_profiler.o -MT _gcov_average_profiler.o -MD -MP -MF _gcov_average_profiler.dep -DL_gcov_average_profiler -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_ior_profiler.o -MT _gcov_ior_profiler.o -MD -MP -MF _gcov_ior_profiler.dep -DL_gcov_ior_profiler -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_interval_profiler.o -MT _gcov_interval_profiler.o -MD -MP -MF _gcov_interval_profiler.dep -DL_gcov_interval_profiler -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_pow2_profiler.o -MT _gcov_pow2_profiler.o -MD -MP -MF _gcov_pow2_profiler.dep -DL_gcov_pow2_profiler -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_merge_ior.o -MT _gcov_merge_ior.o -MD -MP -MF _gcov_merge_ior.dep -DL_gcov_merge_ior -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector -Dinhibit_libc -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o crtbegin.o -MT crtbegin.o -MD -MP -MF crtbegin.dep -c ../../../../gcc-4.7.3/libgcc/crtstuff.c -DCRT_BEGIN
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector -Dinhibit_libc -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o crtend.o -MT crtend.o -MD -MP -MF crtend.dep -c ../../../../gcc-4.7.3/libgcc/crtstuff.c -DCRT_END
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_one_value_profiler.o -MT _gcov_one_value_profiler.o -MD -MP -MF _gcov_one_value_profiler.dep -DL_gcov_one_value_profiler -c ../../../gcc-4.7.3/libgcc/libgcov.c
../../../../gcc-4.7.3/libgcc/crtstuff.c: In function ‘frame_dummy’:
../../../../gcc-4.7.3/libgcc/crtstuff.c:451:19: warning: array subscript is above array bounds [-Warray-bounds]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_indirect_call_profiler.o -MT _gcov_indirect_call_profiler.o -MD -MP -MF _gcov_indirect_call_profiler.dep -DL_gcov_indirect_call_profiler -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector -Dinhibit_libc -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o crtbeginS.o -MT crtbeginS.o -MD -MP -MF crtbeginS.dep -fPIC -c ../../../../gcc-4.7.3/libgcc/crtstuff.c -DCRT_BEGIN -DCRTSTUFFS_O
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector -Dinhibit_libc -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o crtendS.o -MT crtendS.o -MD -MP -MF crtendS.dep -fPIC -c ../../../../gcc-4.7.3/libgcc/crtstuff.c -DCRT_END -DCRTSTUFFS_O
../../../../gcc-4.7.3/libgcc/crtstuff.c: In function ‘frame_dummy’:
../../../../gcc-4.7.3/libgcc/crtstuff.c:451:19: warning: array subscript is above array bounds [-Warray-bounds]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o unwind-dw2-Os-4-200.o -MT unwind-dw2-Os-4-200.o -MD -MP -MF unwind-dw2-Os-4-200.dep -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -fexceptions -Os -c ../../../../gcc-4.7.3/libgcc/unwind-dw2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_average_profiler.o -MT _gcov_average_profiler.o -MD -MP -MF _gcov_average_profiler.dep -DL_gcov_average_profiler -c ../../../gcc-4.7.3/libgcc/libgcov.c
rm -f libgcc.a
objects="_ashiftrt.o _ashiftrt_n.o _ashiftlt.o _lshiftrt.o _movmem.o _movmem_i4.o _mulsi3.o _sdivsi3.o _sdivsi3_i4.o _udivsi3.o _udivsi3_i4.o _set_fpscr.o _div_table.o _udiv_qrnnd_16.o _ic_invalidate.o _ic_invalidate_array.o _muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _clrsbsi2.o _clrsbdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixtfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _fixunstfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatditf.o _floatundisf.o _floatundidf.o _floatundixf.o _floatunditf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o _pack_sf.o _unpack_sf.o _addsub_sf.o _mul_sf.o _div_sf.o _fpcmp_parts_sf.o _compare_sf.o _eq_sf.o _ne_sf.o _gt_sf.o _ge_sf.o _lt_sf.o _le_sf.o _unord_sf.o _si_to_sf.o _sf_to_si.o _negate_sf.o _make_sf.o _sf_to_df.o _thenan_sf.o _sf_to_usi.o _usi_to_sf.o _pack_df.o _unpack_df.o _addsub_df.o _mul_df.o _div_df.o _fpcmp_parts_df.o _compare_df.o _eq_df.o _ne_df.o _gt_df.o _ge_df.o _lt_df.o _le_df.o _unord_df.o _si_to_df.o _df_to_si.o _negate_df.o _make_df.o _df_to_sf.o _thenan_df.o _df_to_usi.o _usi_to_df.o fake-kos.o enable-execute-stack.o unwind-dw2.o unwind-dw2-fde.o unwind-sjlj.o unwind-c.o emutls.o"; \
if test -z "$objects"; then \
echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -c eh_dummy.c \
-o eh_dummy.o; \
objects=eh_dummy.o; \
fi; \
/opt/toolchains/dc/sh-elf/sh-elf/bin/ar rc libgcc.a $objects
In file included from ../../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../../gcc-4.7.3/libgcc/unwind-dw2.c:38:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
rm -f libgcov.a
objects="_gcov.o _gcov_merge_add.o _gcov_merge_single.o _gcov_merge_delta.o _gcov_fork.o _gcov_execl.o _gcov_execlp.o _gcov_execle.o _gcov_execv.o _gcov_execvp.o _gcov_execve.o _gcov_interval_profiler.o _gcov_pow2_profiler.o _gcov_one_value_profiler.o _gcov_indirect_call_profiler.o _gcov_average_profiler.o _gcov_ior_profiler.o _gcov_merge_ior.o"; \
if test -z "$objects"; then \
echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4-nofpu -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -c eh_dummy.c \
-o eh_dummy.o; \
objects=eh_dummy.o; \
fi; \
/opt/toolchains/dc/sh-elf/sh-elf/bin/ar rc libgcov.a $objects
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib libgcov.a
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib libgcc.a
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_ior_profiler.o -MT _gcov_ior_profiler.o -MD -MP -MF _gcov_ior_profiler.dep -DL_gcov_ior_profiler -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o _gcov_merge_ior.o -MT _gcov_merge_ior.o -MD -MP -MF _gcov_merge_ior.dep -DL_gcov_merge_ior -c ../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector -Dinhibit_libc -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o crtbegin.o -MT crtbegin.o -MD -MP -MF crtbegin.dep -c ../../../gcc-4.7.3/libgcc/crtstuff.c -DCRT_BEGIN
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector -Dinhibit_libc -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o crtend.o -MT crtend.o -MD -MP -MF crtend.dep -c ../../../gcc-4.7.3/libgcc/crtstuff.c -DCRT_END
/opt/toolchains/dc/sh-elf/sh-elf/bin/ar rc libgcc-Os-4-200.a sdivsi3_i4i-Os-4-200.o udivsi3_i4i-Os-4-200.o unwind-dw2-Os-4-200.o
../../../gcc-4.7.3/libgcc/crtstuff.c: In function ‘frame_dummy’:
../../../gcc-4.7.3/libgcc/crtstuff.c:451:19: warning: array subscript is above array bounds [-Warray-bounds]
# Early copyback; see "all" above for the rationale. The
# early copy is necessary so that the gcc -B options find
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector -Dinhibit_libc -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o crtbeginS.o -MT crtbeginS.o -MD -MP -MF crtbeginS.dep -fPIC -c ../../../gcc-4.7.3/libgcc/crtstuff.c -DCRT_BEGIN -DCRTSTUFFS_O
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector -Dinhibit_libc -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o crtendS.o -MT crtendS.o -MD -MP -MF crtendS.dep -fPIC -c ../../../gcc-4.7.3/libgcc/crtstuff.c -DCRT_END -DCRTSTUFFS_O
# the right startup files when linking shared libgcc.
/bin/sh ../../../../gcc-4.7.3/libgcc/../mkinstalldirs ../../.././gcc/m4-nofpu
parts="crtbegin.o crtend.o crt1.o crti.o crtn.o crtbeginS.o crtendS.o libic_invalidate_array_4-100.a libic_invalidate_array_4-200.a libic_invalidate_array_4a.a libgcc-Os-4-200.a libgcc-4-300.a"; \
for file in $parts; do \
rm -f ../../.././gcc/m4-nofpu/$file; \
/usr/bin/install -c -m 644 $file ../../.././gcc/m4-nofpu/; \
case $file in \
*.a) \
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib ../../.././gcc/m4-nofpu/$file ;; \
esac; \
done
../../../gcc-4.7.3/libgcc/crtstuff.c: In function ‘frame_dummy’:
../../../gcc-4.7.3/libgcc/crtstuff.c:451:19: warning: array subscript is above array bounds [-Warray-bounds]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -o unwind-dw2-Os-4-200.o -MT unwind-dw2-Os-4-200.o -MD -MP -MF unwind-dw2-Os-4-200.dep -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -fexceptions -Os -c ../../../gcc-4.7.3/libgcc/unwind-dw2.c
rm -f libgcc.a
objects="_ashiftrt.o _ashiftrt_n.o _ashiftlt.o _lshiftrt.o _movmem.o _movmem_i4.o _mulsi3.o _sdivsi3.o _sdivsi3_i4.o _udivsi3.o _udivsi3_i4.o _set_fpscr.o _div_table.o _udiv_qrnnd_16.o _ic_invalidate.o _ic_invalidate_array.o _muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _clrsbsi2.o _clrsbdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixtfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _fixunstfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatditf.o _floatundisf.o _floatundidf.o _floatundixf.o _floatunditf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o _pack_sf.o _unpack_sf.o _addsub_sf.o _mul_sf.o _div_sf.o _fpcmp_parts_sf.o _compare_sf.o _eq_sf.o _ne_sf.o _gt_sf.o _ge_sf.o _lt_sf.o _le_sf.o _unord_sf.o _si_to_sf.o _sf_to_si.o _negate_sf.o _make_sf.o _sf_to_df.o _thenan_sf.o _sf_to_usi.o _usi_to_sf.o _pack_df.o _unpack_df.o _addsub_df.o _mul_df.o _div_df.o _fpcmp_parts_df.o _compare_df.o _eq_df.o _ne_df.o _gt_df.o _ge_df.o _lt_df.o _le_df.o _unord_df.o _si_to_df.o _df_to_si.o _negate_df.o _make_df.o _df_to_sf.o _thenan_df.o _df_to_usi.o _usi_to_df.o fake-kos.o enable-execute-stack.o unwind-dw2.o unwind-dw2-fde.o unwind-sjlj.o unwind-c.o emutls.o"; \
if test -z "$objects"; then \
echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -c eh_dummy.c \
-o eh_dummy.o; \
objects=eh_dummy.o; \
fi; \
/opt/toolchains/dc/sh-elf/sh-elf/bin/ar rc libgcc.a $objects
In file included from ../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../gcc-4.7.3/libgcc/unwind-dw2.c:38:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib libgcc.a
rm -f libgcov.a
objects="_gcov.o _gcov_merge_add.o _gcov_merge_single.o _gcov_merge_delta.o _gcov_fork.o _gcov_execl.o _gcov_execlp.o _gcov_execle.o _gcov_execv.o _gcov_execvp.o _gcov_execve.o _gcov_interval_profiler.o _gcov_pow2_profiler.o _gcov_one_value_profiler.o _gcov_indirect_call_profiler.o _gcov_average_profiler.o _gcov_ior_profiler.o _gcov_merge_ior.o"; \
if test -z "$objects"; then \
echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../.././gcc -I../../../gcc-4.7.3/libgcc -I../../../gcc-4.7.3/libgcc/. -I../../../gcc-4.7.3/libgcc/../gcc -I../../../gcc-4.7.3/libgcc/../include -c eh_dummy.c \
-o eh_dummy.o; \
objects=eh_dummy.o; \
fi; \
/opt/toolchains/dc/sh-elf/sh-elf/bin/ar rc libgcov.a $objects
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib libgcov.a
# Now that we have built all the objects, we need to copy
/opt/toolchains/dc/sh-elf/sh-elf/bin/ar rc libgcc-Os-4-200.a sdivsi3_i4i-Os-4-200.o udivsi3_i4i-Os-4-200.o unwind-dw2-Os-4-200.o
# them back to the GCC directory. Too many things (other
# Early copyback; see "all" above for the rationale. The
# in-tree libraries, and DejaGNU) know about the layout
# early copy is necessary so that the gcc -B options find
# of the build tree, for now.
# the right startup files when linking shared libgcc.
make install-leaf DESTDIR=../../.././gcc \
slibdir= libsubdir= MULTIOSDIR=m4-nofpu
/bin/sh ../../../gcc-4.7.3/libgcc/../mkinstalldirs ../.././gcc
make[6]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libgcc'
parts="crtbegin.o crtend.o crt1.o crti.o crtn.o crtbeginS.o crtendS.o libic_invalidate_array_4-100.a libic_invalidate_array_4-200.a libic_invalidate_array_4a.a libgcc-Os-4-200.a libgcc-4-300.a"; \
for file in $parts; do \
rm -f ../.././gcc/$file; \
/usr/bin/install -c -m 644 $file ../.././gcc/; \
case $file in \
*.a) \
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib ../.././gcc/$file ;; \
esac; \
done
/bin/sh ../../../../gcc-4.7.3/libgcc/../mkinstalldirs ../../.././gcc/m4-nofpu
/usr/bin/install -c -m 644 libgcc.a ../../.././gcc/m4-nofpu/
chmod 644 ../../.././gcc/m4-nofpu/libgcc.a
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib ../../.././gcc/m4-nofpu/libgcc.a
/usr/bin/install -c -m 644 libgcov.a ../../.././gcc/m4-nofpu/
chmod 644 ../../.././gcc/m4-nofpu/libgcov.a
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib ../../.././gcc/m4-nofpu/libgcov.a
parts="crtbegin.o crtend.o crt1.o crti.o crtn.o crtbeginS.o crtendS.o libic_invalidate_array_4-100.a libic_invalidate_array_4-200.a libic_invalidate_array_4a.a libgcc-Os-4-200.a libgcc-4-300.a"; \
for file in $parts; do \
rm -f ../../.././gcc/m4-nofpu/$file; \
/usr/bin/install -c -m 644 $file ../../.././gcc/m4-nofpu/; \
case $file in \
*.a) \
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib ../../.././gcc/m4-nofpu/$file ;; \
esac; \
done
make[6]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libgcc'
make[5]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libgcc'
make[5]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libgcc'
# If this is the top-level multilib, build all the other
# multilibs.
dest=../../.././gcc/include/tmp$$-unwind.h; \
cp unwind.h $dest; \
chmod a+r $dest; \
sh ../../../../gcc-4.7.3/libgcc/../move-if-change $dest ../../.././gcc/include/unwind.h
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _muldi3.o -MT _muldi3.o -MD -MP -MF _muldi3.dep -DL_muldi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _negdi2.o -MT _negdi2.o -MD -MP -MF _negdi2.dep -DL_negdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _lshrdi3.o -MT _lshrdi3.o -MD -MP -MF _lshrdi3.dep -DL_lshrdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ashldi3.o -MT _ashldi3.o -MD -MP -MF _ashldi3.dep -DL_ashldi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ashrdi3.o -MT _ashrdi3.o -MD -MP -MF _ashrdi3.dep -DL_ashrdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _cmpdi2.o -MT _cmpdi2.o -MD -MP -MF _cmpdi2.dep -DL_cmpdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ucmpdi2.o -MT _ucmpdi2.o -MD -MP -MF _ucmpdi2.dep -DL_ucmpdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _clear_cache.o -MT _clear_cache.o -MD -MP -MF _clear_cache.dep -DL_clear_cache -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _trampoline.o -MT _trampoline.o -MD -MP -MF _trampoline.dep -DL_trampoline -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o __main.o -MT __main.o -MD -MP -MF __main.dep -DL__main -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _absvsi2.o -MT _absvsi2.o -MD -MP -MF _absvsi2.dep -DL_absvsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _absvdi2.o -MT _absvdi2.o -MD -MP -MF _absvdi2.dep -DL_absvdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _addvsi3.o -MT _addvsi3.o -MD -MP -MF _addvsi3.dep -DL_addvsi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _addvdi3.o -MT _addvdi3.o -MD -MP -MF _addvdi3.dep -DL_addvdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _subvsi3.o -MT _subvsi3.o -MD -MP -MF _subvsi3.dep -DL_subvsi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _subvdi3.o -MT _subvdi3.o -MD -MP -MF _subvdi3.dep -DL_subvdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _mulvsi3.o -MT _mulvsi3.o -MD -MP -MF _mulvsi3.dep -DL_mulvsi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _mulvdi3.o -MT _mulvdi3.o -MD -MP -MF _mulvdi3.dep -DL_mulvdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _negvsi2.o -MT _negvsi2.o -MD -MP -MF _negvsi2.dep -DL_negvsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _negvdi2.o -MT _negvdi2.o -MD -MP -MF _negvdi2.dep -DL_negvdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ctors.o -MT _ctors.o -MD -MP -MF _ctors.dep -DL_ctors -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ffssi2.o -MT _ffssi2.o -MD -MP -MF _ffssi2.dep -DL_ffssi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ffsdi2.o -MT _ffsdi2.o -MD -MP -MF _ffsdi2.dep -DL_ffsdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _clz.o -MT _clz.o -MD -MP -MF _clz.dep -DL_clz -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _clzsi2.o -MT _clzsi2.o -MD -MP -MF _clzsi2.dep -DL_clzsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _clzdi2.o -MT _clzdi2.o -MD -MP -MF _clzdi2.dep -DL_clzdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ctzsi2.o -MT _ctzsi2.o -MD -MP -MF _ctzsi2.dep -DL_ctzsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _ctzdi2.o -MT _ctzdi2.o -MD -MP -MF _ctzdi2.dep -DL_ctzdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _popcount_tab.o -MT _popcount_tab.o -MD -MP -MF _popcount_tab.dep -DL_popcount_tab -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _popcountsi2.o -MT _popcountsi2.o -MD -MP -MF _popcountsi2.dep -DL_popcountsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _popcountdi2.o -MT _popcountdi2.o -MD -MP -MF _popcountdi2.dep -DL_popcountdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _paritysi2.o -MT _paritysi2.o -MD -MP -MF _paritysi2.dep -DL_paritysi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _paritydi2.o -MT _paritydi2.o -MD -MP -MF _paritydi2.dep -DL_paritydi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _powisf2.o -MT _powisf2.o -MD -MP -MF _powisf2.dep -DL_powisf2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _powidf2.o -MT _powidf2.o -MD -MP -MF _powidf2.dep -DL_powidf2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _powixf2.o -MT _powixf2.o -MD -MP -MF _powixf2.dep -DL_powixf2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _powitf2.o -MT _powitf2.o -MD -MP -MF _powitf2.dep -DL_powitf2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _mulsc3.o -MT _mulsc3.o -MD -MP -MF _mulsc3.dep -DL_mulsc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _muldc3.o -MT _muldc3.o -MD -MP -MF _muldc3.dep -DL_muldc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _mulxc3.o -MT _mulxc3.o -MD -MP -MF _mulxc3.dep -DL_mulxc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _multc3.o -MT _multc3.o -MD -MP -MF _multc3.dep -DL_multc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _divsc3.o -MT _divsc3.o -MD -MP -MF _divsc3.dep -DL_divsc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _divdc3.o -MT _divdc3.o -MD -MP -MF _divdc3.dep -DL_divdc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _divxc3.o -MT _divxc3.o -MD -MP -MF _divxc3.dep -DL_divxc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _divtc3.o -MT _divtc3.o -MD -MP -MF _divtc3.dep -DL_divtc3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _bswapsi2.o -MT _bswapsi2.o -MD -MP -MF _bswapsi2.dep -DL_bswapsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _bswapdi2.o -MT _bswapdi2.o -MD -MP -MF _bswapdi2.dep -DL_bswapdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _clrsbsi2.o -MT _clrsbsi2.o -MD -MP -MF _clrsbsi2.dep -DL_clrsbsi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _clrsbdi2.o -MT _clrsbdi2.o -MD -MP -MF _clrsbdi2.dep -DL_clrsbdi2 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunssfsi.o -MT _fixunssfsi.o -MD -MP -MF _fixunssfsi.dep -DL_fixunssfsi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunsdfsi.o -MT _fixunsdfsi.o -MD -MP -MF _fixunsdfsi.dep -DL_fixunsdfsi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunsxfsi.o -MT _fixunsxfsi.o -MD -MP -MF _fixunsxfsi.dep -DL_fixunsxfsi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixsfdi.o -MT _fixsfdi.o -MD -MP -MF _fixsfdi.dep -DL_fixsfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixdfdi.o -MT _fixdfdi.o -MD -MP -MF _fixdfdi.dep -DL_fixdfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixxfdi.o -MT _fixxfdi.o -MD -MP -MF _fixxfdi.dep -DL_fixxfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixtfdi.o -MT _fixtfdi.o -MD -MP -MF _fixtfdi.dep -DL_fixtfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunssfdi.o -MT _fixunssfdi.o -MD -MP -MF _fixunssfdi.dep -DL_fixunssfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunsdfdi.o -MT _fixunsdfdi.o -MD -MP -MF _fixunsdfdi.dep -DL_fixunsdfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunsxfdi.o -MT _fixunsxfdi.o -MD -MP -MF _fixunsxfdi.dep -DL_fixunsxfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _fixunstfdi.o -MT _fixunstfdi.o -MD -MP -MF _fixunstfdi.dep -DL_fixunstfdi -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatdisf.o -MT _floatdisf.o -MD -MP -MF _floatdisf.dep -DL_floatdisf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatdidf.o -MT _floatdidf.o -MD -MP -MF _floatdidf.dep -DL_floatdidf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatdixf.o -MT _floatdixf.o -MD -MP -MF _floatdixf.dep -DL_floatdixf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatditf.o -MT _floatditf.o -MD -MP -MF _floatditf.dep -DL_floatditf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatundisf.o -MT _floatundisf.o -MD -MP -MF _floatundisf.dep -DL_floatundisf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatundidf.o -MT _floatundidf.o -MD -MP -MF _floatundidf.dep -DL_floatundidf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatundixf.o -MT _floatundixf.o -MD -MP -MF _floatundixf.dep -DL_floatundixf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _floatunditf.o -MT _floatunditf.o -MD -MP -MF _floatunditf.dep -DL_floatunditf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _eprintf.o -MT _eprintf.o -MD -MP -MF _eprintf.dep -DL_eprintf -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o __gcc_bcmp.o -MT __gcc_bcmp.o -MD -MP -MF __gcc_bcmp.dep -DL__gcc_bcmp -c ../../../../gcc-4.7.3/libgcc/libgcc2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _divdi3.o -MT _divdi3.o -MD -MP -MF _divdi3.dep -DL_divdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _moddi3.o -MT _moddi3.o -MD -MP -MF _moddi3.dep -DL_moddi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _udivdi3.o -MT _udivdi3.o -MD -MP -MF _udivdi3.dep -DL_udivdi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _umoddi3.o -MT _umoddi3.o -MD -MP -MF _umoddi3.dep -DL_umoddi3 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _udiv_w_sdiv.o -MT _udiv_w_sdiv.o -MD -MP -MF _udiv_w_sdiv.dep -DL_udiv_w_sdiv -c ../../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../../gcc-4.7.3/libgcc/libgcc2.c \
-fexceptions -fnon-call-exceptions
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o unwind-dw2.o -MT unwind-dw2.o -MD -MP -MF unwind-dw2.dep -fexceptions -c ../../../../gcc-4.7.3/libgcc/unwind-dw2.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o unwind-dw2-fde.o -MT unwind-dw2-fde.o -MD -MP -MF unwind-dw2-fde.dep -fexceptions -c ../../../../gcc-4.7.3/libgcc/unwind-dw2-fde.c
In file included from ../../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../../gcc-4.7.3/libgcc/unwind-dw2.c:38:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o unwind-sjlj.o -MT unwind-sjlj.o -MD -MP -MF unwind-sjlj.dep -fexceptions -c ../../../../gcc-4.7.3/libgcc/unwind-sjlj.c
In file included from ../../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../../gcc-4.7.3/libgcc/unwind-dw2-fde.c:38:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
In file included from ../../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../../gcc-4.7.3/libgcc/unwind-sjlj.c:32:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o unwind-c.o -MT unwind-c.o -MD -MP -MF unwind-c.dep -fexceptions -c ../../../../gcc-4.7.3/libgcc/unwind-c.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o emutls.o -MT emutls.o -MD -MP -MF emutls.dep -fexceptions -c ../../../../gcc-4.7.3/libgcc/emutls.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov.o -MT _gcov.o -MD -MP -MF _gcov.dep -DL_gcov -c ../../../../gcc-4.7.3/libgcc/libgcov.c
../../../../gcc-4.7.3/libgcc/emutls.c: In function ‘__emutls_get_address’:
../../../../gcc-4.7.3/libgcc/emutls.c:159:7: warning: implicit declaration of function ‘calloc’ [-Wimplicit-function-declaration]
../../../../gcc-4.7.3/libgcc/emutls.c:159:13: warning: incompatible implicit declaration of built-in function ‘calloc’ [enabled by default]
../../../../gcc-4.7.3/libgcc/emutls.c:171:7: warning: implicit declaration of function ‘realloc’ [-Wimplicit-function-declaration]
../../../../gcc-4.7.3/libgcc/emutls.c:171:13: warning: incompatible implicit declaration of built-in function ‘realloc’ [enabled by default]
In file included from ../../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../../gcc-4.7.3/libgcc/emutls.c:31:
../../../../gcc-4.7.3/libgcc/emutls.c: At top level:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_merge_add.o -MT _gcov_merge_add.o -MD -MP -MF _gcov_merge_add.dep -DL_gcov_merge_add -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_merge_single.o -MT _gcov_merge_single.o -MD -MP -MF _gcov_merge_single.dep -DL_gcov_merge_single -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_merge_delta.o -MT _gcov_merge_delta.o -MD -MP -MF _gcov_merge_delta.dep -DL_gcov_merge_delta -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_fork.o -MT _gcov_fork.o -MD -MP -MF _gcov_fork.dep -DL_gcov_fork -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_execl.o -MT _gcov_execl.o -MD -MP -MF _gcov_execl.dep -DL_gcov_execl -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_execlp.o -MT _gcov_execlp.o -MD -MP -MF _gcov_execlp.dep -DL_gcov_execlp -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_execle.o -MT _gcov_execle.o -MD -MP -MF _gcov_execle.dep -DL_gcov_execle -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_execv.o -MT _gcov_execv.o -MD -MP -MF _gcov_execv.dep -DL_gcov_execv -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_execvp.o -MT _gcov_execvp.o -MD -MP -MF _gcov_execvp.dep -DL_gcov_execvp -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_execve.o -MT _gcov_execve.o -MD -MP -MF _gcov_execve.dep -DL_gcov_execve -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_interval_profiler.o -MT _gcov_interval_profiler.o -MD -MP -MF _gcov_interval_profiler.dep -DL_gcov_interval_profiler -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_pow2_profiler.o -MT _gcov_pow2_profiler.o -MD -MP -MF _gcov_pow2_profiler.dep -DL_gcov_pow2_profiler -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_one_value_profiler.o -MT _gcov_one_value_profiler.o -MD -MP -MF _gcov_one_value_profiler.dep -DL_gcov_one_value_profiler -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_indirect_call_profiler.o -MT _gcov_indirect_call_profiler.o -MD -MP -MF _gcov_indirect_call_profiler.dep -DL_gcov_indirect_call_profiler -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_average_profiler.o -MT _gcov_average_profiler.o -MD -MP -MF _gcov_average_profiler.dep -DL_gcov_average_profiler -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_ior_profiler.o -MT _gcov_ior_profiler.o -MD -MP -MF _gcov_ior_profiler.dep -DL_gcov_ior_profiler -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o _gcov_merge_ior.o -MT _gcov_merge_ior.o -MD -MP -MF _gcov_merge_ior.dep -DL_gcov_merge_ior -c ../../../../gcc-4.7.3/libgcc/libgcov.c
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector -Dinhibit_libc -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o crtbegin.o -MT crtbegin.o -MD -MP -MF crtbegin.dep -c ../../../../gcc-4.7.3/libgcc/crtstuff.c -DCRT_BEGIN
../../../../gcc-4.7.3/libgcc/crtstuff.c: In function ‘frame_dummy’:
../../../../gcc-4.7.3/libgcc/crtstuff.c:451:19: warning: array subscript is above array bounds [-Warray-bounds]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector -Dinhibit_libc -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o crtend.o -MT crtend.o -MD -MP -MF crtend.dep -c ../../../../gcc-4.7.3/libgcc/crtstuff.c -DCRT_END
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector -Dinhibit_libc -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o crtbeginS.o -MT crtbeginS.o -MD -MP -MF crtbeginS.dep -fPIC -c ../../../../gcc-4.7.3/libgcc/crtstuff.c -DCRT_BEGIN -DCRTSTUFFS_O
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector -Dinhibit_libc -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o crtendS.o -MT crtendS.o -MD -MP -MF crtendS.dep -fPIC -c ../../../../gcc-4.7.3/libgcc/crtstuff.c -DCRT_END -DCRTSTUFFS_O
../../../../gcc-4.7.3/libgcc/crtstuff.c: In function ‘frame_dummy’:
../../../../gcc-4.7.3/libgcc/crtstuff.c:451:19: warning: array subscript is above array bounds [-Warray-bounds]
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -o unwind-dw2-Os-4-200.o -MT unwind-dw2-Os-4-200.o -MD -MP -MF unwind-dw2-Os-4-200.dep -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -fexceptions -Os -c ../../../../gcc-4.7.3/libgcc/unwind-dw2.c
rm -f libgcc.a
objects="_ashiftrt.o _ashiftrt_n.o _ashiftlt.o _lshiftrt.o _movmem.o _movmem_i4.o _mulsi3.o _sdivsi3.o _sdivsi3_i4.o _udivsi3.o _udivsi3_i4.o _set_fpscr.o _div_table.o _udiv_qrnnd_16.o _ic_invalidate.o _ic_invalidate_array.o _muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _clrsbsi2.o _clrsbdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixtfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _fixunstfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatditf.o _floatundisf.o _floatundidf.o _floatundixf.o _floatunditf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o _pack_sf.o _unpack_sf.o _addsub_sf.o _mul_sf.o _div_sf.o _fpcmp_parts_sf.o _compare_sf.o _eq_sf.o _ne_sf.o _gt_sf.o _ge_sf.o _lt_sf.o _le_sf.o _unord_sf.o _si_to_sf.o _sf_to_si.o _negate_sf.o _make_sf.o _sf_to_df.o _thenan_sf.o _sf_to_usi.o _usi_to_sf.o _pack_df.o _unpack_df.o _addsub_df.o _mul_df.o _div_df.o _fpcmp_parts_df.o _compare_df.o _eq_df.o _ne_df.o _gt_df.o _ge_df.o _lt_df.o _le_df.o _unord_df.o _si_to_df.o _df_to_si.o _negate_df.o _make_df.o _df_to_sf.o _thenan_df.o _df_to_usi.o _usi_to_df.o fake-kos.o enable-execute-stack.o unwind-dw2.o unwind-dw2-fde.o unwind-sjlj.o unwind-c.o emutls.o"; \
if test -z "$objects"; then \
echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -c eh_dummy.c\
-o eh_dummy.o; \
objects=eh_dummy.o; \
fi; \
/opt/toolchains/dc/sh-elf/sh-elf/bin/ar rc libgcc.a $objects
rm -f libgcov.a
objects="_gcov.o _gcov_merge_add.o _gcov_merge_single.o _gcov_merge_delta.o _gcov_fork.o _gcov_execl.o _gcov_execlp.o _gcov_execle.o _gcov_execv.o _gcov_execvp.o _gcov_execve.o _gcov_interval_profiler.o _gcov_pow2_profiler.o _gcov_one_value_profiler.o _gcov_indirect_call_profiler.o _gcov_average_profiler.o _gcov_ior_profiler.o _gcov_merge_ior.o"; \
if test -z "$objects"; then \
echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -g -O2 -m4 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -mieee -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -mieee -I. -I. -I../../.././gcc -I../../../../gcc-4.7.3/libgcc -I../../../../gcc-4.7.3/libgcc/. -I../../../../gcc-4.7.3/libgcc/../gcc -I../../../../gcc-4.7.3/libgcc/../include -c eh_dummy.c\
-o eh_dummy.o; \
objects=eh_dummy.o; \
fi; \
/opt/toolchains/dc/sh-elf/sh-elf/bin/ar rc libgcov.a $objects
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib libgcov.a
In file included from ../../../../gcc-4.7.3/libgcc/gthr.h:150:0,
from ../../../../gcc-4.7.3/libgcc/unwind-dw2.c:38:
./gthr-default.h:236:12: warning: ‘__gthread_key_delete’ defined but not used [-Wunused-function]
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib libgcc.a
/opt/toolchains/dc/sh-elf/sh-elf/bin/ar rc libgcc-Os-4-200.a sdivsi3_i4i-Os-4-200.o udivsi3_i4i-Os-4-200.o unwind-dw2-Os-4-200.o
# Early copyback; see "all" above for the rationale. The
# early copy is necessary so that the gcc -B options find
# the right startup files when linking shared libgcc.
/bin/sh ../../../../gcc-4.7.3/libgcc/../mkinstalldirs ../../.././gcc/m4
parts="crtbegin.o crtend.o crt1.o crti.o crtn.o crtbeginS.o crtendS.o libic_invalidate_array_4-100.a libic_invalidate_array_4-200.a libic_invalidate_array_4a.a libgcc-Os-4-200.a libgcc-4-300.a"; \
for file in $parts; do \
rm -f ../../.././gcc/m4/$file; \
/usr/bin/install -c -m 644 $file ../../.././gcc/m4/; \
case $file in \
*.a) \
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib ../../.././gcc/m4/$file ;; \
esac; \
done
# Now that we have built all the objects, we need to copy
# them back to the GCC directory. Too many things (other
# in-tree libraries, and DejaGNU) know about the layout
# of the build tree, for now.
make install-leaf DESTDIR=../../.././gcc \
slibdir= libsubdir= MULTIOSDIR=m4
make[6]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libgcc'
/bin/sh ../../../../gcc-4.7.3/libgcc/../mkinstalldirs ../../.././gcc/m4
/usr/bin/install -c -m 644 libgcc.a ../../.././gcc/m4/
chmod 644 ../../.././gcc/m4/libgcc.a
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib ../../.././gcc/m4/libgcc.a
/usr/bin/install -c -m 644 libgcov.a ../../.././gcc/m4/
chmod 644 ../../.././gcc/m4/libgcov.a
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib ../../.././gcc/m4/libgcov.a
parts="crtbegin.o crtend.o crt1.o crti.o crtn.o crtbeginS.o crtendS.o libic_invalidate_array_4-100.a libic_invalidate_array_4-200.a libic_invalidate_array_4a.a libgcc-Os-4-200.a libgcc-4-300.a"; \
for file in $parts; do \
rm -f ../../.././gcc/m4/$file; \
/usr/bin/install -c -m 644 $file ../../.././gcc/m4/; \
case $file in \
*.a) \
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib ../../.././gcc/m4/$file ;; \
esac; \
done
make[6]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libgcc'
make[5]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libgcc'
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libgcc'
# Now that we have built all the objects, we need to copy
# them back to the GCC directory. Too many things (other
# in-tree libraries, and DejaGNU) know about the layout
# of the build tree, for now.
make install-leaf DESTDIR=../.././gcc \
slibdir= libsubdir= MULTIOSDIR=.
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libgcc'
/bin/sh ../../../gcc-4.7.3/libgcc/../mkinstalldirs ../.././gcc
/usr/bin/install -c -m 644 libgcc.a ../.././gcc/
chmod 644 ../.././gcc/libgcc.a
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib ../.././gcc/libgcc.a
/usr/bin/install -c -m 644 libgcov.a ../.././gcc/
chmod 644 ../.././gcc/libgcov.a
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib ../.././gcc/libgcov.a
parts="crtbegin.o crtend.o crt1.o crti.o crtn.o crtbeginS.o crtendS.o libic_invalidate_array_4-100.a libic_invalidate_array_4-200.a libic_invalidate_array_4a.a libgcc-Os-4-200.a libgcc-4-300.a"; \
for file in $parts; do \
rm -f ../.././gcc/$file; \
/usr/bin/install -c -m 644 $file ../.././gcc/; \
case $file in \
*.a) \
/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib ../.././gcc/$file ;; \
esac; \
done
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libgcc'
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libgcc'
Checking multilib configuration for libstdc++-v3...
Checking multilib configuration for libquadmath...
Checking multilib configuration for libobjc...
mkdir -p -- sh-elf/libstdc++-v3
mkdir -p -- sh-elf/libobjc
Configuring in sh-elf/libquadmath
Configuring in sh-elf/libstdc++-v3
Configuring in sh-elf/libobjc
configure: loading cache ./config.cache
configure: creating cache ./config.cache
configure: creating cache ./config.cache
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) sh-unknown-elf
checking target system type... (cached) sh-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... checking build system type... checking build system type... x86_64-unknown-cygwin
checking for --enable-version-specific-runtime-libs... no
checking host system type... x86_64-unknown-cygwin
checking host system type... sh-unknown-elf
checking target system type... sh-unknown-elf
checking target system type... yes
checking for sh-elf-strip... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for a thread-safe mkdir -p... (cached) /usr/bin/mkdir -p
checking for gawk... (cached) gawk
checking whether make sets $(MAKE)... (cached) yes
sh-unknown-elf
checking for sh-elf-gcc... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include
sh-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... checking for --enable-version-specific-runtime-libs... no
checking for style of include used by make... GNU
checking for sh-elf-gcc... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include
checking for suffix of object files... yes
checking for sh-elf-strip... /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for a thread-safe mkdir -p... checking for suffix of object files... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include accepts -g... (cached) yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include option to accept ISO C89... (cached) unsupported
checking dependency style of /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include ... (cached) gcc3
checking how to run the C preprocessor... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -E
o
checking whether we are using the GNU C compiler... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include accepts -g... checking for sh-elf-gcc... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for ANSI C header files... (cached) no
checking for sys/types.h... (cached) no
checking for sys/stat.h... (cached) no
yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include option to accept ISO C89... checking for stdlib.h... (cached) no
checking for string.h... (cached) no
checking for memory.h... (cached) no
checking for strings.h... (cached) no
checking for inttypes.h... (cached) no
none needed
checking for sh-elf-as... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/as
checking for sh-elf-ar... /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-ranlib... /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking for a BSD-compatible install... /usr/bin/install -c
checking whether to enable maintainer-specific portions of Makefiles... no
checking how to print strings... checking for stdint.h... (cached) no
printf
checking for a sed that does not truncate output... checking for suffix of object files... /usr/bin/sed
checking for unistd.h... (cached) no
checking for minix/config.h... (cached) no
checking whether it is safe to define __EXTENSIONS__... (cached) no
checking for makeinfo... (cached) makeinfo --split-size=5000000
checking for modern makeinfo... (cached) yes
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... checking how to print strings... /usr/bin/grep -E
checking for fgrep... printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
/usr/bin/grep -F
checking for ld used by /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include ... checking for fgrep... (cached) /usr/bin/grep -F
checking for ld used by /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include ... o
checking whether we are using the GNU C compiler... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm
checking the name lister (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm) interface... (cached) BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... (cached) 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
yes
checking for BSD- or MS-compatible name lister (nm)... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm
checking the name lister (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm) interface... checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld option to reload object files... (cached) -r
checking for sh-elf-objdump... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/objdump
checking how to recognize dependent libraries... (cached) unknown
checking for sh-elf-ar... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-strip... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for sh-elf-ranlib... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking command to parse /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm output from /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include object... (cached) failed
checking for dlfcn.h... (cached) no
checking for objdir... (cached) .libs
yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include accepts -g... yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include option to accept ISO C89... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include supports -fno-rtti -fno-exceptions... (cached) no
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include option to produce PIC... -fPIC -DPIC
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include PIC flag -fPIC -DPIC works... (cached) yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include static flag -static works... (cached) no
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include supports -c -o file.o... (cached) yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include supports -c -o file.o... (cached) yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... yes
none needed
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld option to reload object files... -r
checking for sh-elf-objdump... /opt/toolchains/dc/sh-elf/sh-elf/bin/objdump
checking how to recognize dependent libraries... unknown
checking for sh-elf-ar... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-strip... /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for sh-elf-ranlib... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking for gawk... gawk
checking command to parse /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm output from /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include object... yes
checking whether -lc should be explicitly linked in... (cached) yes
checking dynamic linker characteristics... checking whether we are using the GNU C++ compiler... no
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... no
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for sh-elf-gcc... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include
yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include accepts -g... yes
checking how to run the C preprocessor... checking whether we are using the GNU C compiler... (cached) yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include accepts -g... (cached) yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include option to accept ISO C89... (cached) unsupported
checking dependency style of /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include ... (cached) gcc3
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include and cc understand -c and -o together... (cached) yes
checking how to run the C preprocessor... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -E
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -E
failed
checking how to run the C preprocessor... checking for fenv.h... (cached) no
checking for langinfo.h... (cached) no
checking for grep that handles long lines and -e... checking for locale.h... (cached) no
/usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for wchar.h... (cached) no
checking whether ln -s works... yes
checking for sh-elf-as... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/as
checking for sh-elf-ar... /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-ranlib... /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking whether to enable maintainer-specific portions of Makefiles... no
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -E
checking for wctype.h... (cached) no
checking for limits.h... (cached) no
checking for ctype.h... (cached) no
checking for printf.h... (cached) no
checking for errno.h... (cached) no
checking whether hidden visibility is supported... configure: CPU config directory is cpu/sh
configure: OS config directory is os/generic
checking how to print strings... checking for ANSI C header files... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... yes
checking whether symbol versioning is supported... no
checking whether __float128 is supported... (cached) no
checking whether printf hooks are supported... /usr/bin/grep -F
checking for ld used by /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include ... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm
checking the name lister (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm) interface... no
checking whether nl_langinfo should be used... yes
checking for sys/types.h... no
checking whether nl_langinfo should be used for wide char locale info... BSD nm
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld option to reload object files... -r
checking for sh-elf-objdump... /opt/toolchains/dc/sh-elf/sh-elf/bin/objdump
checking how to recognize dependent libraries... unknown
checking for sh-elf-ar... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-strip... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for sh-elf-ranlib... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking command to parse /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm output from /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include object... yes
no
checking whether localeconv should be used... checking for sys/stat.h... yes
checking whether i18n number rewriting support for quadmath_snprintf should be added... yes
checking for stdlib.h... no
yes
checking generated-files-in-srcdir... no
checking for string.h... configure: creating ./config.status
yes
failed
checking for ANSI C header files... checking for memory.h... no
yes
checking for strings.h... checking for sys/types.h... yes
yes
checking for sys/stat.h... checking for inttypes.h... yes
yes
checking for stdlib.h... checking for stdint.h... yes
yes
checking for string.h... checking for unistd.h... yes
yes
checking for dlfcn.h... checking for memory.h... no
checking for objdir... .libs
no
checking for strings.h... yes
checking for inttypes.h... checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include supports -fno-rtti -fno-exceptions... yes
no
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include option to produce PIC... -fPIC -DPIC
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include PIC flag -fPIC -DPIC works... checking for stdint.h... yes
yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include static flag -static works... checking for unistd.h... no
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include supports -c -o file.o... yes
checking for dlfcn.h... yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include supports -c -o file.o... (cached) yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... no
checking for objdir... .libs
yes
checking whether -lc should be explicitly linked in... yes
checking dynamic linker characteristics... checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include supports -fno-rtti -fno-exceptions... no
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... no
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include and cc understand -c and -o together... no
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include option to produce PIC... -fPIC -DPIC
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include PIC flag -fPIC -DPIC works... yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include static flag -static works... no
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include supports -c -o file.o... yes
checking whether make sets $(MAKE)... yes
checking stdio.h usability... yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include supports -c -o file.o... (cached) yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... yes
checking stdio.h presence... yes
checking for stdio.h... yes
checking for ANSI C header files... (cached) yes
checking sched.h usability... yes
checking whether -lc should be explicitly linked in... yes
checking sched.h presence... yes
checking dynamic linker characteristics... yes
checking for sched.h... yes
checking whether the target supports thread-local storage... configure: error: Link tests are not allowed after GCC_NO_EXECUTABLES.
no
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... no
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... Makefile:10594: recipe for target 'configure-target-libobjc' failed
make[2]: *** [configure-target-libobjc] Error 1
make[2]: *** Waiting for unfinished jobs....
/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -E
checking for ld used by /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include ... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... no
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include option to produce PIC... -fPIC -DPIC
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include PIC flag -fPIC -DPIC works... config.status: creating Makefile
yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include static flag -static works... config.status: creating config.h
no
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include supports -c -o file.o... config.status: executing depfiles commands
yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include supports -c -o file.o... (cached) yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... no
checking dynamic linker characteristics... no
checking how to hardcode library paths into programs... immediate
config.status: executing libtool commands
checking for exception model to use... call frame
checking for compiler with PCH support... config.status: executing default-1 commands
yes
checking for enabled PCH... yes
checking for thread model used by GCC... kos
checking for atomic builtins for bool... no
checking for atomic builtins for short... no
checking for atomic builtins for int... no
checking for atomic builtins for long long... no
checking for ISO/IEC TR 24733 ... no
checking for __int128... no
checking for __float128... no
checking for g++ that supports -ffunction-sections -fdata-sections... yes
checking for underlying I/O to use... stdio
Adding multilib support to Makefile in ../../../gcc-4.7.3/libquadmath
multidirs=m4-nofpu m4
with_multisubdir=
Running configure in multilib subdirs m4-nofpu m4
pwd: /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libquadmath
Running configure in multilib subdir m4-nofpu
checking for C locale to use... newlib
checking for std::allocator base class... new
configure: "C" header strategy set to c_global
checking for enabled long long specializations... yes
checking wchar.h usability... pwd: /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf
yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for mbstate_t... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking for enabled wchar_t specializations... yes
checking for ISO C99 support in <math.h>... yes
checking tgmath.h usability... yes
checking tgmath.h presence... yes
checking for tgmath.h... yes
checking complex.h usability... yes
checking complex.h presence... yes
checking for complex.h... yes
checking for ISO C99 support in <complex.h>... no
checking for ISO C99 support in <stdio.h>... no
checking for ISO C99 support in <stdlib.h>... no
checking for ISO C99 support in <wchar.h>... configure: loading cache ./config.cache
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) sh-unknown-elf
checking target system type... (cached) sh-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... no
checking for fully enabled ISO C99 support... no
configure: Debug build flags set to -gdwarf-4 -g3 -O0
checking for additional debug build... no
configure: target-libgomp not built
checking for parallel mode support... no
checking for extra compiler flags for building...
checking for extern template support... yes
checking for custom python install directory... no
checking for -Werror... yes
checking for gets declaration... yes
checking for EOWNERDEAD... yes
yes
checking for ENOTRECOVERABLE... checking for sh-elf-strip... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for a thread-safe mkdir -p... (cached) /usr/bin/mkdir -p
checking for gawk... (cached) gawk
checking whether make sets $(MAKE)... (cached) yes
yes
checking for ENOLINK... checking for --enable-version-specific-runtime-libs... no
checking for style of include used by make... GNU
checking for sh-elf-gcc... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu
yes
checking for EPROTO... yes
checking for ENODATA... checking for suffix of object files... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu accepts -g... (cached) yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu option to accept ISO C89... (cached) unsupported
checking dependency style of /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu... (cached) gcc3
checking how to run the C preprocessor... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu -E
yes
checking for ENOSR... yes
checking for ENOSTR... checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for ANSI C header files... (cached) no
checking for sys/types.h... (cached) no
checking for sys/stat.h... (cached) no
checking for stdlib.h... (cached) no
yes
checking for ETIME... checking for string.h... (cached) no
checking for memory.h... (cached) no
checking for strings.h... (cached) no
checking for inttypes.h... (cached) no
yes
checking for EBADMSG... checking for stdint.h... (cached) no
checking for unistd.h... (cached) no
checking for minix/config.h... (cached) no
checking whether it is safe to define __EXTENSIONS__... (cached) no
checking for makeinfo... (cached) makeinfo --split-size=5000000
checking for modern makeinfo... (cached) yes
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for fgrep... (cached) /usr/bin/grep -F
checking for ld used by /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu... yes
checking for ECANCELED... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm
checking the name lister (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm) interface... (cached) BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... (cached) 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld option to reload object files... (cached) -r
checking for sh-elf-objdump... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/objdump
checking how to recognize dependent libraries... (cached) unknown
checking for sh-elf-ar... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-strip... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for sh-elf-ranlib... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking command to parse /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm output from /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu object... (cached) failed
checking for dlfcn.h... (cached) no
checking for objdir... (cached) .libs
yes
checking for EOVERFLOW... yes
checking for ENOTSUP... checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu supports -fno-rtti -fno-exceptions... (cached) no
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu option to produce PIC... -fPIC -DPIC
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu PIC flag -fPIC -DPIC works... (cached) yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu static flag -static works... (cached) no
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu supports -c -o file.o... (cached) yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu supports -c -o file.o... (cached) yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... yes
checking for EIDRM... yes
checking whether -lc should be explicitly linked in... (cached) yes
checking dynamic linker characteristics... yes
checking for ETXTBSY... no
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking for ECHILD... yes
checking if libtool supports shared libraries... no
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for sh-elf-gcc... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu
yes
checking for ENOSPC... checking whether we are using the GNU C compiler... (cached) yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu accepts -g... (cached) yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu option to accept ISO C89... (cached) unsupported
checking dependency style of /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu... (cached) gcc3
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu and cc understand -c and -o together... (cached) yes
checking how to run the C preprocessor... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu -E
yes
checking for EPERM... yes
checking for ETIMEDOUT... checking for fenv.h... (cached) no
checking for langinfo.h... (cached) no
checking for locale.h... (cached) no
yes
checking for EWOULDBLOCK... checking for wchar.h... (cached) no
checking for wctype.h... (cached) no
checking for limits.h... (cached) no
yes
checking for int64_t... checking for ctype.h... (cached) no
checking for printf.h... (cached) no
checking for errno.h... (cached) no
checking whether hidden visibility is supported... yes
checking for int64_t as long... yes
checking whether symbol versioning is supported... no
checking whether __float128 is supported... (cached) no
checking whether printf hooks are supported... checking for int64_t as long long... no
checking whether nl_langinfo should be used... yes
checking for LFS support... no
checking whether nl_langinfo should be used for wide char locale info... no
checking sys/ioctl.h usability... no
checking whether localeconv should be used... no
checking sys/ioctl.h presence... yes
checking whether i18n number rewriting support for quadmath_snprintf should be added... no
checking for sys/ioctl.h... no
checking sys/filio.h usability... no
no
checking sys/filio.h presence... checking generated-files-in-srcdir... no
no
checking for sys/filio.h... no
checking for poll... configure: creating ./config.status
no
checking for S_ISREG or S_IFREG... S_ISREG
checking sys/uio.h usability... no
checking sys/uio.h presence... no
checking for sys/uio.h... no
checking for writev... no
checking for complex.h... (cached) yes
checking for ISO C99 support to TR1 in <complex.h>... no
checking for ISO C99 support to TR1 in <ctype.h>... yes
checking fenv.h usability... no
checking fenv.h presence... no
checking for fenv.h... no
no
checking for ISO C99 support to TR1 in <stdint.h>... yes
checking for ISO C99 support to TR1 in <math.h>... no
checking for ISO C99 support to TR1 in <inttypes.h>... yes
checking for wchar_t ISO C99 support to TR1 in <inttypes.h>... yes
checking stdbool.h usability... yes
checking stdbool.h presence... yes
checking for stdbool.h... yes
checking stdalign.h usability... yes
checking stdalign.h presence... yes
checking for stdalign.h... yes
checking for the value of EOF... -1
checking for the value of SEEK_CUR... 1
checking for the value of SEEK_END... 2
checking for gettimeofday... checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for gettimeofday... yes
checking for clock_gettime, nanosleep and sched_yield... no
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking sys/sysinfo.h usability... no
checking sys/sysinfo.h presence... no
checking for sys/sysinfo.h... no
checking for get_nprocs... config.status: creating Makefile
no
checking for unistd.h... (cached) yes
checking for _SC_NPROCESSORS_ONLN... config.status: creating config.h
yes
checking for _SC_NPROC_ONLN... config.status: executing depfiles commands
no
checking for pthreads_num_processors_np... config.status: executing libtool commands
no
checking for hw.ncpu sysctl... config.status: executing default-1 commands
no
checking endian.h usability... no
checking endian.h presence... no
checking for endian.h... no
checking execinfo.h usability... no
checking execinfo.h presence... no
checking for execinfo.h... no
checking float.h usability... Adding multilib support to Makefile in ../../../../gcc-4.7.3/libquadmath
with_multisubdir=m4-nofpu
yes
checking float.h presence... yes
checking for float.h... yes
checking fp.h usability... Running configure in multilib subdir m4
pwd: /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf
no
checking fp.h presence... no
checking for fp.h... no
checking ieeefp.h usability... yes
checking ieeefp.h presence... yes
checking for ieeefp.h... yes
checking for inttypes.h... (cached) yes
checking for locale.h... (cached) yes
checking machine/endian.h usability... yes
checking machine/endian.h presence... yes
checking for machine/endian.h... yes
checking machine/param.h usability... yes
checking machine/param.h presence... yes
checking for machine/param.h... yes
checking nan.h usability... no
checking nan.h presence... no
checking for nan.h... no
checking for stdint.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking sys/ipc.h usability... no
checking sys/ipc.h presence... no
checking for sys/ipc.h... no
checking sys/isa_defs.h usability... no
checking sys/isa_defs.h presence... configure: loading cache ./config.cache
checking build system type... (cached) x86_64-unknown-cygwin
checking host system type... (cached) sh-unknown-elf
checking target system type... (cached) sh-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... no
checking for sys/isa_defs.h... no
checking sys/machine.h usability... no
checking sys/machine.h presence... no
checking for sys/machine.h... no
checking sys/param.h usability... yes
yes
checking sys/param.h presence... checking for sh-elf-strip... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for a thread-safe mkdir -p... (cached) /usr/bin/mkdir -p
checking for gawk... (cached) gawk
checking whether make sets $(MAKE)... (cached) yes
yes
checking for sys/param.h... yes
checking for --enable-version-specific-runtime-libs... no
checking for style of include used by make... checking sys/resource.h usability... GNU
checking for sh-elf-gcc... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4
yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking sys/sem.h usability... checking for suffix of object files... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 accepts -g... (cached) yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 option to accept ISO C89... (cached) unsupported
checking dependency style of /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4... (cached) gcc3
checking how to run the C preprocessor... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 -E
no
checking sys/sem.h presence... checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for ANSI C header files... (cached) no
no
checking for sys/sem.h... no
checking for sys/types.h... (cached) no
checking for sys/stat.h... (cached) yes
checking for sys/stat.h... (cached) no
checking for stdlib.h... (cached) no
checking for sys/time.h... (cached) yes
checking for string.h... (cached) no
checking for memory.h... (cached) no
checking for strings.h... (cached) no
checking for sys/types.h... (cached) yes
checking for inttypes.h... (cached) no
checking for stdint.h... (cached) no
checking for unistd.h... (cached) no
checking for minix/config.h... (cached) no
checking whether it is safe to define __EXTENSIONS__... (cached) no
checking for makeinfo... (cached) makeinfo --split-size=5000000
checking for modern makeinfo... (cached) yes
checking for unistd.h... (cached) yes
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for fgrep... (cached) /usr/bin/grep -F
checking for ld used by /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4... checking for wchar.h... (cached) yes
(cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm
checking the name lister (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm) interface... (cached) BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... (cached) 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for wctype.h... (cached) yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld option to reload object files... (cached) -r
checking for sh-elf-objdump... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/objdump
checking how to recognize dependent libraries... (cached) unknown
checking for sh-elf-ar... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-strip... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for sh-elf-ranlib... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking command to parse /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm output from /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 object... (cached) failed
checking for dlfcn.h... (cached) no
checking for objdir... (cached) .libs
looking for a compliant stdint.h in stdint.h, checking for uintmax_t... checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 supports -fno-rtti -fno-exceptions... (cached) no
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 option to produce PIC... -fPIC -DPIC
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 PIC flag -fPIC -DPIC works... (cached) yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 static flag -static works... (cached) no
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 supports -c -o file.o... (cached) yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 supports -c -o file.o... (cached) yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... (cached) yes
checking dynamic linker characteristics... yes
checking for uintptr_t... no
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... no
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for sh-elf-gcc... (cached) /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4
yes
checking for int_least32_t... checking whether we are using the GNU C compiler... (cached) yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 accepts -g... (cached) yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 option to accept ISO C89... (cached) unsupported
checking dependency style of /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4... (cached) gcc3
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 and cc understand -c and -o together... (cached) yes
checking how to run the C preprocessor... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 -E
yes
checking for int_fast32_t... checking for fenv.h... (cached) no
checking for langinfo.h... (cached) no
checking for locale.h... (cached) no
checking for wchar.h... (cached) no
checking for wctype.h... (cached) no
checking for limits.h... (cached) no
checking for ctype.h... (cached) no
checking for printf.h... (cached) no
checking for errno.h... (cached) no
checking whether hidden visibility is supported... yes
checking for uint64_t... yes
checking whether symbol versioning is supported... no
checking whether __float128 is supported... (cached) no
checking whether printf hooks are supported... no
checking whether nl_langinfo should be used... yes
checking what to include in include/gstdint.h... stdint.h (already complete)
checking for GNU c++filt... no
checking whether nl_langinfo should be used for wide char locale info... /usr/bin/c++filt
checking whether the target supports .symver directive... no
checking whether localeconv should be used... yes
configure: versioning on shared library symbols is no
checking for size_t as unsigned int... yes
checking whether i18n number rewriting support for quadmath_snprintf should be added... yes
checking for ptrdiff_t as int... no
yes
checking whether the target supports hidden visibility... checking generated-files-in-srcdir... no
yes
configure: visibility supported: yes
checking whether it can be safely assumed that mutex_timedlock is available... configure: creating ./config.status
yes
checking for gthreads library... yes
checking for makeinfo... makeinfo --split-size=5000000
checking for modern makeinfo... yes
checking for doxygen... yes
checking for dot... no
checking for xsltproc... no
checking for xmllint... no
checking for docbook stylesheets for documentation creation... no
checking for local stylesheet directory... no
checking for epub3 stylesheets for documentation creation... no
checking for dblatex... no
checking for pdflatex... no
configure: updating cache ./config.cache
checking for gxx-include-dir... no
checking for --enable-version-specific-runtime-libs... no
checking for install location... ${prefix}/${target_alias}/include/c++/${gcc_version}
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
Adding multilib support to Makefile in ../../../../gcc-4.7.3/libquadmath
with_multisubdir=m4
config.status: creating Makefile
config.status: creating scripts/testsuite_flags
config.status: creating scripts/extract_symvers
config.status: creating doc/xsl/customization.xsl
config.status: creating include/Makefile
Adding multilib support to include/Makefile in ../../../gcc-4.7.3/libstdc++-v3
multidirs=m4-nofpu m4
with_multisubdir=
config.status: creating libsupc++/Makefile
Adding multilib support to libsupc++/Makefile in ../../../gcc-4.7.3/libstdc++-v3
multidirs=m4-nofpu m4
with_multisubdir=
config.status: creating python/Makefile
Adding multilib support to python/Makefile in ../../../gcc-4.7.3/libstdc++-v3
multidirs=m4-nofpu m4
with_multisubdir=
config.status: creating src/Makefile
Adding multilib support to src/Makefile in ../../../gcc-4.7.3/libstdc++-v3
multidirs=m4-nofpu m4
with_multisubdir=
config.status: creating src/c++98/Makefile
Adding multilib support to src/c++98/Makefile in ../../../gcc-4.7.3/libstdc++-v3
multidirs=m4-nofpu m4
with_multisubdir=
config.status: creating src/c++11/Makefile
Adding multilib support to src/c++11/Makefile in ../../../gcc-4.7.3/libstdc++-v3
multidirs=m4-nofpu m4
with_multisubdir=
config.status: creating doc/Makefile
Adding multilib support to doc/Makefile in ../../../gcc-4.7.3/libstdc++-v3
multidirs=m4-nofpu m4
with_multisubdir=
config.status: creating po/Makefile
Adding multilib support to po/Makefile in ../../../gcc-4.7.3/libstdc++-v3
multidirs=m4-nofpu m4
with_multisubdir=
config.status: creating testsuite/Makefile
Adding multilib support to testsuite/Makefile in ../../../gcc-4.7.3/libstdc++-v3
multidirs=m4-nofpu m4
with_multisubdir=
config.status: creating config.h
config.status: executing default-1 commands
Adding multilib support to Makefile in ../../../gcc-4.7.3/libstdc++-v3
multidirs=m4-nofpu m4
with_multisubdir=
Running configure in multilib subdirs m4-nofpu m4
pwd: /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3
Running configure in multilib subdir m4-nofpu
pwd: /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf
configure: creating cache ./config.cache
checking build system type... x86_64-unknown-cygwin
checking host system type... sh-unknown-elf
checking target system type... sh-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for sh-elf-strip... /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for sh-elf-gcc... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu accepts -g... yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu option to accept ISO C89... none needed
checking whether we are using the GNU C++ compiler... yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu accepts -g... yes
checking how to run the C preprocessor... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking whether ln -s works... yes
checking for sh-elf-as... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/as
checking for sh-elf-ar... /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-ranlib... /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking whether to enable maintainer-specific portions of Makefiles... no
configure: CPU config directory is cpu/sh
configure: OS config directory is os/generic
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm
checking the name lister (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm) interface... BSD nm
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld option to reload object files... -r
checking for sh-elf-objdump... /opt/toolchains/dc/sh-elf/sh-elf/bin/objdump
checking how to recognize dependent libraries... unknown
checking for sh-elf-ar... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-strip... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for sh-elf-ranlib... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking command to parse /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm output from /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu object... failed
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... no
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... no
checking for objdir... .libs
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu supports -fno-rtti -fno-exceptions... no
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu option to produce PIC... -fPIC -DPIC
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu PIC flag -fPIC -DPIC works... yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu static flag -static works... no
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu supports -c -o file.o... yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu supports -c -o file.o... (cached) yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking dynamic linker characteristics... no
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... no
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu -E
checking for ld used by /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... no
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu option to produce PIC... -fPIC -DPIC
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu PIC flag -fPIC -DPIC works... yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu static flag -static works... no
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu supports -c -o file.o... yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu supports -c -o file.o... (cached) yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4-nofpu linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... no
checking dynamic linker characteristics... no
checking how to hardcode library paths into programs... immediate
checking for exception model to use... call frame
checking for compiler with PCH support... yes
checking for enabled PCH... yes
checking for thread model used by GCC... kos
checking for atomic builtins for bool... no
checking for atomic builtins for short... no
checking for atomic builtins for int... no
checking for atomic builtins for long long... no
checking for ISO/IEC TR 24733 ... no
checking for __int128... no
checking for __float128... no
checking for g++ that supports -ffunction-sections -fdata-sections... yes
checking for underlying I/O to use... stdio
checking for C locale to use... newlib
checking for std::allocator base class... new
configure: "C" header strategy set to c_global
checking for enabled long long specializations... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for mbstate_t... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking for enabled wchar_t specializations... yes
checking for ISO C99 support in <math.h>... yes
checking tgmath.h usability... yes
checking tgmath.h presence... yes
checking for tgmath.h... yes
checking complex.h usability... yes
checking complex.h presence... yes
checking for complex.h... yes
checking for ISO C99 support in <complex.h>... no
checking for ISO C99 support in <stdio.h>... no
checking for ISO C99 support in <stdlib.h>... no
checking for ISO C99 support in <wchar.h>... no
checking for fully enabled ISO C99 support... no
configure: Debug build flags set to -gdwarf-4 -g3 -O0
checking for additional debug build... no
configure: target-libgomp not built
checking for parallel mode support... no
checking for extra compiler flags for building...
checking for extern template support... yes
checking for custom python install directory... no
checking for -Werror... yes
checking for gets declaration... yes
checking for EOWNERDEAD... yes
checking for ENOTRECOVERABLE... yes
checking for ENOLINK... yes
checking for EPROTO... yes
checking for ENODATA... yes
checking for ENOSR... yes
checking for ENOSTR... yes
checking for ETIME... yes
checking for EBADMSG... yes
checking for ECANCELED... yes
checking for EOVERFLOW... yes
checking for ENOTSUP... yes
checking for EIDRM... yes
checking for ETXTBSY... yes
checking for ECHILD... yes
checking for ENOSPC... yes
checking for EPERM... yes
checking for ETIMEDOUT... yes
checking for EWOULDBLOCK... yes
checking for int64_t... yes
checking for int64_t as long... checking for int64_t as long long... yes
checking for LFS support... no
checking sys/ioctl.h usability... no
checking sys/ioctl.h presence... no
checking for sys/ioctl.h... no
checking sys/filio.h usability... no
checking sys/filio.h presence... no
checking for sys/filio.h... no
checking for poll... no
checking for S_ISREG or S_IFREG... S_ISREG
checking sys/uio.h usability... no
checking sys/uio.h presence... no
checking for sys/uio.h... no
checking for writev... no
checking for complex.h... (cached) yes
checking for ISO C99 support to TR1 in <complex.h>... no
checking for ISO C99 support to TR1 in <ctype.h>... yes
checking fenv.h usability... no
checking fenv.h presence... no
checking for fenv.h... no
no
checking for ISO C99 support to TR1 in <stdint.h>... yes
checking for ISO C99 support to TR1 in <math.h>... no
checking for ISO C99 support to TR1 in <inttypes.h>... yes
checking for wchar_t ISO C99 support to TR1 in <inttypes.h>... yes
checking stdbool.h usability... yes
checking stdbool.h presence... yes
checking for stdbool.h... yes
checking stdalign.h usability... yes
checking stdalign.h presence... yes
checking for stdalign.h... yes
checking for the value of EOF... -1
checking for the value of SEEK_CUR... 1
checking for the value of SEEK_END... 2
checking for gettimeofday... checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for gettimeofday... yes
checking for clock_gettime, nanosleep and sched_yield... no
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking sys/sysinfo.h usability... no
checking sys/sysinfo.h presence... no
checking for sys/sysinfo.h... no
checking for get_nprocs... no
checking for unistd.h... (cached) yes
checking for _SC_NPROCESSORS_ONLN... yes
checking for _SC_NPROC_ONLN... no
checking for pthreads_num_processors_np... no
checking for hw.ncpu sysctl... no
checking endian.h usability... no
checking endian.h presence... no
checking for endian.h... no
checking execinfo.h usability... no
checking execinfo.h presence... no
checking for execinfo.h... no
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking fp.h usability... no
checking fp.h presence... no
checking for fp.h... no
checking ieeefp.h usability... yes
checking ieeefp.h presence... yes
checking for ieeefp.h... yes
checking for inttypes.h... (cached) yes
checking for locale.h... (cached) yes
checking machine/endian.h usability... yes
checking machine/endian.h presence... yes
checking for machine/endian.h... yes
checking machine/param.h usability... yes
checking machine/param.h presence... yes
checking for machine/param.h... yes
checking nan.h usability... no
checking nan.h presence... no
checking for nan.h... no
checking for stdint.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking sys/ipc.h usability... no
checking sys/ipc.h presence... no
checking for sys/ipc.h... no
checking sys/isa_defs.h usability... no
checking sys/isa_defs.h presence... no
checking for sys/isa_defs.h... no
checking sys/machine.h usability... no
checking sys/machine.h presence... no
checking for sys/machine.h... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking sys/sem.h usability... no
checking sys/sem.h presence... no
checking for sys/sem.h... no
checking for sys/stat.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking for wchar.h... (cached) yes
checking for wctype.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 include/gstdint.h... stdint.h (already complete)
checking for GNU c++filt... /usr/bin/c++filt
checking whether the target supports .symver directive... yes
configure: versioning on shared library symbols is no
checking for size_t as unsigned int... yes
checking for ptrdiff_t as int... yes
checking whether the target supports hidden visibility... yes
configure: visibility supported: yes
checking whether it can be safely assumed that mutex_timedlock is available... yes
checking for gthreads library... yes
checking for makeinfo... makeinfo --split-size=5000000
checking for modern makeinfo... yes
checking for doxygen... yes
checking for dot... no
checking for xsltproc... no
checking for xmllint... no
checking for docbook stylesheets for documentation creation... no
checking for local stylesheet directory... no
checking for epub3 stylesheets for documentation creation... no
checking for dblatex... no
checking for pdflatex... no
configure: updating cache ./config.cache
checking for gxx-include-dir... no
checking for --enable-version-specific-runtime-libs... no
checking for install location... ${prefix}/${target_alias}/include/c++/${gcc_version}
configure: creating ./config.status
config.status: creating Makefile
config.status: creating scripts/testsuite_flags
config.status: creating scripts/extract_symvers
config.status: creating doc/xsl/customization.xsl
config.status: creating include/Makefile
Adding multilib support to include/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4-nofpu
config.status: creating libsupc++/Makefile
Adding multilib support to libsupc++/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4-nofpu
config.status: creating python/Makefile
Adding multilib support to python/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4-nofpu
config.status: creating src/Makefile
Adding multilib support to src/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4-nofpu
config.status: creating src/c++98/Makefile
Adding multilib support to src/c++98/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4-nofpu
config.status: creating src/c++11/Makefile
Adding multilib support to src/c++11/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4-nofpu
config.status: creating doc/Makefile
Adding multilib support to doc/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4-nofpu
config.status: creating po/Makefile
Adding multilib support to po/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4-nofpu
config.status: creating testsuite/Makefile
Adding multilib support to testsuite/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4-nofpu
config.status: creating config.h
config.status: executing default-1 commands
Adding multilib support to Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4-nofpu
config.status: executing libtool commands
config.status: executing include/gstdint.h commands
config.status: executing generate-headers commands
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/include'
echo timestamp > stamp-pb
Makefile:1432: recipe for target 'stamp-parallel' failed
make[3]: [stamp-parallel] Error 1 (ignored)
echo timestamp > stamp-host
echo 0 > stamp-namespace-version
echo 1 > stamp-visibility
echo 1 > stamp-extern-template
sed -e '/^#pragma/b' \
-e '/^#/s/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_][ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*\)/_GLIBCXX_\1/g' \
-e 's/_GLIBCXX_SUPPORTS_WEAK/__GXX_WEAK__/g' \
-e 's,^#include "\(.*\)",#include <bits/\1>,g' \
< /home/User/kallistios/utils/dc-chain/gcc-4.7.3/libstdc++-v3/../libgcc/gthr.h > sh-elf/bits/gthr.h
sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
-e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCXX_\1/g' \
< /home/User/kallistios/utils/dc-chain/gcc-4.7.3/libstdc++-v3/../libgcc/gthr-single.h > sh-elf/bits/gthr-single.h
sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
-e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCXX_\1/g' \
-e 's/SUPPORTS_WEAK/__GXX_WEAK__/g' \
-e 's/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*USE_WEAK\)/_GLIBCXX_\1/g' \
< /home/User/kallistios/utils/dc-chain/gcc-4.7.3/libstdc++-v3/../libgcc/gthr-posix.h > sh-elf/bits/gthr-posix.h
sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
-e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCXX_\1/g' \
-e 's/SUPPORTS_WEAK/__GXX_WEAK__/g' \
-e 's/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*USE_WEAK\)/_GLIBCXX_\1/g' \
-e 's,^#include "\(.*\)",#include <bits/\1>,g' \
< /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/../libgcc/gthr-default.h > sh-elf/bits/gthr-default.h
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4-nofpu/libstdc++-v3/include'
Running configure in multilib subdir m4
pwd: /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf
configure: creating cache ./config.cache
checking build system type... x86_64-unknown-cygwin
checking host system type... sh-unknown-elf
checking target system type... sh-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for sh-elf-strip... /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for sh-elf-gcc... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 accepts -g... yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 option to accept ISO C89... none needed
checking whether we are using the GNU C++ compiler... yes
checking whether /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 accepts -g... yes
checking how to run the C preprocessor... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking whether ln -s works... yes
checking for sh-elf-as... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/as
checking for sh-elf-ar... /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-ranlib... /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking whether to enable maintainer-specific portions of Makefiles... no
configure: CPU config directory is cpu/sh
configure: OS config directory is os/generic
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm
checking the name lister (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm) interface... BSD nm
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld option to reload object files... -r
checking for sh-elf-objdump... /opt/toolchains/dc/sh-elf/sh-elf/bin/objdump
checking how to recognize dependent libraries... unknown
checking for sh-elf-ar... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for sh-elf-strip... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for sh-elf-ranlib... (cached) /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking command to parse /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/nm output from /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 object... failed
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... no
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... no
checking for objdir... .libs
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 supports -fno-rtti -fno-exceptions... no
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 option to produce PIC... -fPIC -DPIC
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 PIC flag -fPIC -DPIC works... yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 static flag -static works... no
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 supports -c -o file.o... yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 supports -c -o file.o... (cached) yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/ -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking dynamic linker characteristics... no
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... no
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 -E
checking for ld used by /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4... /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld
checking if the linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) is GNU ld... yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... no
checking for /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 option to produce PIC... -fPIC -DPIC
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 PIC flag -fPIC -DPIC works... yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 static flag -static works... no
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 supports -c -o file.o... yes
checking if /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 supports -c -o file.o... (cached) yes
checking whether the /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -shared-libgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc -nostdinc++ -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src -L/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/src/.libs -B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include -m4 linker (/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/collect-ld) supports shared libraries... no
checking dynamic linker characteristics... no
checking how to hardcode library paths into programs... immediate
checking for exception model to use... call frame
checking for compiler with PCH support... yes
checking for enabled PCH... yes
checking for thread model used by GCC... kos
checking for atomic builtins for bool... no
checking for atomic builtins for short... no
checking for atomic builtins for int... no
checking for atomic builtins for long long... no
checking for ISO/IEC TR 24733 ... no
checking for __int128... no
checking for __float128... no
checking for g++ that supports -ffunction-sections -fdata-sections... yes
checking for underlying I/O to use... stdio
checking for C locale to use... newlib
checking for std::allocator base class... new
configure: "C" header strategy set to c_global
checking for enabled long long specializations... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for mbstate_t... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking for enabled wchar_t specializations... yes
checking for ISO C99 support in <math.h>... yes
checking tgmath.h usability... yes
checking tgmath.h presence... yes
checking for tgmath.h... yes
checking complex.h usability... yes
checking complex.h presence... yes
checking for complex.h... yes
checking for ISO C99 support in <complex.h>... no
checking for ISO C99 support in <stdio.h>... no
checking for ISO C99 support in <stdlib.h>... no
checking for ISO C99 support in <wchar.h>... no
checking for fully enabled ISO C99 support... no
configure: Debug build flags set to -gdwarf-4 -g3 -O0
checking for additional debug build... no
configure: target-libgomp not built
checking for parallel mode support... no
checking for extra compiler flags for building...
checking for extern template support... yes
checking for custom python install directory... no
checking for -Werror... yes
checking for gets declaration... yes
checking for EOWNERDEAD... yes
checking for ENOTRECOVERABLE... yes
checking for ENOLINK... yes
checking for EPROTO... yes
checking for ENODATA... yes
checking for ENOSR... yes
checking for ENOSTR... yes
checking for ETIME... yes
checking for EBADMSG... yes
checking for ECANCELED... yes
checking for EOVERFLOW... yes
checking for ENOTSUP... yes
checking for EIDRM... yes
checking for ETXTBSY... yes
checking for ECHILD... yes
checking for ENOSPC... yes
checking for EPERM... yes
checking for ETIMEDOUT... yes
checking for EWOULDBLOCK... yes
checking for int64_t... yes
checking for int64_t as long... checking for int64_t as long long... yes
checking for LFS support... no
checking sys/ioctl.h usability... no
checking sys/ioctl.h presence... no
checking for sys/ioctl.h... no
checking sys/filio.h usability... no
checking sys/filio.h presence... no
checking for sys/filio.h... no
checking for poll... no
checking for S_ISREG or S_IFREG... S_ISREG
checking sys/uio.h usability... no
checking sys/uio.h presence... no
checking for sys/uio.h... no
checking for writev... no
checking for complex.h... (cached) yes
checking for ISO C99 support to TR1 in <complex.h>... no
checking for ISO C99 support to TR1 in <ctype.h>... yes
checking fenv.h usability... no
checking fenv.h presence... no
checking for fenv.h... no
no
checking for ISO C99 support to TR1 in <stdint.h>... yes
checking for ISO C99 support to TR1 in <math.h>... no
checking for ISO C99 support to TR1 in <inttypes.h>... yes
checking for wchar_t ISO C99 support to TR1 in <inttypes.h>... yes
checking stdbool.h usability... yes
checking stdbool.h presence... yes
checking for stdbool.h... yes
checking stdalign.h usability... yes
checking stdalign.h presence... yes
checking for stdalign.h... yes
checking for the value of EOF... -1
checking for the value of SEEK_CUR... 1
checking for the value of SEEK_END... 2
checking for gettimeofday... checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for gettimeofday... yes
checking for clock_gettime, nanosleep and sched_yield... no
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking sys/sysinfo.h usability... no
checking sys/sysinfo.h presence... no
checking for sys/sysinfo.h... no
checking for get_nprocs... no
checking for unistd.h... (cached) yes
checking for _SC_NPROCESSORS_ONLN... yes
checking for _SC_NPROC_ONLN... no
checking for pthreads_num_processors_np... no
checking for hw.ncpu sysctl... no
checking endian.h usability... no
checking endian.h presence... no
checking for endian.h... no
checking execinfo.h usability... no
checking execinfo.h presence... no
checking for execinfo.h... no
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking fp.h usability... no
checking fp.h presence... no
checking for fp.h... no
checking ieeefp.h usability... yes
checking ieeefp.h presence... yes
checking for ieeefp.h... yes
checking for inttypes.h... (cached) yes
checking for locale.h... (cached) yes
checking machine/endian.h usability... yes
checking machine/endian.h presence... yes
checking for machine/endian.h... yes
checking machine/param.h usability... yes
checking machine/param.h presence... yes
checking for machine/param.h... yes
checking nan.h usability... no
checking nan.h presence... no
checking for nan.h... no
checking for stdint.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking sys/ipc.h usability... no
checking sys/ipc.h presence... no
checking for sys/ipc.h... no
checking sys/isa_defs.h usability... no
checking sys/isa_defs.h presence... no
checking for sys/isa_defs.h... no
checking sys/machine.h usability... no
checking sys/machine.h presence... no
checking for sys/machine.h... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking sys/sem.h usability... no
checking sys/sem.h presence... no
checking for sys/sem.h... no
checking for sys/stat.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking for wchar.h... (cached) yes
checking for wctype.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 include/gstdint.h... stdint.h (already complete)
checking for GNU c++filt... /usr/bin/c++filt
checking whether the target supports .symver directive... yes
configure: versioning on shared library symbols is no
checking for size_t as unsigned int... yes
checking for ptrdiff_t as int... yes
checking whether the target supports hidden visibility... yes
configure: visibility supported: yes
checking whether it can be safely assumed that mutex_timedlock is available... yes
checking for gthreads library... yes
checking for makeinfo... makeinfo --split-size=5000000
checking for modern makeinfo... yes
checking for doxygen... yes
checking for dot... no
checking for xsltproc... no
checking for xmllint... no
checking for docbook stylesheets for documentation creation... no
checking for local stylesheet directory... no
checking for epub3 stylesheets for documentation creation... no
checking for dblatex... no
checking for pdflatex... no
configure: updating cache ./config.cache
checking for gxx-include-dir... no
checking for --enable-version-specific-runtime-libs... no
checking for install location... ${prefix}/${target_alias}/include/c++/${gcc_version}
configure: creating ./config.status
config.status: creating Makefile
config.status: creating scripts/testsuite_flags
config.status: creating scripts/extract_symvers
config.status: creating doc/xsl/customization.xsl
config.status: creating include/Makefile
Adding multilib support to include/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4
config.status: creating libsupc++/Makefile
Adding multilib support to libsupc++/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4
config.status: creating python/Makefile
Adding multilib support to python/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4
config.status: creating src/Makefile
Adding multilib support to src/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4
config.status: creating src/c++98/Makefile
Adding multilib support to src/c++98/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4
config.status: creating src/c++11/Makefile
Adding multilib support to src/c++11/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4
config.status: creating doc/Makefile
Adding multilib support to doc/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4
config.status: creating po/Makefile
Adding multilib support to po/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4
config.status: creating testsuite/Makefile
Adding multilib support to testsuite/Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4
config.status: creating config.h
config.status: executing default-1 commands
Adding multilib support to Makefile in ../../../../gcc-4.7.3/libstdc++-v3
with_multisubdir=m4
config.status: executing libtool commands
config.status: executing include/gstdint.h commands
config.status: executing generate-headers commands
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/include'
echo timestamp > stamp-pb
Makefile:1432: recipe for target 'stamp-parallel' failed
make[3]: [stamp-parallel] Error 1 (ignored)
echo timestamp > stamp-host
echo 0 > stamp-namespace-version
echo 1 > stamp-visibility
echo 1 > stamp-extern-template
sed -e '/^#pragma/b' \
-e '/^#/s/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_][ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*\)/_GLIBCXX_\1/g' \
-e 's/_GLIBCXX_SUPPORTS_WEAK/__GXX_WEAK__/g' \
-e 's,^#include "\(.*\)",#include <bits/\1>,g' \
< /home/User/kallistios/utils/dc-chain/gcc-4.7.3/libstdc++-v3/../libgcc/gthr.h > sh-elf/bits/gthr.h
sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
-e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCXX_\1/g' \
< /home/User/kallistios/utils/dc-chain/gcc-4.7.3/libstdc++-v3/../libgcc/gthr-single.h > sh-elf/bits/gthr-single.h
sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
-e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCXX_\1/g' \
-e 's/SUPPORTS_WEAK/__GXX_WEAK__/g' \
-e 's/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*USE_WEAK\)/_GLIBCXX_\1/g' \
< /home/User/kallistios/utils/dc-chain/gcc-4.7.3/libstdc++-v3/../libgcc/gthr-posix.h > sh-elf/bits/gthr-posix.h
sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
-e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCXX_\1/g' \
-e 's/SUPPORTS_WEAK/__GXX_WEAK__/g' \
-e 's/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*USE_WEAK\)/_GLIBCXX_\1/g' \
-e 's,^#include "\(.*\)",#include <bits/\1>,g' \
< /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/../libgcc/gthr-default.h > sh-elf/bits/gthr-default.h
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/m4/libstdc++-v3/include'
config.status: executing libtool commands
config.status: executing include/gstdint.h commands
config.status: executing generate-headers commands
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/include'
echo timestamp > stamp-pb
Makefile:1432: recipe for target 'stamp-parallel' failed
make[3]: [stamp-parallel] Error 1 (ignored)
echo timestamp > stamp-host
echo 0 > stamp-namespace-version
echo 1 > stamp-visibility
echo 1 > stamp-extern-template
sed -e '/^#pragma/b' \
-e '/^#/s/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_][ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*\)/_GLIBCXX_\1/g' \
-e 's/_GLIBCXX_SUPPORTS_WEAK/__GXX_WEAK__/g' \
-e 's,^#include "\(.*\)",#include <bits/\1>,g' \
< /home/User/kallistios/utils/dc-chain/gcc-4.7.3/libstdc++-v3/../libgcc/gthr.h > sh-elf/bits/gthr.h
sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
-e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCXX_\1/g' \
< /home/User/kallistios/utils/dc-chain/gcc-4.7.3/libstdc++-v3/../libgcc/gthr-single.h > sh-elf/bits/gthr-single.h
sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
-e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCXX_\1/g' \
-e 's/SUPPORTS_WEAK/__GXX_WEAK__/g' \
-e 's/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*USE_WEAK\)/_GLIBCXX_\1/g' \
< /home/User/kallistios/utils/dc-chain/gcc-4.7.3/libstdc++-v3/../libgcc/gthr-posix.h > sh-elf/bits/gthr-posix.h
sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
-e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCXX_\1/g' \
-e 's/SUPPORTS_WEAK/__GXX_WEAK__/g' \
-e 's/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*USE_WEAK\)/_GLIBCXX_\1/g' \
-e 's,^#include "\(.*\)",#include <bits/\1>,g' \
< /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/../libgcc/gthr-default.h > sh-elf/bits/gthr-default.h
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/sh-elf/libstdc++-v3/include'
make[2]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3'
Makefile:869: recipe for target 'all' failed
make[1]: *** [all] Error 2
make[1]: INTERNAL: Exiting with 3 jobserver tokens available; should be 4!
make[1]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3'
Makefile:184: recipe for target 'build-sh4-gcc-pass2' failed
make: *** [build-sh4-gcc-pass2] Error 1

User@Mothra-PC ~/kallistios/utils/dc-chain
$
I got a couple of failed towards the end. Any assistance in this matter would be greatly appreciated.

Sincerely,

Vectrix Quest
User avatar
BlueCrab
The Crabby Overlord
The Crabby Overlord
Posts: 5658
Joined: Mon May 27, 2002 11:31 am
Location: Sailing the Skies of Arcadia
Has thanked: 9 times
Been thanked: 69 times
Contact:

Re: DCDev ISO Link

Post by BlueCrab »

I don't know what is actually wrong with that one, to be honest especially with how late it happened in the build (since it's happening on the -m4 build, which is the last part of building libstdc++). Try deleting the build-gcc-sh-elf-4.7.3 directory and running "make build-sh4-gcc-pass2". See if that works any better. It actually looks like it's reporting some kind of internal make error, so it is possible that re-running it the way I suggest might actually make it work... Otherwise, the next step would be removing any sort of parallel build it is doing and trying that way. :?

If that works, that's actually the whole sh-elf toolchain. You'll still need to build the arm-eabi one before you can build KOS itself, but that one is much quicker to build.
Vectrix Quest
DCEmu Fast Newbie
DCEmu Fast Newbie
Posts: 22
Joined: Thu Nov 14, 2013 1:10 pm
Has thanked: 0
Been thanked: 0

Re: DCDev ISO Link

Post by Vectrix Quest »

BlueCrab wrote:I don't know what is actually wrong with that one, to be honest especially with how late it happened in the build (since it's happening on the -m4 build, which is the last part of building libstdc++). Try deleting the build-gcc-sh-elf-4.7.3 directory and running "make build-sh4-gcc-pass2". See if that works any better. It actually looks like it's reporting some kind of internal make error, so it is possible that re-running it the way I suggest might actually make it work... Otherwise, the next step would be removing any sort of parallel build it is doing and trying that way. :?

If that works, that's actually the whole sh-elf toolchain. You'll still need to build the arm-eabi one before you can build KOS itself, but that one is much quicker to build.
Nope it didn't work either:

Code: Select all

User@Mothra-PC ~
$ cd kallistios

User@Mothra-PC ~/kallistios
$ cd utils

User@Mothra-PC ~/kallistios/utils
$ cd dc-chain

User@Mothra-PC ~/kallistios/utils/dc-chain
$ make build-sh4-gcc-pass2
+++ Building gcc-4.7.3 to build-gcc-sh-elf-4.7.3 (pass 2)...
mkdir -p build-gcc-sh-elf-4.7.3
> /home/User/kallistios/utils/dc-chain/logs/build-gcc-sh-elf-4.7.3-pass2.log
cd build-gcc-sh-elf-4.7.3;  ../gcc-4.7.3/configure --target=sh-elf --prefix=/opt/toolchains/dc/sh-elf --with-newlib --disable-libssp --disable-tls \
   --enable-threads=kos --enable-languages=c,c++,objc,obj-c++ --with-multilib-list=m4-single-only,m4-nofpu,m4 --with-endian=little --with-cpu=m4-single-only 2>&1 | tee -a /home/User/kallistios/utils/dc-chain/logs/build-gcc-sh-elf-4.7.3-pass2.log && [ $PIPESTATUS -eq 0 ]
checking build system type... x86_64-unknown-cygwin
checking host system type... x86_64-unknown-cygwin
checking target system type... sh-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... /usr/bin/sed
checking for gawk... gawk
checking for libitm support... no
checking to see if cat works as expected... yes
checking for gcc... gcc
checking for C compiler default output file name... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... .exe
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 g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for gnatbind... no
checking for gnatmake... no
checking whether compiler driver understands Ada... no
checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
checking for objdir... .libs
checking for the correct version of gmp.h... yes
checking for the correct version of mpfr.h... yes
checking for the correct version of mpc.h... yes
checking for the correct version of the gmp/mpfr/mpc libraries... yes
checking for PWL_handle_timeout in -lpwl... no
checking for version 0.11 (revision 0 or later) of PPL... no
The following languages will be built: c,c++,lto,objc,obj-c++
*** This configuration is not supported in the following subdirectories:
     target-libmudflap target-libgomp target-libitm gnattools target-libada target-libgfortran target-libgo target-libffi target-zlib target-libjava target-libssp target-boehm-gc
    (Any other directories should still work fine.)
checking for default BUILD_CONFIG...
checking for bison... bison -y
checking for bison... bison
checking for gm4... no
checking for gnum4... no
checking for m4... m4
checking for flex... flex
checking for flex... flex
checking for makeinfo... makeinfo
checking for expect... no
checking for runtest... no
checking for ar... ar
checking for as... as
checking for dlltool... dlltool
checking for ld... (cached) /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking for lipo... no
checking for nm... nm
checking for ranlib... ranlib
checking for strip... strip
checking for windres... windres
checking for windmc... windmc
checking for objcopy... objcopy
checking for objdump... objdump
checking for readelf... readelf
checking for sh-elf-cc... no
checking for sh-elf-gcc... sh-elf-gcc
checking for sh-elf-c++... no
checking for sh-elf-g++... no
checking for sh-elf-cxx... no
checking for sh-elf-gxx... no
checking for sh-elf-gcc... sh-elf-gcc
checking for sh-elf-gcj... no
checking for sh-elf-gfortran... no
checking for sh-elf-gccgo... no
checking for ar... /opt/toolchains/dc/sh-elf/sh-elf/bin/ar
checking for as... /opt/toolchains/dc/sh-elf/sh-elf/bin/as
checking for dlltool... no
checking for sh-elf-dlltool... no
checking for ld... /opt/toolchains/dc/sh-elf/sh-elf/bin/ld
checking for lipo... no
checking for sh-elf-lipo... no
checking for nm... /opt/toolchains/dc/sh-elf/sh-elf/bin/nm
checking for objdump... /opt/toolchains/dc/sh-elf/sh-elf/bin/objdump
checking for ranlib... /opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
checking for readelf... no
checking for sh-elf-readelf... sh-elf-readelf
checking for strip... /opt/toolchains/dc/sh-elf/sh-elf/bin/strip
checking for windres... no
checking for sh-elf-windres... no
checking for windmc... no
checking for sh-elf-windmc... no
checking where to find the target ar... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target as... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target cc... just compiled
checking where to find the target c++... just compiled
checking where to find the target c++ for libstdc++... just compiled
checking where to find the target dlltool... pre-installed
checking where to find the target gcc... just compiled
checking where to find the target gcj... pre-installed
checking where to find the target gfortran... pre-installed
checking where to find the target gccgo... pre-installed
checking where to find the target ld... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target lipo... pre-installed
checking where to find the target nm... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target objdump... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target ranlib... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target readelf... pre-installed
checking where to find the target strip... pre-installed in /opt/toolchains/dc/sh-elf/sh-elf/bin
checking where to find the target windres... pre-installed
checking where to find the target windmc... pre-installed
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether -fkeep-inline-functions is supported... yes
configure: creating ./config.status
config.status: creating Makefile
make -j4 -C build-gcc-sh-elf-4.7.3 DESTDIR= 2>&1 | tee -a /home/User/kallistios/utils/dc-chain/logs/build-gcc-sh-elf-4.7.3-pass2.log && [ $PIPESTATUS -eq 0 ]
make[1]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3'
make[2]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3'
mkdir -p -- ./fixincludes
mkdir -p -- ./libiberty
mkdir -p -- ./intl
mkdir -p -- ./lto-plugin
Configuring in ./intl
Configuring in ./fixincludes
Configuring in ./libiberty
Configuring in ./lto-plugin
configure: creating cache ./config.cache
checking whether make sets $(MAKE)... configure: creating cache ./config.cache
configure: creating cache ./config.cache
configure: creating cache ./config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for makeinfo... makeinfo --split-size=5000000
yes
checking build system type... checking for a BSD-compatible install... /usr/bin/install -c
checking whether NLS is requested... yes
checking build system type... checking for msgfmt... no
checking for gmsgfmt... :
checking for xgettext... no
x86_64-unknown-cygwin
checking host system type... checking for msgmerge... no
checking for x86_64-unknown-cygwin-gcc... gcc
x86_64-unknown-cygwin
checking host system type... checking for perl... perl
x86_64-unknown-cygwin
checking target system type... x86_64-unknown-cygwin
checking target system type... checking build system type... checking for C compiler default output file name... sh-unknown-elf
checking for x86_64-unknown-cygwin-gcc... gcc
sh-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... x86_64-unknown-cygwin
checking host system type... x86_64-unknown-cygwin
checking for x86_64-unknown-cygwin-ar... ar
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking for x86_64-unknown-cygwin-gcc... gcc
checking for C compiler default output file name... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... yes
a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... .exe
checking for a thread-safe mkdir -p... checking for suffix of object files... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... checking for C compiler default output file name... yes
o
checking whether we are using the GNU C compiler... .exe
checking for suffix of object files... checking whether to enable maintainer-specific portions of Makefiles... no
checking for x86_64-unknown-cygwin-gcc... gcc
yes
checking whether gcc accepts -g... o
checking whether we are using the GNU C compiler... a.exe
checking whether the C compiler works... yes
checking for gcc option to accept ISO C89... yes
checking whether we are cross compiling... no
checking for suffix of executables... yes
checking whether gcc accepts -g... checking for C compiler default output file name... yes
checking for gcc option to accept ISO C89... none needed
checking build system type... .exe
checking for suffix of object files... none needed
checking how to run the C preprocessor... a.exe
checking whether the C compiler works... yes
o
checking whether we are using the GNU C compiler... checking whether we are cross compiling... no
checking for suffix of executables... x86_64-unknown-cygwin
checking host system type... yes
checking whether gcc accepts -g... gcc -E
x86_64-unknown-cygwin
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking for library containing strerror... yes
checking for gcc option to accept ISO C89... .exe
checking for suffix of object files... none needed
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... o
checking whether we are using the GNU C compiler... checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... no
yes
checking whether gcc accepts -g... none required
checking how to run the C preprocessor... checking how to run the C preprocessor... yes
checking for gcc option to accept ISO C89... gcc -E
gcc -E
none needed
checking for style of include used by make... GNU
checking dependency style of gcc... checking whether gcc supports -W... checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking whether gcc supports -Wall... yes
checking for sys/types.h... yes
checking whether gcc supports -Wwrite-strings... gcc3
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... yes
yes
checking whether gcc supports -Wc++-compat... no
checking for sys/stat.h... checking whether gcc supports -Wall... yes
yes
yes
checking whether gcc supports -Wstrict-prototypes... checking how to print strings... checking for stdlib.h... yes
checking for an ANSI C-conforming const... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... yes
checking whether gcc supports -pedantic ... yes
checking for inline... /usr/bin/grep -E
checking for fgrep... yes
/usr/bin/grep -F
checking for ld used by gcc... yes
checking whether gcc and cc understand -c and -o together... checking for string.h... inline
checking for sys/types.h... yes
yes
/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... checking for memory.h... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... checking for sys/stat.h... yes
yes
yes
checking for an ANSI C-conforming const... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for strings.h... checking for stdlib.h... checking for /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for x86_64-unknown-cygwin-objdump... objdump
checking how to recognize dependent libraries... yes
checking for inline... file_magic ^x86 archive import|^x86 DLL
checking for x86_64-unknown-cygwin-ar... ar
checking for x86_64-unknown-cygwin-strip... no
checking for strip... strip
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking command to parse nm output from gcc object... yes
inline
checking for grep that handles long lines and -e... yes
/usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... checking for string.h... checking for inttypes.h... yes
yes
checking for memory.h... checking for stdint.h... yes
ok
checking how to run the C preprocessor... yes
checking for strings.h... checking for unistd.h... yes
checking for sys/types.h... yes
gcc -E
yes
yes
checking for inttypes.h... checking minix/config.h usability... checking for sys/stat.h... yes
checking for ANSI C header files... yes
checking for stdint.h... no
checking minix/config.h presence... checking for stdlib.h... yes
yes
no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... checking for unistd.h... checking for string.h... yes
yes
checking for a sed that does not truncate output... /usr/bin/sed
yes
checking whether gcc supports -W... checking for memory.h... checking for off_t... yes
yes
checking whether gcc supports -Wall... checking for strings.h... yes
checking for sys/types.h... yes
yes
checking whether gcc supports -Wwrite-strings... checking for inttypes.h... yes
yes
checking for size_t... yes
yes
checking for sys/stat.h... checking whether gcc supports -Wstrict-prototypes... checking for stdint.h... yes
yes
yes
checking whether gcc supports -Wmissing-prototypes... checking for stdlib.h... checking for unistd.h... yes
checking for working alloca.h... yes
yes
yes
checking whether gcc supports -Wold-style-definition... checking whether byte ordering is bigendian... checking for string.h... yes
yes
checking whether gcc supports -Wmissing-format-attribute... yes
checking for alloca... checking for memory.h... yes
checking whether gcc supports -Woverlength-strings... yes
yes
checking whether gcc supports -pedantic -Wlong-long... yes
checking for strings.h... no
checking for a BSD-compatible install... /usr/bin/install -c
checking for stdlib.h... (cached) yes
yes
checking for unistd.h... (cached) yes
checking for ANSI C header files... (cached) yes
checking for sys/file.h... yes
checking stddef.h usability... checking for getpagesize... checking for inttypes.h... yes
yes
checking stddef.h presence... yes
checking for sys/param.h... yes
checking for stddef.h... yes
checking for stdint.h... yes
yes
checking for stdlib.h... (cached) yes
checking for working mmap... checking for strings.h... (cached) yes
checking for limits.h... yes
checking for unistd.h... (cached) yes
yes
checking for unistd.h... checking fcntl.h usability... checking for stdlib.h... (cached) yes
yes
checking for malloc.h... no
checking for dlfcn.h... yes
checking fcntl.h presence... checking whether we are using the GNU C Library 2.1 or newer... yes
no
checking whether integer division by zero raises SIGFPE... yes
checking for fcntl.h... yes
checking for string.h... (cached) yes
yes
checking sys/file.h usability... checking for objdir... .libs
checking for unistd.h... (cached) yes
yes
checking sys/file.h presence... checking for strings.h... (cached) yes
yes
checking for sys/file.h... yes
checking for sys/time.h... yes
checking for inttypes.h... checking for sys/stat.h... (cached) yes
yes
yes
checking for stdint.h... checking if gcc supports -fno-rtti -fno-exceptions... checking for time.h... checking for clearerr_unlocked... yes
checking for unsigned long long... yes
no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... checking for sys/resource.h... no
yes
checking for inttypes.h... yes
checking for feof_unlocked... yes
checking if gcc static flag -static works... checking for sys/stat.h... (cached) yes
yes
checking for sys/mman.h... checking whether the inttypes.h PRIxNN macros are broken... yes
checking if gcc supports -c -o file.o... yes
no
checking for ld used by GCC... checking for fcntl.h... no
checking for ferror_unlocked... yes
checking for alloca.h... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking whether -lc should be explicitly linked in... /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
yes
checking for shared library run path origin... checking for sys/pstat.h... no
checking for fflush_unlocked... no
yes
checking dynamic linker characteristics... checking for sys/sysmp.h... done
checking argz.h usability... no
Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... checking for sys/sysinfo.h... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for int64_t... no
yes
checking for fgetc_unlocked... yes
checking argz.h presence... checking for machine/hal_sysinfo.h... yes
checking for argz.h... yes
checking limits.h usability... no
checking for sys/table.h... yes
checking for uint64_t... no
yes
checking limits.h presence... checking for fgets_unlocked... no
checking for sys/sysctl.h... yes
checking for limits.h... yes
yes
checking for sys/wait.h that is POSIX.1 compatible... checking locale.h usability... no
checking for sys/systemcfg.h... yes
no
yes
checking locale.h presence... no
checking for fileno_unlocked... configure: updating cache ./config.cache
checking for stdint.h... (cached) yes
configure: creating ./config.status
yes
checking for locale.h... yes
checking for stdio_ext.h... checking nl_types.h usability... yes
checking for process.h... no
no
checking nl_types.h presence... checking for fprintf_unlocked... yes
checking for sys/prctl.h... no
checking for nl_types.h... no
checking malloc.h usability... no
checking for sys/wait.h that is POSIX.1 compatible... yes
checking malloc.h presence... no
checking for fputc_unlocked... yes
checking for malloc.h... yes
yes
checking whether time.h and sys/time.h may both be included... checking stddef.h usability... yes
checking whether errno must be declared... yes
checking stddef.h presence... no
checking size of int... yes
checking for stddef.h... yes
no
checking for fputs_unlocked... checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
4
checking for a 64-bit type... checking sys/param.h usability... no
checking for fread_unlocked... uint64_t
checking for intptr_t... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking for feof_unlocked... no
checking for fwrite_unlocked... yes
checking for uintptr_t... no
checking for fgets_unlocked... no
checking for getchar_unlocked... yes
checking for ssize_t... yes
no
checking for getc_unlocked... checking for getc_unlocked... yes
checking for pid_t... yes
yes
checking for getcwd... checking for putchar_unlocked... yes
checking for library containing strerror... yes
yes
none required
checking for getegid... checking for asprintf... checking for putc_unlocked... yes
yes
checking for geteuid... yes
checking for atexit... checking whether abort is declared... yes
yes
yes
checking for getgid... checking whether asprintf is declared... checking for basename... yes
checking whether basename is declared... yes
yes
checking for getuid... checking for bcmp... no
checking whether errno is declared... yes
no
yes
checking for mempcpy... checking whether vasprintf is declared... checking for bcopy... yes
checking whether clearerr_unlocked is declared... yes
yes
checking for munmap... no
checking for bsearch... checking whether feof_unlocked is declared... no
yes
yes
checking whether ferror_unlocked is declared... checking for putenv... checking for bzero... no
checking whether fflush_unlocked is declared... yes
config.status: creating Makefile
yes
checking for setenv... checking for calloc... no
config.status: creating config.h
checking whether fgetc_unlocked is declared... config.status: executing depfiles commands
yes
no
checking for setlocale... yes
config.status: executing libtool commands
checking whether fgets_unlocked is declared... checking for clock... no
yes
checking whether fileno_unlocked is declared... checking for stpcpy... yes
checking for ffs... no
checking whether fprintf_unlocked is declared... mkdir -p -- build-x86_64-unknown-cygwin/libiberty
Configuring in build-x86_64-unknown-cygwin/libiberty
yes
checking for strcasecmp... no
yes
checking whether fputc_unlocked is declared... checking for getcwd... no
yes
yes
checking whether fputs_unlocked is declared... checking for strdup... checking for getpagesize... no
checking whether fread_unlocked is declared... yes
yes
checking for gettimeofday... checking for strtoul... no
checking whether fwrite_unlocked is declared... yes
yes
no
checking for index... checking for tsearch... checking whether getchar_unlocked is declared... yes
checking whether getc_unlocked is declared... yes
yes
checking for __argz_count... configure: creating cache ../config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for makeinfo... makeinfo --split-size=5000000
checking for insque... yes
checking whether putchar_unlocked is declared... checking for perl... perl
yes
no
yes
checking for __argz_stringify... checking for memchr... checking whether putc_unlocked is declared... checking build system type... yes
x86_64-unknown-cygwin
checking host system type... checking for an ANSI C-conforming const... no
checking for __argz_next... x86_64-unknown-cygwin
checking for x86_64-unknown-cygwin-ar... ar
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking for x86_64-unknown-cygwin-gcc... gcc
yes
yes
checking sys/mman.h usability... checking for memcmp... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking for mmap... no
checking for __fsetlocking... yes
checking for C compiler default output file name... checking for memcpy... yes
checking whether read-only mmap of a plain file works... yes
checking whether mmap from /dev/zero works... no
checking for MAP_ANON(YMOUS)... yes
checking whether mmap with MAP_ANON(YMOUS) works... no
checking whether to enable maintainer-specific portions of Makefiles... no
no
checking for iconv... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... yes
configure: updating cache ./config.cache
configure: creating ./config.status
checking for memmem... .exe
checking for suffix of object files... no, consider installing GNU libiconv
checking for nl_langinfo and CODESET... yes
o
checking whether we are using the GNU C compiler... checking for memmove... yes
checking whether gcc accepts -g... yes
checking for LC_MESSAGES... yes
checking for gcc option to accept ISO C89... yes
none needed
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... checking for mempcpy... no
checking how to run the C preprocessor... yes
checking for bison... bison
checking version of bison... 2.7.1, ok
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for GNU gettext in libc... gcc -E
no
yes
checking for GNU gettext in libintl... checking for memset... config.status: creating Makefile
checking whether gcc supports -W... no
checking whether to use NLS... yes
checking where the gettext function comes from... included intl directory
checking for aclocal... no
checking for autoconf... autoconf
checking for autoheader... autoheader
config.status: creating mkheaders.almost
yes
checking whether gcc supports -Wall... yes
configure: updating cache ./config.cache
config.status: creating config.h
checking for mkstemps... configure: creating ./config.status
yes
checking whether gcc supports -Wwrite-strings... yes
checking whether gcc supports -Wc++-compat... yes
checking for putenv... yes
checking whether gcc supports -Wstrict-prototypes... mkdir -p -- build-x86_64-unknown-cygwin/fixincludes
Configuring in build-x86_64-unknown-cygwin/fixincludes
yes
checking whether gcc supports -pedantic ... yes
yes
checking whether gcc and cc understand -c and -o together... checking for random... yes
checking for rename... yes
checking for an ANSI C-conforming const... yes
checking for inline... config.status: creating Makefile
yes
inline
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... config.status: creating config.intl
/usr/bin/grep -E
checking for ANSI C header files... checking for rindex... config.status: creating config.h
config.status: executing default-1 commands
yes
checking for setenv... mkdir -p -- ./zlib
configure: loading cache ../config.cache
Configuring in ./zlib
yes
checking build system type... checking for sys/types.h... yes
yes
checking for snprintf... x86_64-unknown-cygwin
checking host system type... checking for sys/stat.h... yes
x86_64-unknown-cygwin
checking target system type... checking for stdlib.h... yes
sh-unknown-elf
checking for x86_64-unknown-cygwin-gcc... gcc
yes
checking for string.h... checking for sigsetmask... yes
checking for memory.h... checking for C compiler default output file name... yes
checking for strings.h... no
checking for stpcpy... a.exe
checking whether the C compiler works... yes
yes
checking whether we are cross compiling... no
checking for suffix of executables... checking for inttypes.h... yes
.exe
checking for stdint.h... checking for suffix of object files... yes
yes
checking for stpncpy... o
checking whether we are using the GNU C compiler... checking for unistd.h... configure: creating cache ./config.cache
yes
checking whether gcc accepts -g... yes
checking whether byte ordering is bigendian... checking build system type... yes
checking for gcc option to accept ISO C89... yes
none needed
checking how to run the C preprocessor... x86_64-unknown-cygwin
checking host system type... checking for strcasecmp... x86_64-unknown-cygwin
checking target system type... gcc -E
sh-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... no
checking for a BSD-compatible install... /usr/bin/install -c
yes
checking for sys/file.h... checking for strchr... checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/param.h... yes
yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... checking for limits.h... yes
yes
checking for strdup... yes
checking for stdlib.h... (cached) yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for x86_64-unknown-cygwin-gcc... gcc
checking for malloc.h... yes
yes
checking for sys/types.h... yes
checking for string.h... (cached) yes
checking for strncasecmp... checking for unistd.h... (cached) yes
yes
checking for strings.h... (cached) yes
checking for sys/stat.h... checking for sys/time.h... checking for C compiler default output file name... yes
yes
yes
checking for time.h... checking for stdlib.h... checking for strndup... a.exe
checking whether the C compiler works... yes
yes
checking whether we are cross compiling... no
checking for suffix of executables... yes
checking for sys/resource.h... checking for string.h... yes
.exe
yes
checking for suffix of object files... checking for sys/stat.h... (cached) yes
yes
checking for strrchr... checking for memory.h... checking for sys/mman.h... o
checking whether we are using the GNU C compiler... yes
yes
checking whether gcc accepts -g... yes
checking for fcntl.h... checking for strings.h... yes
checking for gcc option to accept ISO C89... yes
yes
checking for alloca.h... yes
checking for strstr... none needed
checking for style of include used by make... GNU
checking for inttypes.h... yes
checking dependency style of gcc... checking for sys/pstat.h... yes
no
yes
checking for stdint.h... checking for sys/sysmp.h... checking for strtod... yes
no
gcc3
checking for sys/sysinfo.h... checking how to print strings... printf
checking for a sed that does not truncate output... checking for unistd.h... /usr/bin/sed
checking for grep that handles long lines and -e... yes
/usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... checking for machine/hal_sysinfo.h... yes
yes
checking minix/config.h usability... no
checking for strtol... checking for sys/table.h... /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... no
no
checking minix/config.h presence... checking for sys/sysctl.h... yes
no
no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for sys/systemcfg.h... checking for strtoul... checking for /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for x86_64-unknown-cygwin-objdump... objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for x86_64-unknown-cygwin-ar... ar
checking for x86_64-unknown-cygwin-strip... no
checking for strip... strip
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking command to parse nm output from gcc object... yes
checking for a sed that does not truncate output... no
/usr/bin/sed
checking for stdint.h... (cached) yes
checking whether gcc supports -W... checking for stdio_ext.h... yes
yes
checking whether gcc supports -Wall... yes
checking for strverscmp... yes
checking for process.h... checking whether gcc supports -Wwrite-strings... yes
yes
ok
checking how to run the C preprocessor... checking for sys/prctl.h... checking whether gcc supports -Wstrict-prototypes... no
checking for tmpnam... no
checking for sys/wait.h that is POSIX.1 compatible... yes
gcc -E
checking whether gcc supports -Wmissing-prototypes... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether gcc supports -Wold-style-definition... yes
yes
checking whether errno must be declared... checking for ANSI C header files... checking for vasprintf... yes
no
checking size of int... checking whether gcc supports -Wmissing-format-attribute... yes
yes
checking whether gcc supports -Woverlength-strings... checking for vfprintf... 4
checking for a 64-bit type... yes
checking whether gcc supports -pedantic -Wlong-long... uint64_t
checking for intptr_t... yes
checking for ANSI C header files... (cached) yes
yes
checking stddef.h usability... yes
checking for sys/types.h... checking for vprintf... yes
checking stddef.h presence... yes
yes
checking for stddef.h... yes
yes
checking for uintptr_t... checking for sys/stat.h... checking for stdlib.h... (cached) yes
checking for strings.h... (cached) yes
yes
yes
checking for unistd.h... (cached) yes
checking for stdlib.h... checking for vsnprintf... checking fcntl.h usability... yes
checking for ssize_t... yes
yes
checking fcntl.h presence... checking for string.h... yes
yes
checking for fcntl.h... yes
checking for vsprintf... yes
checking sys/file.h usability... yes
checking for pid_t... checking for memory.h... yes
checking sys/file.h presence... yes
yes
yes
checking for sys/file.h... yes
yes
checking for library containing strerror... checking for waitpid... checking for strings.h... checking for sys/stat.h... (cached) yes
checking for clearerr_unlocked... yes
none required
checking for asprintf... checking for inttypes.h... yes
yes
checking for setproctitle... no
checking for stdint.h... checking for feof_unlocked... yes
checking for atexit... yes
no
checking whether alloca needs Cray hooks... checking for unistd.h... no
checking stack direction for C alloca... no
checking for ferror_unlocked... yes
yes
checking for basename... checking for dlfcn.h... -1
yes
checking for vfork.h... checking for objdir... no
.libs
checking for fflush_unlocked... yes
no
checking for fork... checking for bcmp... checking if gcc supports -fno-rtti -fno-exceptions... no
yes
checking for fgetc_unlocked... yes
checking for vfork... no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... checking for bcopy... no
yes
checking if gcc static flag -static works... checking for fgets_unlocked... yes
checking for working fork... yes
yes
checking if gcc supports -c -o file.o... checking for bsearch... no
checking for fileno_unlocked... yes
checking for working vfork... (cached) yes
checking for _doprnt... yes
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... checking for bzero... yes
checking whether -lc should be explicitly linked in... no
checking for fprintf_unlocked... no
checking for sys_errlist... yes
checking dynamic linker characteristics... yes
Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C preprocessor... gcc -E
checking for calloc... yes
checking for sys_nerr... no
checking for fputc_unlocked... checking for stdlib.h... (cached) yes
yes
checking for unistd.h... (cached) yes
yes
checking for sys_siglist... checking for getpagesize... checking for clock... no
checking for fputs_unlocked... yes
yes
yes
checking for external symbol _system_configuration... checking for working mmap... checking for ffs... no
checking for __fsetlocking... no
checking for fread_unlocked... no
checking for memcpy... yes
checking for getcwd... no
no
checking for canonicalize_file_name... checking for fwrite_unlocked... yes
yes
yes
checking for getpagesize... checking for strerror... checking for dup3... no
checking for getchar_unlocked... yes
yes
yes
checking for gettimeofday... checking for unistd.h... (cached) yes
checking for getrlimit... yes
configure: updating cache ./config.cache
checking for getc_unlocked... configure: creating ./config.status
yes
yes
checking for index... checking for getrusage... yes
checking for putchar_unlocked... yes
yes
checking for getsysinfo... checking for insque... yes
checking for putc_unlocked... yes
no
checking for memchr... checking for gettimeofday... (cached) yes
yes
checking for on_exit... checking whether abort is declared... yes
yes
yes
checking for memcmp... checking for psignal... checking whether asprintf is declared... yes
checking whether basename is declared... yes
yes
checking for pstat_getdynamic... checking for memcpy... no
checking whether errno is declared... no
no
checking for pstat_getstatic... yes
checking whether vasprintf is declared... checking for memmem... yes
checking whether clearerr_unlocked is declared... no
yes
checking for realpath... no
checking for memmove... checking whether feof_unlocked is declared... yes
checking for setrlimit... no
yes
checking whether ferror_unlocked is declared... checking for mempcpy... yes
no
checking for sbrk... checking whether fflush_unlocked is declared... yes
no
yes
checking for memset... checking whether fgetc_unlocked is declared... checking for spawnve... no
yes
checking whether fgets_unlocked is declared... yes
checking for mkstemps... checking for spawnvpe... no
checking whether fileno_unlocked is declared... yes
yes
checking for putenv... no
checking for strerror... checking whether fprintf_unlocked is declared... yes
no
yes
checking for random... checking whether fputc_unlocked is declared... checking for strsignal... no
checking whether fputs_unlocked is declared... yes
yes
checking for rename... checking for sysconf... no
checking whether fread_unlocked is declared... yes
yes
checking for rindex... no
checking for sysctl... checking whether fwrite_unlocked is declared... config.status: creating Makefile
config.status: executing default-1 commands
no
yes
checking whether getchar_unlocked is declared... checking for setenv... no
checking for sysmp... yes
checking whether getc_unlocked is declared... yes
yes
no
checking for snprintf... checking whether putchar_unlocked is declared... checking for table... yes
config.status: executing depfiles commands
checking whether putc_unlocked is declared... yes
yes
checking for sigsetmask... config.status: executing libtool commands
checking for an ANSI C-conforming const... no
checking for times... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
no
checking for stpcpy... yes
checking for sys/mman.h... yes
checking for mmap... checking for wait3... mkdir -p -- ./libdecnumber
Configuring in ./libdecnumber
yes
checking whether read-only mmap of a plain file works... yes
checking whether mmap from /dev/zero works... no
checking for MAP_ANON(YMOUS)... yes
yes
checking for stpncpy... yes
checking whether mmap with MAP_ANON(YMOUS) works... no
checking whether to enable maintainer-specific portions of Makefiles... no
checking for wait4... configure: updating cache ../config.cache
configure: creating ./config.status
yes
yes
checking for strcasecmp... checking whether basename is declared... no
checking whether ffs is declared... yes
yes
checking for strchr... checking whether asprintf is declared... yes
checking whether vasprintf is declared... yes
checking for strdup... yes
checking whether snprintf is declared... config.status: creating Makefile
configure: creating cache ./config.cache
checking whether make sets $(MAKE)... yes
yes
checking for x86_64-unknown-cygwin-gcc... gcc
yes
checking whether vsnprintf is declared... config.status: creating mkheaders.almost
checking for strncasecmp... yes
config.status: creating config.h
checking whether calloc is declared... checking for C compiler default output file name... yes
yes
checking whether getenv is declared... checking for strndup... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... yes
checking whether getopt is declared... make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/intl'
rm -f stamp-h1
/bin/sh ./config.status config.h
yes
.exe
yes
checking for suffix of object files... checking whether malloc is declared... checking for strrchr... o
checking whether we are using the GNU C compiler... yes
yes
checking whether gcc accepts -g... checking whether realloc is declared... yes
checking for gcc option to accept ISO C89... config.status: creating config.h
yes
config.status: config.h is unchanged
yes
cp ../../gcc-4.7.3/intl/libgnuintl.h libintl.h
test -f config.h || (rm -f stamp-h1 && make stamp-h1)
checking whether sbrk is declared... gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/bindtextdom.c
checking for strstr... none needed
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking for aclocal... no
checking for autoconf... autoconf
checking for autoheader... autoheader
checking whether gcc supports -W... yes
gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/dcgettext.c
checking whether strverscmp is declared... gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/dgettext.c
yes
checking whether gcc supports -Wall... gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/gettext.c
yes
no
yes
checking whether canonicalize_file_name must be declared... gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/finddomain.c
checking whether gcc supports -Wwrite-strings... checking for strtod... yes
gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/loadmsgcat.c
no
checking whether gcc supports -Wstrict-prototypes... checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
yes
checking for getpagesize... (cached) yes
yes
checking for working mmap... checking whether gcc supports -Wmissing-prototypes... checking for strtol... gcc -c  -g -O2 -DHAVE_CONFIG_H -DLOCALE_ALIAS_PATH="\"/opt/toolchains/dc/sh-elf/share/locale\"" -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/localealias.c
yes
checking whether gcc supports -Wold-style-definition... gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/textdomain.c
yes
yes
no
gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/l10nflist.c
checking for working strncmp... checking whether gcc supports -Wmissing-format-attribute... checking for strtoul... gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/explodename.c
yes
checking whether gcc supports -Wcast-qual... gcc -c  -g -O2 -DHAVE_CONFIG_H -DLOCALEDIR="\"/opt/toolchains/dc/sh-elf/share/locale\"" -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/dcigettext.c
yes
yes
checking whether gcc supports -pedantic -Wlong-long... yes
checking for strverscmp... yes
checking how to run the C preprocessor... configure: updating cache ./config.cache
gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/dcngettext.c
configure: creating ./config.status
gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/dngettext.c
gcc -E
gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/ngettext.c
no
checking for tmpnam... gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/plural.c
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/plural-exp.c
gcc -c  -g -O2 -DHAVE_CONFIG_H -DLIBDIR="\"/opt/toolchains/dc/sh-elf/lib\"" -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/localcharset.c
yes
checking for vasprintf... gcc -c  -g -O2 -DHAVE_CONFIG_H -DINSTALLDIR="\"/opt/toolchains/dc/sh-elf/lib\"" -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/relocatable.c
gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/localename.c
yes
gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/log.c
checking for vfprintf... yes
checking for sys/types.h... gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/osdep.c
gcc -c  -g -O2 -DHAVE_CONFIG_H  -I. -I../../gcc-4.7.3/intl ../../gcc-4.7.3/intl/intl-compat.c
rm -f libintl.a
yes
ar cru libintl.a bindtextdom.o dcgettext.o dgettext.o gettext.o finddomain.o loadmsgcat.o localealias.o textdomain.o l10nflist.o explodename.o dcigettext.o dcngettext.o dngettext.o ngettext.o plural.o plural-exp.o localcharset.o relocatable.o localename.o log.o osdep.o intl-compat.o
checking for sys/stat.h... yes
ranlib libintl.a
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/intl'
checking for vprintf... yes
config.status: creating Makefile
checking for stdlib.h... make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/zlib'
gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -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_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../gcc-4.7.3/zlib     -g -O2 -c -o libz_a-adler32.o `test -f 'adler32.c' || echo '../../gcc-4.7.3/zlib/'`adler32.c
config.status: creating testsuite/Makefile
yes
yes
gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -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_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../gcc-4.7.3/zlib     -g -O2 -c -o libz_a-compress.o `test -f 'compress.c' || echo '../../gcc-4.7.3/zlib/'`compress.c
checking for string.h... checking for vsnprintf... gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -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_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../gcc-4.7.3/zlib     -g -O2 -c -o libz_a-crc32.o `test -f 'crc32.c' || echo '../../gcc-4.7.3/zlib/'`crc32.c
config.status: creating config.h
yes
gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -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_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../gcc-4.7.3/zlib     -g -O2 -c -o libz_a-deflate.o `test -f 'deflate.c' || echo '../../gcc-4.7.3/zlib/'`deflate.c
config.status: executing default commands
checking for memory.h... yes
yes
checking for vsprintf... checking for strings.h... gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -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_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../gcc-4.7.3/zlib     -g -O2 -c -o libz_a-gzio.o `test -f 'gzio.c' || echo '../../gcc-4.7.3/zlib/'`gzio.c
yes
checking for inttypes.h... yes
gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -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_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../gcc-4.7.3/zlib     -g -O2 -c -o libz_a-infback.o `test -f 'infback.c' || echo '../../gcc-4.7.3/zlib/'`infback.c
checking for waitpid... make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libiberty'
if [ x"-fpic" != x ] && [ ! -d pic ]; then \
  mkdir pic; \
else true; fi
touch stamp-picdir
yes
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/safe-ctype.c -o pic/safe-ctype.o; \
else true; fi
checking for stdint.h... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/safe-ctype.c -o safe-ctype.o
yes
gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -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_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../gcc-4.7.3/zlib     -g -O2 -c -o libz_a-inffast.o `test -f 'inffast.c' || echo '../../gcc-4.7.3/zlib/'`inffast.c
yes
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/simple-object.c -o pic/simple-object.o; \
else true; fi
checking for setproctitle... checking for unistd.h... gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -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_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../gcc-4.7.3/zlib     -g -O2 -c -o libz_a-inflate.o `test -f 'inflate.c' || echo '../../gcc-4.7.3/zlib/'`inflate.c
yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/simple-object.c -o simple-object.o
checking ctype.h usability... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/simple-object-coff.c -o pic/simple-object-coff.o; \
else true; fi
no
checking whether alloca needs Cray hooks... yes
checking ctype.h presence... no
checking stack direction for C alloca... gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -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_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../gcc-4.7.3/zlib     -g -O2 -c -o libz_a-inftrees.o `test -f 'inftrees.c' || echo '../../gcc-4.7.3/zlib/'`inftrees.c
yes
checking for ctype.h... yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/simple-object-coff.c -o simple-object-coff.o
checking stddef.h usability... gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -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_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../gcc-4.7.3/zlib     -g -O2 -c -o libz_a-trees.o `test -f 'trees.c' || echo '../../gcc-4.7.3/zlib/'`trees.c
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/simple-object-elf.c -o pic/simple-object-elf.o; \
else true; fi
-1
yes
checking stddef.h presence... checking for vfork.h... yes
checking for stddef.h... yes
no
checking for string.h... (cached) yes
checking for fork... gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -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_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../gcc-4.7.3/zlib     -g -O2 -c -o libz_a-uncompr.o `test -f 'uncompr.c' || echo '../../gcc-4.7.3/zlib/'`uncompr.c
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/simple-object-elf.c -o simple-object-elf.o
checking stdio.h usability... gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -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_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../gcc-4.7.3/zlib     -g -O2 -c -o libz_a-zutil.o `test -f 'zutil.c' || echo '../../gcc-4.7.3/zlib/'`zutil.c
true "AR_FLAGS=rc" "CC_FOR_BUILD=gcc" "CFLAGS=-g -O2" "CXXFLAGS=-g -O2" "CFLAGS_FOR_BUILD=-g -O2" "CFLAGS_FOR_TARGET=-g -O2" "INSTALL=/usr/bin/install -c" "INSTALL_DATA=/usr/bin/install -c -m 644" "INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install -c" "LDFLAGS=-Wl,--stack,12582912" "LIBCFLAGS=-g -O2" "LIBCFLAGS_FOR_TARGET=-g -O2" "MAKE=make" "MAKEINFO=makeinfo --split-size=5000000 --split-size=5000000 " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/sh" "EXPECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS=" "exec_prefix=/opt/toolchains/dc/sh-elf" "infodir=/opt/toolchains/dc/sh-elf/share/info" "libdir=/opt/toolchains/dc/sh-elf/lib" "prefix=/opt/toolchains/dc/sh-elf" "tooldir=/opt/toolchains/dc/sh-elf/sh-elf" "AR=ar" "AS=as" "CC=gcc" "CXX=g++" "LD=/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe" "LIBCFLAGS=-g -O2" "NM=nm" "PICFLAG=" "RANLIB=ranlib" "DESTDIR=" DO=all multi-do # make
rm -f libz.a
yes
checking stdio.h presence... ar cru libz.a libz_a-adler32.o libz_a-compress.o libz_a-crc32.o libz_a-deflate.o libz_a-gzio.o libz_a-infback.o libz_a-inffast.o libz_a-inflate.o libz_a-inftrees.o libz_a-trees.o libz_a-uncompr.o libz_a-zutil.o
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/simple-object-mach-o.c -o pic/simple-object-mach-o.o; \
else true; fi
ranlib libz.a
yes
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/zlib'
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/sort.c -o pic/sort.o; \
else true; fi
yes
checking for stdio.h... yes
checking for vfork... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/sort.c -o sort.o
looking for a compliant stdint.h in stdint.h, checking for uintmax_t... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/simple-object-mach-o.c -o simple-object-mach-o.o
mkdir -p -- ./libcpp
Configuring in ./libcpp
yes
checking for working fork... yes
checking for uintptr_t... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/spaces.c -o pic/spaces.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/spaces.c -o spaces.o
yes
checking for int_least32_t... yes
checking for working vfork... (cached) yes
checking for _doprnt... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/splay-tree.c -o pic/splay-tree.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/splay-tree.c -o splay-tree.o
yes
checking for int_fast32_t... no
checking for sys_errlist... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/stack-limit.c -o pic/stack-limit.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/stack-limit.c -o stack-limit.o
yes
yes
checking for uint64_t... checking for sys_nerr... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/strerror.c -o pic/strerror.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/strerror.c -o strerror.o
yes
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/strsignal.c -o pic/strsignal.o; \
else true; fi
yes
checking what to include in gstdint.h... checking for sys_siglist... stdint.h (already complete)
checking for an ANSI C-conforming const... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/strsignal.c -o strsignal.o
yes
checking for off_t... configure: creating cache ./config.cache
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/timeval-utils.c -o pic/timeval-utils.o; \
else true; fi
yes
checking for external symbol _system_configuration... checking build system type... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/timeval-utils.c -o timeval-utils.o
no
x86_64-unknown-cygwin
checking host system type... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/unlink-if-ordinary.c -o pic/unlink-if-ordinary.o; \
else true; fi
yes
checking size of int... checking for __fsetlocking... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/unlink-if-ordinary.c -o unlink-if-ordinary.o
x86_64-unknown-cygwin
checking target system type... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/xatexit.c -o pic/xatexit.o; \
else true; fi
sh-unknown-elf
checking whether make sets $(MAKE)... 4
checking size of long... no
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/xatexit.c -o xatexit.o
checking for canonicalize_file_name... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for x86_64-unknown-cygwin-gcc... gcc
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/xexit.c -o pic/xexit.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/xexit.c -o xexit.o
yes
checking for C compiler default output file name... 8
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/xmalloc.c -o pic/xmalloc.o; \
else true; fi
checking for ANSI C header files... (cached) yes
checking for dup3... checking build system type... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/xmalloc.c -o xmalloc.o
x86_64-unknown-cygwin
checking host system type... a.exe
checking whether the C compiler works... yes
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/xmemdup.c -o pic/xmemdup.o; \
else true; fi
yes
checking whether we are cross compiling... no
checking for suffix of executables... checking for getrlimit... x86_64-unknown-cygwin
checking target system type... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/xmemdup.c -o xmemdup.o
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/xstrdup.c -o pic/xstrdup.o; \
else true; fi
.exe
checking for suffix of object files... sh-unknown-elf
checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
dpd
checking whether byte ordering is bigendian... yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/xstrdup.c -o xstrdup.o
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/xstrerror.c -o pic/xstrerror.o; \
else true; fi
o
checking whether we are using the GNU C compiler... checking for getrusage... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/xstrerror.c -o xstrerror.o
yes
checking whether gcc accepts -g... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/xstrndup.c -o pic/xstrndup.o; \
else true; fi
yes
checking for gcc option to accept ISO C89... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/xstrndup.c -o xstrndup.o
yes
no
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/sigsetmask.c -o pic/sigsetmask.o; \
else true; fi
checking for getsysinfo... none needed
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/sigsetmask.c -o sigsetmask.o
configure: updating cache ./config.cache
configure: creating ./config.status
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/strverscmp.c -o pic/strverscmp.o; \
else true; fi
checking whether we are using the GNU C++ compiler... no
checking for gettimeofday... (cached) yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/strverscmp.c -o strverscmp.o
checking for on_exit... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/setproctitle.c -o pic/setproctitle.o; \
else true; fi
yes
checking whether g++ accepts -g... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/setproctitle.c -o setproctitle.o
yes
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking how to run the C preprocessor... 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 ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o > required-list
yes
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libiberty/testsuite'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libiberty/testsuite'
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/regex.c -o pic/regex.o; \
else true; fi
checking for psignal... gcc -E
yes
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... checking for pstat_getdynamic... no
config.status: creating Makefile
checking for pstat_getstatic... config.status: creating config.h
yes
checking for sys/types.h... config.status: executing gstdint.h commands
no
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/regex.c -o regex.o
checking for realpath... yes
checking for sys/stat.h... yes
yes
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/cplus-dem.c -o pic/cplus-dem.o; \
else true; fi
checking for stdlib.h... checking for setrlimit... yes
checking for string.h... yes
yes
checking for sbrk... checking for memory.h... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/cplus-dem.c -o cplus-dem.o
yes
yes
checking for spawnve... checking for strings.h... make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libdecnumber'
source='../../gcc-4.7.3/libdecnumber/decNumber.c' object='decNumber.o' libtool=no gcc  -I../../gcc-4.7.3/libdecnumber -I.  -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long  -I../../gcc-4.7.3/libdecnumber -I.  -c ../../gcc-4.7.3/libdecnumber/decNumber.c
yes
checking for inttypes.h... yes
checking for spawnvpe... yes
checking for stdint.h... yes
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/cp-demangle.c -o pic/cp-demangle.o; \
else true; fi
yes
checking for strerror... checking for unistd.h... yes
yes
checking minix/config.h usability... checking for strsignal... no
checking minix/config.h presence... yes
no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... source='../../gcc-4.7.3/libdecnumber/decContext.c' object='decContext.o' libtool=no gcc  -I../../gcc-4.7.3/libdecnumber -I.  -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long  -I../../gcc-4.7.3/libdecnumber -I.  -c ../../gcc-4.7.3/libdecnumber/decContext.c
checking for sysconf... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... source='../../gcc-4.7.3/libdecnumber/dpd/decimal32.c' object='decimal32.o' libtool=no gcc  -I../../gcc-4.7.3/libdecnumber -I.  -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long  -I../../gcc-4.7.3/libdecnumber -I.  -c ../../gcc-4.7.3/libdecnumber/dpd/decimal32.c
no
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/cp-demangle.c -o cp-demangle.o
checking for aclocal... no
checking for autoconf... autoconf
checking for autoheader... autoheader
checking whether gcc supports -W... yes
source='../../gcc-4.7.3/libdecnumber/dpd/decimal64.c' object='decimal64.o' libtool=no gcc  -I../../gcc-4.7.3/libdecnumber -I.  -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long  -I../../gcc-4.7.3/libdecnumber -I.  -c ../../gcc-4.7.3/libdecnumber/dpd/decimal64.c
checking for sysctl... yes
checking whether gcc supports -Wall... source='../../gcc-4.7.3/libdecnumber/dpd/decimal128.c' object='decimal128.o' libtool=no gcc  -I../../gcc-4.7.3/libdecnumber -I.  -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long  -I../../gcc-4.7.3/libdecnumber -I.  -c ../../gcc-4.7.3/libdecnumber/dpd/decimal128.c
yes
checking whether gcc supports -Wnarrowing... no
yes
checking for sysmp... rm -f libdecnumber.a
checking whether gcc supports -Wwrite-strings... ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
ranlib libdecnumber.a
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libdecnumber'
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/md5.c -o pic/md5.o; \
else true; fi
yes
checking whether gcc supports -Wmissing-format-attribute... yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/md5.c -o md5.o
no
checking whether gcc supports -Wstrict-prototypes... checking for table... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/sha1.c -o pic/sha1.o; \
else true; fi
yes
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/alloca.c -o pic/alloca.o; \
else true; fi
checking whether gcc supports -Wmissing-prototypes... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/alloca.c -o alloca.o
yes
no
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/argv.c -o pic/argv.o; \
else true; fi
checking whether gcc supports -Wold-style-definition... checking for times... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/sha1.c -o sha1.o
yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/argv.c -o argv.o
checking whether gcc supports -Wc++-compat... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/choose-temp.c -o pic/choose-temp.o; \
else true; fi
yes
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/concat.c -o pic/concat.o; \
else true; fi
checking for wait3... yes
checking whether gcc supports -pedantic -Wlong-long... ../../gcc-4.7.3/libiberty/choose-temp.c: In function ‘choose_temp_base’:
../../gcc-4.7.3/libiberty/choose-temp.c:72:14: warning: call to ‘mktemp’ declared with attribute warning: the use of `mktemp' is dangerous; use `mkstemp' instead [enabled by default]
   if (mktemp (temp_filename) == 0)
              ^
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/choose-temp.c -o choose-temp.o
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/concat.c -o concat.o
yes
../../gcc-4.7.3/libiberty/choose-temp.c: In function ‘choose_temp_base’:
../../gcc-4.7.3/libiberty/choose-temp.c:72:14: warning: call to ‘mktemp’ declared with attribute warning: the use of `mktemp' is dangerous; use `mkstemp' instead [enabled by default]
   if (mktemp (temp_filename) == 0)
              ^
checking whether gcc supports -fno-exceptions... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/cp-demint.c -o pic/cp-demint.o; \
else true; fi
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/crc32.c -o pic/crc32.o; \
else true; fi
yes
yes
checking whether gcc supports -fno-rtti... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/cp-demint.c -o cp-demint.o
checking for wait4... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/crc32.c -o crc32.o
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/dyn-string.c -o pic/dyn-string.o; \
else true; fi
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/fdmatch.c -o pic/fdmatch.o; \
else true; fi
yes
checking dependency style of gcc... yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/fdmatch.c -o fdmatch.o
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/dyn-string.c -o dyn-string.o
checking whether basename is declared... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/fibheap.c -o pic/fibheap.o; \
else true; fi
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/filename_cmp.c -o pic/filename_cmp.o; \
else true; fi
no
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/fibheap.c -o fibheap.o
checking whether ffs is declared... gcc3
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/filename_cmp.c -o filename_cmp.o
checking whether time.h and sys/time.h may both be included... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/floatformat.c -o pic/floatformat.o; \
else true; fi
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/fnmatch.c -o pic/fnmatch.o; \
else true; fi
yes
checking whether string.h and strings.h may both be included... yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/fnmatch.c -o fnmatch.o
yes
checking whether asprintf is declared... checking locale.h usability... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/floatformat.c -o floatformat.o
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/fopen_unlocked.c -o pic/fopen_unlocked.o; \
else true; fi
yes
yes
checking locale.h presence... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/getopt.c -o pic/getopt.o; \
else true; fi
checking whether vasprintf is declared... yes
checking for locale.h... yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/fopen_unlocked.c -o fopen_unlocked.o
checking fcntl.h usability... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/getopt1.c -o pic/getopt1.o; \
else true; fi
yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/getopt.c -o getopt.o
checking whether snprintf is declared... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/getopt1.c -o getopt1.o
yes
checking fcntl.h presence... yes
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/getpwd.c -o pic/getpwd.o; \
else true; fi
yes
checking for fcntl.h... yes
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/getruntime.c -o pic/getruntime.o; \
else true; fi
checking whether vsnprintf is declared... checking limits.h usability... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/getpwd.c -o getpwd.o
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/getruntime.c -o getruntime.o
yes
yes
checking limits.h presence... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/hashtab.c -o pic/hashtab.o; \
else true; fi
checking whether calloc is declared... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/hex.c -o pic/hex.o; \
else true; fi
yes
checking for limits.h... yes
checking stddef.h usability... yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/hex.c -o hex.o
checking whether getenv is declared... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/lbasename.c -o pic/lbasename.o; \
else true; fi
yes
checking stddef.h presence... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/hashtab.c -o hashtab.o
yes
checking for stddef.h... yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/lbasename.c -o lbasename.o
yes
checking for stdlib.h... (cached) yes
checking whether getopt is declared... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/lrealpath.c -o pic/lrealpath.o; \
else true; fi
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/make-relative-prefix.c -o pic/make-relative-prefix.o; \
else true; fi
checking for strings.h... (cached) yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/lrealpath.c -o lrealpath.o
yes
checking for string.h... (cached) yes
checking whether malloc is declared... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/make-temp-file.c -o pic/make-temp-file.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/make-relative-prefix.c -o make-relative-prefix.o
checking sys/file.h usability... yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/make-temp-file.c -o make-temp-file.o
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/objalloc.c -o pic/objalloc.o; \
else true; fi
yes
checking sys/file.h presence... checking whether realloc is declared... yes
checking for sys/file.h... yes
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/obstack.c -o pic/obstack.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/objalloc.c -o objalloc.o
yes
checking for unistd.h... (cached) yes
checking whether sbrk is declared... checking whether byte ordering is bigendian... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/partition.c -o pic/partition.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/obstack.c -o obstack.o
yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/partition.c -o partition.o
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/pexecute.c -o pic/pexecute.o; \
else true; fi
checking whether strverscmp is declared... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/physmem.c -o pic/physmem.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/pexecute.c -o pexecute.o
no
checking whether canonicalize_file_name must be declared... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/physmem.c -o physmem.o
if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/pex-common.c -o pic/pex-common.o; \
else true; fi
no
checking for an ANSI C-conforming const... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/pex-one.c -o pic/pex-one.o; \
else true; fi
no
checking for stdlib.h... (cached) yes
yes
checking for inline... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/pex-one.c -o pex-one.o
checking for unistd.h... (cached) yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/pex-common.c -o pex-common.o
checking for getpagesize... (cached) yes
inline
checking for obstacks... if [ x"-fpic" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fpic ../../gcc-4.7.3/libiberty/pex-unix.c -o pic/pex-unix.o; \
else true; fi
checking for working mmap... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../gcc-4.7.3/libiberty/pex-unix.c -o pex-unix.o
no
checking for off_t... 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 ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o  ./sigsetmask.o ./strverscmp.o ./setproctitle.o
ranlib ./libiberty.a
no
checking for working strncmp... if [ x"-fpic" != 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 ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o  ./sigsetmask.o ./strverscmp.o ./setproctitle.o; \
  ranlib ./libiberty.a; \
  cd ..; \
else true; fi
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libiberty'
yes
checking for size_t... yes
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/fixincludes'
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin'
gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../gcc-4.7.3/fixincludes -I../include -I../../gcc-4.7.3/fixincludes/../include ../../gcc-4.7.3/fixincludes/fixincl.c
make  all-am
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin'
/bin/sh ./libtool --tag=CC --tag=disable-static  --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../gcc-4.7.3/lto-plugin  -I../../gcc-4.7.3/lto-plugin/../include -DHAVE_CONFIG_H  -Wall -g -O2 -c -o lto-plugin.lo ../../gcc-4.7.3/lto-plugin/lto-plugin.c
configure: updating cache ../config.cache
yes
checking for ssize_t... configure: creating ./config.status
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../gcc-4.7.3/lto-plugin -I../../gcc-4.7.3/lto-plugin/../include -DHAVE_CONFIG_H -Wall -g -O2 -c ../../gcc-4.7.3/lto-plugin/lto-plugin.c  -DDLL_EXPORT -DPIC -o .libs/lto-plugin.o
gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../gcc-4.7.3/fixincludes -I../include -I../../gcc-4.7.3/fixincludes/../include ../../gcc-4.7.3/fixincludes/fixtests.c
gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../gcc-4.7.3/fixincludes -I../include -I../../gcc-4.7.3/fixincludes/../include ../../gcc-4.7.3/fixincludes/fixfixes.c
yes
checking for uintptr_t... /bin/sh ./libtool --tag=CC --tag=disable-static  --mode=link gcc -Wall -g -O2 -no-undefined -bindir "/opt/toolchains/dc/sh-elf/bin" -module -bindir /opt/toolchains/dc/sh-elf/libexec/gcc/sh-elf/4.7.3  -Wl,--stack,12582912 -o liblto_plugin.la -rpath /opt/toolchains/dc/sh-elf/libexec/gcc/sh-elf/4.7.3 lto-plugin.lo -Wc,../libiberty/pic/libiberty.a
gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../gcc-4.7.3/fixincludes -I../include -I../../gcc-4.7.3/fixincludes/../include ../../gcc-4.7.3/fixincludes/server.c
gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../gcc-4.7.3/fixincludes -I../include -I../../gcc-4.7.3/fixincludes/../include ../../gcc-4.7.3/fixincludes/procopen.c
yes
checking for ptrdiff_t... gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../gcc-4.7.3/fixincludes -I../include -I../../gcc-4.7.3/fixincludes/../include ../../gcc-4.7.3/fixincludes/fixlib.c
libtool: link: gcc -shared  .libs/lto-plugin.o    -Wl,--stack -Wl,12582912 ../libiberty/pic/libiberty.a   -o .libs/cyglto_plugin-0.dll -Wl,--enable-auto-image-base -Xlinker --out-implib -Xlinker .libs/liblto_plugin.dll.a
gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../gcc-4.7.3/fixincludes -I../include -I../../gcc-4.7.3/fixincludes/../include ../../gcc-4.7.3/fixincludes/fixopts.c
yes
checking whether struct tm is in sys/time.h or time.h... srcdir="../../gcc-4.7.3/fixincludes" /bin/sh ../../gcc-4.7.3/fixincludes/mkfixinc.sh sh-unknown-elf
libtool: link: ( cd ".libs" && rm -f "liblto_plugin.la" && ln -s "../liblto_plugin.la" "liblto_plugin.la" )
time.h
checking size of int... sed -e 's/@gcc_version@/4.7.3/' < mkheaders.almost > mkheadersT
mv -f mkheadersT mkheaders
gcc -g -O2 -Wl,--stack,12582912 -o fixincl.exe fixincl.o fixtests.o fixfixes.o server.o procopen.o fixlib.o fixopts.o ../libiberty/libiberty.a
mkdir -p -- .././gcc
libtool: install: /usr/bin/install -c .libs/liblto_plugin.dll.a /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin/.././gcc/liblto_plugin.dll.a
config.status: creating Makefile
libtool: install: base_file=`basename liblto_plugin.la`
libtool: install:
      dlpath=`/bin/sh 2>&1 -c '. .libs/'liblto_plugin.la'i; echo cyglto_plugin-0.dll'`
echo timestamp > full-stamp
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/fixincludes'
4
checking size of long... libtool: install:
      dldir=/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin/.././gcc/`dirname cyglto_plugin-0.dll`
libtool: install:
      test -d /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin/.././gcc/. || mkdir -p /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin/.././gcc/.
libtool: install:
      /usr/bin/install -c .libs/cyglto_plugin-0.dll /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin/.././gcc/./cyglto_plugin-0.dll
config.status: creating testsuite/Makefile
libtool: install:
      chmod a+x /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin/.././gcc/./cyglto_plugin-0.dll
libtool: install:
      if test -n '' && test -n 'strip --strip-unneeded'; then
        eval 'strip --strip-unneeded /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin/.././gcc/./cyglto_plugin-0.dll' || exit 0;
      fi
libtool: install: /usr/bin/install -c .libs/liblto_plugin.lai /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin/.././gcc/liblto_plugin.la
libtool: install: warning: remember to run `libtool --finish /opt/toolchains/dc/sh-elf/libexec/gcc/sh-elf/4.7.3'
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin'
make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/lto-plugin'
Configuring in ./gcc
config.status: creating config.h
config.status: executing default commands
8
checking for clearerr_unlocked... make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/build-x86_64-unknown-cygwin/libiberty'
if [ x"" != x ] && [ ! -d pic ]; then \
  mkdir pic; \
else true; fi
no
touch stamp-picdir
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 ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o > required-list
checking for feof_unlocked... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/regex.c -o pic/regex.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/regex.c -o regex.o
make[4]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/build-x86_64-unknown-cygwin/libiberty/testsuite'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/build-x86_64-unknown-cygwin/libiberty/testsuite'
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/cplus-dem.c -o pic/cplus-dem.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/cplus-dem.c -o cplus-dem.o
no
checking for ferror_unlocked... no
checking for fflush_unlocked... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/cp-demangle.c -o pic/cp-demangle.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/cp-demangle.c -o cp-demangle.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/md5.c -o pic/md5.o; \
else true; fi
no
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/md5.c -o md5.o
configure: creating cache ./config.cache
checking for fgetc_unlocked... checking build system type... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/sha1.c -o pic/sha1.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/sha1.c -o sha1.o
x86_64-unknown-cygwin
checking host system type... no
checking for fgets_unlocked... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/alloca.c -o pic/alloca.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/alloca.c -o alloca.o
x86_64-unknown-cygwin
checking target system type... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/argv.c -o pic/argv.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/argv.c -o argv.o
no
sh-unknown-elf
checking for fileno_unlocked... checking LIBRARY_PATH variable... ok
checking GCC_EXEC_PREFIX variable... ok
checking whether to place generated files in the source directory... no
checking whether a default linker was specified... no
checking whether a default assembler was specified... no
checking for x86_64-unknown-cygwin-gcc... gcc
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/choose-temp.c -o pic/choose-temp.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/choose-temp.c -o choose-temp.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/concat.c -o pic/concat.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/concat.c -o concat.o
../../../gcc-4.7.3/libiberty/choose-temp.c: In function ‘choose_temp_base’:
../../../gcc-4.7.3/libiberty/choose-temp.c:72:14: warning: call to ‘mktemp’ declared with attribute warning: the use of `mktemp' is dangerous; use `mkstemp' instead [enabled by default]
   if (mktemp (temp_filename) == 0)
              ^
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/cp-demint.c -o pic/cp-demint.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/cp-demint.c -o cp-demint.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/crc32.c -o pic/crc32.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/crc32.c -o crc32.o
checking for C compiler default output file name... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/dyn-string.c -o pic/dyn-string.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/fdmatch.c -o pic/fdmatch.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/dyn-string.c -o dyn-string.o
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/fdmatch.c -o fdmatch.o
no
checking for fprintf_unlocked... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/fibheap.c -o pic/fibheap.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/fibheap.c -o fibheap.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/filename_cmp.c -o pic/filename_cmp.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/filename_cmp.c -o filename_cmp.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/floatformat.c -o pic/floatformat.o; \
else true; fi
a.exe
checking whether the C compiler works... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/floatformat.c -o floatformat.o
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/fnmatch.c -o pic/fnmatch.o; \
else true; fi
checking whether we are cross compiling... no
checking for suffix of executables... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/fnmatch.c -o fnmatch.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/fopen_unlocked.c -o pic/fopen_unlocked.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/getopt.c -o pic/getopt.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/fopen_unlocked.c -o fopen_unlocked.o
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/getopt.c -o getopt.o
no
.exe
checking for fputc_unlocked... checking for suffix of object files... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/getopt1.c -o pic/getopt1.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/getopt1.c -o getopt1.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/getpwd.c -o pic/getpwd.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/getpwd.c -o getpwd.o
o
checking whether we are using the GNU C compiler... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/getruntime.c -o pic/getruntime.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/getruntime.c -o getruntime.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/hashtab.c -o pic/hashtab.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/hashtab.c -o hashtab.o
yes
checking whether gcc accepts -g... no
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/hex.c -o pic/hex.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/hex.c -o hex.o
checking for fputs_unlocked... yes
checking for gcc option to accept ISO C89... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/lbasename.c -o pic/lbasename.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/lbasename.c -o lbasename.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/lrealpath.c -o pic/lrealpath.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/lrealpath.c -o lrealpath.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/make-relative-prefix.c -o pic/make-relative-prefix.o; \
else true; fi
none needed
checking whether gcc and cc understand -c and -o together... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/make-relative-prefix.c -o make-relative-prefix.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/make-temp-file.c -o pic/make-temp-file.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/make-temp-file.c -o make-temp-file.o
no
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/objalloc.c -o pic/objalloc.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/objalloc.c -o objalloc.o
checking for fread_unlocked... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/obstack.c -o pic/obstack.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/obstack.c -o obstack.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/partition.c -o pic/partition.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/partition.c -o partition.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/pexecute.c -o pic/pexecute.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/pexecute.c -o pexecute.o
yes
no
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/physmem.c -o pic/physmem.o; \
else true; fi
checking for fwrite_unlocked... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/physmem.c -o physmem.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/pex-common.c -o pic/pex-common.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/pex-common.c -o pex-common.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/pex-one.c -o pic/pex-one.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/pex-one.c -o pex-one.o
checking whether we are using the GNU C++ compiler... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/pex-unix.c -o pic/pex-unix.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/pex-unix.c -o pex-unix.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/safe-ctype.c -o pic/safe-ctype.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/safe-ctype.c -o safe-ctype.o
no
yes
checking whether g++ accepts -g... checking for getchar_unlocked... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/simple-object.c -o pic/simple-object.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/simple-object-coff.c -o pic/simple-object-coff.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/simple-object.c -o simple-object.o
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/simple-object-coff.c -o simple-object-coff.o
yes
checking for x86_64-unknown-cygwin-gnatbind... no
checking for x86_64-unknown-cygwin-gnatmake... no
checking whether compiler driver understands Ada... no
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/simple-object-elf.c -o pic/simple-object-elf.o; \
else true; fi
checking how to run the C preprocessor... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/simple-object-elf.c -o simple-object-elf.o
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/simple-object-mach-o.c -o pic/simple-object-mach-o.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/simple-object-mach-o.c -o simple-object-mach-o.o
checking for getc_unlocked... gcc -E
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/sort.c -o pic/sort.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/sort.c -o sort.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/spaces.c -o pic/spaces.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/spaces.c -o spaces.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/splay-tree.c -o pic/splay-tree.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/splay-tree.c -o splay-tree.o
yes
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/stack-limit.c -o pic/stack-limit.o; \
else true; fi
/usr/bin/grep -E
checking for ANSI C header files... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/stack-limit.c -o stack-limit.o
checking for putchar_unlocked... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/strerror.c -o pic/strerror.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/strsignal.c -o pic/strsignal.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/strerror.c -o strerror.o
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/strsignal.c -o strsignal.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/timeval-utils.c -o pic/timeval-utils.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/timeval-utils.c -o timeval-utils.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/unlink-if-ordinary.c -o pic/unlink-if-ordinary.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/unlink-if-ordinary.c -o unlink-if-ordinary.o
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/xatexit.c -o pic/xatexit.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/xatexit.c -o xatexit.o
checking for putc_unlocked... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/xexit.c -o pic/xexit.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/xexit.c -o xexit.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/xmalloc.c -o pic/xmalloc.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/xmalloc.c -o xmalloc.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/xmemdup.c -o pic/xmemdup.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/xmemdup.c -o xmemdup.o
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/xstrdup.c -o pic/xstrdup.o; \
else true; fi
checking for sys/types.h... gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/xstrdup.c -o xstrdup.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/xstrerror.c -o pic/xstrerror.o; \
else true; fi
yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/xstrerror.c -o xstrerror.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/xstrndup.c -o pic/xstrndup.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/xstrndup.c -o xstrndup.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/sigsetmask.c -o pic/sigsetmask.o; \
else true; fi
yes
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/sigsetmask.c -o sigsetmask.o
checking whether abort is declared... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/strverscmp.c -o pic/strverscmp.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/strverscmp.c -o strverscmp.o
checking for sys/stat.h... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../../gcc-4.7.3/libiberty/setproctitle.c -o pic/setproctitle.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -O2  -I. -I../../../gcc-4.7.3/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../../gcc-4.7.3/libiberty/setproctitle.c -o setproctitle.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 ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o  ./sigsetmask.o ./strverscmp.o ./setproctitle.o
yes
yes
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 ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o  ./sigsetmask.o ./strverscmp.o ./setproctitle.o; \
  ranlib ./libiberty.a; \
  cd ..; \
else true; fi
checking whether asprintf is declared... make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/build-x86_64-unknown-cygwin/libiberty'
checking for stdlib.h... yes
yes
checking whether basename is declared... make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/build-x86_64-unknown-cygwin/fixincludes'
gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../../gcc-4.7.3/fixincludes -I../include -I../../../gcc-4.7.3/fixincludes/../include ../../../gcc-4.7.3/fixincludes/fixincl.c
gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../../gcc-4.7.3/fixincludes -I../include -I../../../gcc-4.7.3/fixincludes/../include ../../../gcc-4.7.3/fixincludes/fixtests.c
checking for string.h... gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../../gcc-4.7.3/fixincludes -I../include -I../../../gcc-4.7.3/fixincludes/../include ../../../gcc-4.7.3/fixincludes/fixfixes.c
no
checking whether errno is declared... yes
gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../../gcc-4.7.3/fixincludes -I../include -I../../../gcc-4.7.3/fixincludes/../include ../../../gcc-4.7.3/fixincludes/server.c
checking for memory.h... gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../../gcc-4.7.3/fixincludes -I../include -I../../../gcc-4.7.3/fixincludes/../include ../../../gcc-4.7.3/fixincludes/procopen.c
no
gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../../gcc-4.7.3/fixincludes -I../include -I../../../gcc-4.7.3/fixincludes/../include ../../../gcc-4.7.3/fixincludes/fixlib.c
yes
checking whether getopt is declared... gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wno-overlength-strings -pedantic -Wno-long-long   -DHAVE_CONFIG_H -I. -I../../../gcc-4.7.3/fixincludes -I../include -I../../../gcc-4.7.3/fixincludes/../include ../../../gcc-4.7.3/fixincludes/fixopts.c
checking for strings.h... srcdir="../../../gcc-4.7.3/fixincludes" /bin/sh ../../../gcc-4.7.3/fixincludes/mkfixinc.sh sh-unknown-elf
yes
sed -e 's/@gcc_version@/4.7.3/' < mkheaders.almost > mkheadersT
gcc -g -O2  -o fixincl.exe fixincl.o fixtests.o fixfixes.o server.o procopen.o fixlib.o fixopts.o ../libiberty/libiberty.a
mv -f mkheadersT mkheaders
yes
checking whether vasprintf is declared... checking for inttypes.h... yes
yes
echo timestamp > full-stamp
checking whether clearerr_unlocked is declared... make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/build-x86_64-unknown-cygwin/fixincludes'
checking for stdint.h... no
yes
checking whether feof_unlocked is declared... checking for unistd.h... yes
no
checking minix/config.h usability... checking whether ferror_unlocked is declared... no
checking minix/config.h presence... no
checking whether fflush_unlocked is declared... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking how to run the C preprocessor... gcc -E
no
checking whether fgetc_unlocked is declared... checking for inline... no
inline
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... checking whether fgets_unlocked is declared... no
checking size of void *... no
checking whether fileno_unlocked is declared... no
8
checking whether fprintf_unlocked is declared... checking size of short... no
checking whether fputc_unlocked is declared... 2
checking size of int... no
checking whether fputs_unlocked is declared... no
4
checking size of long... checking whether fread_unlocked is declared... no
checking whether fwrite_unlocked is declared... 8
checking for long long... no
checking whether getchar_unlocked is declared... yes
yes
checking size of long long... checking whether getc_unlocked is declared... yes
checking whether putchar_unlocked is declared... 8
checking for __int64... yes
checking whether putc_unlocked is declared... no
checking for int8_t... yes
checking for working alloca.h... yes
checking for int16_t... yes
checking for alloca... yes
checking for int32_t... yes
checking for ANSI C header files... (cached) yes
checking for nl_langinfo and CODESET... yes
checking whether NLS is requested... yes
checking for catalogs to be installed... yes
checking for int64_t... yes
checking for long long int... yes
checking for intmax_t... yes
checking for intptr_t... yes
checking for uint8_t...  be ca da de el eo es fi fr id ja nl ru sr sv tr uk vi zh_CN zh_TW be ca da de el eo es fi fr id ja nl ru sr sv tr uk vi zh_CN zh_TW
checking for uchar... yes
checking for uint16_t...
checking for ld used by GCC... yes
checking for uint32_t... yes
checking for uint64_t... /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking for shared library run path origin... yes
checking for unsigned long long int... done
checking for iconv... yes
checking for uintmax_t... no, consider installing GNU libiconv
yes
checking for uintptr_t... configure: updating cache ./config.cache
configure: creating ./config.status
yes
checking whether gcc supports -W... yes
checking whether gcc supports -Wall... yes
checking whether gcc supports -Wnarrowing... yes
checking whether gcc supports -Wwrite-strings... yes
checking whether gcc supports -Wcast-qual... yes
checking whether gcc supports -Wstrict-prototypes... config.status: creating Makefile
config.status: creating config.h
yes
checking whether gcc supports -Wmissing-prototypes... config.status: executing depdir commands
mkdir -p -- .deps
yes
checking whether gcc supports -Wmissing-format-attribute... yes
checking whether gcc supports -Wold-style-definition... yes
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libcpp'
gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o charset.o -MT charset.o -MMD -MP -MF .deps/charset.Tpo ../../gcc-4.7.3/libcpp/charset.c
gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o directives.o -MT directives.o -MMD -MP -MF .deps/directives.Tpo ../../gcc-4.7.3/libcpp/directives.c
gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o directives-only.o -MT directives-only.o -MMD -MP -MF .deps/directives-only.Tpo ../../gcc-4.7.3/libcpp/directives-only.c
checking whether gcc supports -Wc++-compat... yes
checking whether gcc supports -pedantic -Wlong-long -Wvariadic-macros -Woverlength-strings... yes
checking whether gcc supports -fno-exceptions... gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o errors.o -MT errors.o -MMD -MP -MF .deps/errors.Tpo ../../gcc-4.7.3/libcpp/errors.c
yes
checking whether gcc supports -fno-rtti... gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o expr.o -MT expr.o -MMD -MP -MF .deps/expr.Tpo ../../gcc-4.7.3/libcpp/expr.c
gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o files.o -MT files.o -MMD -MP -MF .deps/files.Tpo ../../gcc-4.7.3/libcpp/files.c
gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o identifiers.o -MT identifiers.o -MMD -MP -MF .deps/identifiers.Tpo ../../gcc-4.7.3/libcpp/identifiers.c
yes
checking valgrind.h usability... echo "#define LOCALEDIR \"/opt/toolchains/dc/sh-elf/share/locale\"" > localedir.new
../../gcc-4.7.3/libcpp/../move-if-change localedir.new localedir.h
echo timestamp > localedir.hs
gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o lex.o -MT lex.o -MMD -MP -MF .deps/lex.Tpo ../../gcc-4.7.3/libcpp/lex.c
no
checking valgrind.h presence... gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o line-map.o -MT line-map.o -MMD -MP -MF .deps/line-map.Tpo ../../gcc-4.7.3/libcpp/line-map.c
gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o macro.o -MT macro.o -MMD -MP -MF .deps/macro.Tpo ../../gcc-4.7.3/libcpp/macro.c
no
checking for valgrind.h... no
checking for multiarch configuration... no, disabled auto check (cross build configured without --with-sysroot)
configure: WARNING: decimal float is not supported for this target, ignored
configure: WARNING: fixed-point is not supported for this target, ignored
checking whether make sets $(MAKE)... gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o mkdeps.o -MT mkdeps.o -MMD -MP -MF .deps/mkdeps.Tpo ../../gcc-4.7.3/libcpp/mkdeps.c
yes
checking for gawk... gawk
checking whether ln -s works... yes
checking whether ln works... yes
checking for x86_64-unknown-cygwin-ranlib... ranlib
checking for a BSD compatible install... /usr/bin/install -c
checking for cmp's capabilities... gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o pch.o -MT pch.o -MMD -MP -MF .deps/pch.Tpo ../../gcc-4.7.3/libcpp/pch.c
gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o symtab.o -MT symtab.o -MMD -MP -MF .deps/symtab.Tpo ../../gcc-4.7.3/libcpp/symtab.c
gnucompare
checking for mktemp... yes
checking for makeinfo... makeinfo --split-size=5000000
checking for modern makeinfo... gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o traditional.o -MT traditional.o -MMD -MP -MF .deps/traditional.Tpo ../../gcc-4.7.3/libcpp/traditional.c
gcc  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -g -O2 -W -Wall -Wno-narrowing -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long  -I../../gcc-4.7.3/libcpp -I. -I../../gcc-4.7.3/libcpp/../include -I./../intl -I../../gcc-4.7.3/libcpp/include  -c -o init.o -MT init.o -MMD -MP -MF .deps/init.Tpo ../../gcc-4.7.3/libcpp/init.c
yes
checking for recent Pod::Man... yes
checking for flex... flex
checking for bison... bison
checking for nm... nm
checking for ar... ar
checking for ANSI C header files... (cached) yes
checking whether time.h and sys/time.h may both be included... rm -f libcpp.a
ar cru libcpp.a charset.o directives.o directives-only.o errors.o expr.o files.o identifiers.o init.o lex.o line-map.o macro.o mkdeps.o pch.o symtab.o traditional.o
ranlib libcpp.a
yes
checking whether string.h and strings.h may both be included... make[3]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/libcpp'
yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for limits.h... 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 for time.h... yes
checking for iconv.h... no
checking for fcntl.h... yes
checking for unistd.h... (cached) yes
checking for sys/file.h... yes
checking for sys/time.h... yes
checking for sys/mman.h... yes
checking for sys/resource.h... yes
checking for sys/param.h... yes
checking for sys/times.h... yes
checking for sys/stat.h... (cached) yes
checking for direct.h... no
checking for malloc.h... yes
checking for langinfo.h... yes
checking for ldfcn.h... no
checking for locale.h... yes
checking for wchar.h... yes
checking for thread.h... no
checking for pthread.h... yes
checking for CHAR_BIT... yes
checking whether byte ordering is bigendian... no
checking how to run the C++ preprocessor... g++ -E
checking for unordered_map... no
checking for tr1/unordered_map... yes
checking for ext/hash_map... yes
checking for collect2 libraries... none required
checking for library containing exc_resume... no
checking for library containing kstat_open... no
checking for library containing ldexp... none required
checking for inttypes.h... yes
checking for times... yes
checking for clock... yes
checking for kill... yes
checking for getrlimit... yes
checking for setrlimit... yes
checking for atoll... yes
checking for atoq... no
checking for sysconf... yes
checking for strsignal... yes
checking for getrusage... yes
checking for nl_langinfo... yes
checking for gettimeofday... yes
checking for mbstowcs... yes
checking for wcswidth... yes
checking for mmap... yes
checking for setlocale... yes
checking for clearerr_unlocked... no
checking for feof_unlocked... no
checking for ferror_unlocked... no
checking for fflush_unlocked... no
checking for fgetc_unlocked... no
checking for fgets_unlocked... no
checking for fileno_unlocked... no
checking for fprintf_unlocked... no
checking for fputc_unlocked... no
checking for fputs_unlocked... no
checking for fread_unlocked... no
checking for fwrite_unlocked... no
checking for getchar_unlocked... yes
checking for getc_unlocked... yes
checking for putchar_unlocked... yes
checking for putc_unlocked... yes
checking for madvise... yes
checking whether mbstowcs works... yes
checking for ssize_t... yes
checking for caddr_t... yes
checking for sys/mman.h... (cached) yes
checking for mmap... (cached) yes
checking whether read-only mmap of a plain file works... yes
checking whether mmap from /dev/zero works... no
checking for MAP_ANON(YMOUS)... yes
checking whether mmap with MAP_ANON(YMOUS) works... no
checking for pid_t... yes
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 ld used by GCC... /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking for shared library run path origin... done
checking for iconv... no, consider installing GNU libiconv
checking for LC_MESSAGES... yes
checking for nl_langinfo and CODESET... yes
checking whether getenv is declared... yes
checking whether atol is declared... yes
checking whether asprintf is declared... yes
checking whether sbrk is declared... yes
checking whether abort is declared... yes
checking whether atof is declared... yes
checking whether getcwd is declared... yes
checking whether getwd is declared... yes
checking whether strsignal is declared... yes
checking whether strstr is declared... yes
checking whether stpcpy is declared... yes
checking whether strverscmp is declared... no
checking whether errno is declared... yes
checking whether snprintf is declared... yes
checking whether vsnprintf is declared... yes
checking whether vasprintf is declared... yes
checking whether malloc is declared... yes
checking whether realloc is declared... yes
checking whether calloc is declared... yes
checking whether free is declared... yes
checking whether basename is declared... no
checking whether getopt is declared... no
checking whether clock is declared... yes
checking whether getpagesize is declared... yes
checking whether clearerr_unlocked is declared... no
checking whether feof_unlocked is declared... no
checking whether ferror_unlocked is declared... no
checking whether fflush_unlocked is declared... no
checking whether fgetc_unlocked is declared... no
checking whether fgets_unlocked is declared... no
checking whether fileno_unlocked is declared... no
checking whether fprintf_unlocked is declared... no
checking whether fputc_unlocked is declared... no
checking whether fputs_unlocked is declared... no
checking whether fread_unlocked is declared... no
checking whether fwrite_unlocked is declared... no
checking whether getchar_unlocked is declared... yes
checking whether getc_unlocked is declared... yes
checking whether putchar_unlocked is declared... yes
checking whether putc_unlocked is declared... yes
checking whether getrlimit is declared... yes
checking whether setrlimit is declared... yes
checking whether getrusage is declared... yes
checking whether ldgetname is declared... no
checking whether times is declared... yes
checking whether sigaltstack is declared... no
checking whether madvise is declared... yes
checking for struct tms... yes
checking for clock_t... yes
checking for F_SETLKW... yes
checking if mkdir takes one argument... no
Using `../../gcc-4.7.3/gcc/config/sh/sh.c' for machine-specific logic.
Using `../../gcc-4.7.3/gcc/config/sh/sh.md' as machine description file.
Using the following target machine macro files:
        ../../gcc-4.7.3/gcc/config/sh/little.h
        ../../gcc-4.7.3/gcc/config/sh/sh.h
        ../../gcc-4.7.3/gcc/config/dbxelf.h
        ../../gcc-4.7.3/gcc/config/elfos.h
        ../../gcc-4.7.3/gcc/config/sh/elf.h
        ../../gcc-4.7.3/gcc/config/sh/embed-elf.h
        ../../gcc-4.7.3/gcc/config/newlib-stdint.h
        ../../gcc-4.7.3/gcc/config/./sysroot-suffix.h
        ../../gcc-4.7.3/gcc/config/initfini-array.h
Using host-default.o for host machine hooks.
checking whether NLS is requested... yes
checking for catalogs to be installed...  be da de el es fi fr hr id ja nl ru sr sv tr vi zh_CN zh_TW be da de el es fi fr hr id ja nl ru sr sv tr vi zh_CN zh_TW
checking for library containing RegOpenKeyExA... none required
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) 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... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for x86_64-unknown-cygwin-objdump... objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for x86_64-unknown-cygwin-ar... (cached) ar
checking for x86_64-unknown-cygwin-strip... no
checking for strip... strip
checking for x86_64-unknown-cygwin-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... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking dynamic linker characteristics... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
checking if the linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking whether the g++ linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking for g++ option to produce PIC... -DDLL_EXPORT -DPIC
checking if g++ PIC flag -DDLL_EXPORT -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking dynamic linker characteristics... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking what assembler to use... /opt/toolchains/dc/sh-elf/sh-elf/bin/as
checking whether we are using gold... no
checking what linker to use... /opt/toolchains/dc/sh-elf/sh-elf/bin/ld
checking what nm to use... /opt/toolchains/dc/sh-elf/sh-elf/bin/nm
checking what objdump to use... /opt/toolchains/dc/sh-elf/sh-elf/bin/objdump
checking for readelf... /usr/bin/readelf
checking what readelf to use... /usr/bin/readelf
checking assembler flags...
checking assembler for .balign and .p2align... yes
checking assembler for .p2align with maximum skip... yes
checking assembler for .literal16... no
checking assembler for working .subsection -1... yes
checking assembler for .weak... yes
checking assembler for .weakref... yes
checking assembler for .nsubspa comdat... no
checking assembler for .hidden... yes
checking linker for .hidden support... yes
checking linker read-only and read-write section mixing... read-write
checking for .preinit_array/.init_array/.fini_array support... checking cross compile... guessing... no
checking assembler for .sleb128 and .uleb128... yes
checking assembler for cfi directives... yes
checking assembler for working cfi advance... yes
checking assembler for cfi personality directive... yes
checking assembler for cfi sections directive... yes
checking assembler for eh_frame optimization... yes
checking assembler for section merging support... yes
checking assembler for COMDAT group support (GNU as)... yes
checking assembler for line table discriminator support... yes
checking linker -Bstatic/-Bdynamic option... yes
checking linker --demangle support... no
checking linker plugin support... 2
checking assembler for .lcomm with alignment... no
checking assembler for gnu_unique_object... yes
checking assembler for tolerance to line number 0... yes
checking linker PT_GNU_EH_FRAME support... yes
checking linker position independent executable support... yes
checking linker EH-compatible garbage collection of sections... yes
checking linker EH garbage collection of sections bug... no
checking linker --as-needed support... yes
checking linker --build-id support... yes
checking linker *_sol2 emulation support... no
checking linker --sysroot support... yes
checking __stack_chk_fail in target C library... no
checking sys/sdt.h in the target C library... no
checking dl_iterate_phdr in target C library... unknown
Using ggc-page for garbage collection.
checking whether to enable maintainer-specific portions of Makefiles... no
Links are now set up to build a cross-compiler
 from x86_64-unknown-cygwin to sh-unknown-elf.
checking for exported symbols... objdump: conftest: not a dynamic object
yes
checking for -rdynamic... objdump: conftest: not a dynamic object
no
checking for library containing dlopen... none required
checking for -fPIC -shared... no
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating as
config.status: creating collect-ld
config.status: creating nm
config.status: creating Makefile
config.status: creating ada/gcc-interface/Makefile
config.status: creating ada/Makefile
config.status: creating auto-host.h
config.status: executing default commands
make[3]: Entering directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/gcc'
Makefile:3811: warning: overriding recipe for target 'gt-sh.h'
../../gcc-4.7.3/gcc/config/sh/t-sh:86: warning: ignoring old recipe for target 'gt-sh.h'
TARGET_CPU_DEFAULT="" \
HEADERS="auto-host.h ansidecl.h" DEFINES="" \
/bin/sh ../../gcc-4.7.3/gcc/mkconfig.sh config.h
TARGET_CPU_DEFAULT="SELECT_SH4_SINGLE_ONLY" \
HEADERS="options.h insn-constants.h config/sh/little.h config/sh/sh.h config/dbxelf.h config/elfos.h config/sh/elf.h config/sh/embed-elf.h config/newlib-stdint.h sysroot-suffix.h config/initfini-array.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 SH_MULTILIB_CPU_DEFAULT=\"m4-single-only\" SUPPORT_SH4_SINGLE_ONLY=1 SUPPORT_SH4_SINGLE_ONLY=1 SUPPORT_SH4_NOFPU=1 SUPPORT_SH4=1" \
/bin/sh ../../gcc-4.7.3/gcc/mkconfig.sh tm.h
gawk -f ../../gcc-4.7.3/gcc/opt-gather.awk ../../gcc-4.7.3/gcc/ada/gcc-interface/lang.opt ../../gcc-4.7.3/gcc/fortran/lang.opt ../../gcc-4.7.3/gcc/go/lang.opt ../../gcc-4.7.3/gcc/java/lang.opt ../../gcc-4.7.3/gcc/lto/lang.opt ../../gcc-4.7.3/gcc/c-family/c.opt ../../gcc-4.7.3/gcc/common.opt ../../gcc-4.7.3/gcc/config/sh/sh.opt > tmp-optionlist
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-optionlist optionlist
/bin/sh ../../gcc-4.7.3/gcc/config/print-sysroot-suffix.sh \
  "=! m1=!m1 /m1=!/m1 m2a=!m2a /m2a=!/m2a m2a-nofpu=!m2a-nofpu /m2a-nofpu=!/m2a-nofpu m2a-single-only=!m2a-single-only /m2a-single-only=!/m2a-single-only m2a-single=!m2a-single /m2a-single=!/m2a-single m2e=!m2e /m2e=!/m2e m2=!m2 /m2=!/m2 m3e=!m3e /m3e=!/m3e m3=!m3 /m3=!/m3 m4-nofpu=!m4-nofpu /m4-nofpu=!/m4-nofpu m4-single-only=!m4-single-only /m4-single-only=!/m4-single-only m4-single=!m4-single /m4-single=!/m4-single m4=!m4 /m4=!/m4 m4a-nofpu=!m4a-nofpu /m4a-nofpu=!/m4a-nofpu m4a-single-only=!m4a-single-only /m4a-single-only=!/m4a-single-only m4a-single=!m4a-single /m4a-single=!/m4a-single m4a=!m4a /m4a=!/m4a m4al=!m4al /m4al=!/m4al m5-32media=!m5-32media /m5-32media=!/m5-32media m5-32media-nofpu=!m5-32media-nofpu /m5-32media-nofpu=!/m5-32media-nofpu m5-compact=!m5-compact /m5-compact=!/m5-compact m5-compact-nofpu=!m5-compact-nofpu /m5-compact-nofpu=!/m5-compact-nofpu m5-64media=!m5-64media /m5-64media=!/m5-64media m5-64media-nofpu=!m5-64media-nofpu /m5-64media-nofpu=!/m5-64media-nofpu" " m4-single-only/m4-nofpu/m4" \
  "" > tmp-sysroot-suffix.h
TARGET_CPU_DEFAULT="" \
HEADERS="auto-host.h ansidecl.h" DEFINES="" \
/bin/sh ../../gcc-4.7.3/gcc/mkconfig.sh bconfig.h
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
-DBASEVER="\"4.7.3\"" -DDATESTAMP="\"\"" \
-DREVISION="\"\"" \
-DDEVPHASE="\"\"" -DPKGVERSION="\"(GCC) \"" \
-DBUGURL="\"<http://gcc.gnu.org/bugs.html>\"" -o build/version.o ../../gcc-4.7.3/gcc/version.c
echo timestamp > s-options
echo "#define BUILDING_GCC_MAJOR `echo 4.7.3 | sed -e 's/^\([0-9]*\).*$/\1/'`" > bversion.h
TARGET_CPU_DEFAULT="" \
HEADERS="config/sh/sh-protos.h tm-preds.h" DEFINES="" \
/bin/sh ../../gcc-4.7.3/gcc/mkconfig.sh tm_p.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-gi.list gtyp-input.list
echo "#define BUILDING_GCC_MINOR `echo 4.7.3 | sed -e 's/^[0-9]*\.\([0-9]*\).*$/\1/'`" >> bversion.h
echo timestamp > s-gtyp-input
echo "#define BUILDING_GCC_PATCHLEVEL `echo 4.7.3 | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$/\1/'`" >> bversion.h
rm -f tmp-all-tree.def
echo '#include "tree.def"' > tmp-all-tree.def
mv tmp-sysroot-suffix.h sysroot-suffix.h
echo 'END_OF_BASE_TREE_CODES' >> tmp-all-tree.def
echo "#define BUILDING_GCC_VERSION (BUILDING_GCC_MAJOR * 1000 + BUILDING_GCC_MINOR)" >> bversion.h
if test yes = yes \
   || test -n "=! m1=!m1 /m1=!/m1 m2a=!m2a /m2a=!/m2a m2a-nofpu=!m2a-nofpu /m2a-nofpu=!/m2a-nofpu m2a-single-only=!m2a-single-only /m2a-single-only=!/m2a-single-only m2a-single=!m2a-single /m2a-single=!/m2a-single m2e=!m2e /m2e=!/m2e m2=!m2 /m2=!/m2 m3e=!m3e /m3e=!/m3e m3=!m3 /m3=!/m3 m4-nofpu=!m4-nofpu /m4-nofpu=!/m4-nofpu m4-single-only=!m4-single-only /m4-single-only=!/m4-single-only m4-single=!m4-single /m4-single=!/m4-single m4=!m4 /m4=!/m4 m4a-nofpu=!m4a-nofpu /m4a-nofpu=!/m4a-nofpu m4a-single-only=!m4a-single-only /m4a-single-only=!/m4a-single-only m4a-single=!m4a-single /m4a-single=!/m4a-single m4a=!m4a /m4a=!/m4a m4al=!m4al /m4al=!/m4al m5-32media=!m5-32media /m5-32media=!/m5-32media m5-32media-nofpu=!m5-32media-nofpu /m5-32media-nofpu=!/m5-32media-nofpu m5-compact=!m5-compact /m5-compact=!/m5-compact m5-compact-nofpu=!m5-compact-nofpu /m5-compact-nofpu=!/m5-compact-nofpu m5-64media=!m5-64media /m5-64media=!/m5-64media m5-64media-nofpu=!m5-64media-nofpu /m5-64media-nofpu=!/m5-64media-nofpu"; then \
  /bin/sh ../../gcc-4.7.3/gcc/genmultilib \
    " m4-single-only/m4-nofpu/m4" \
    "" \
    "" \
    "ml/m1 ml/m2a* " \
    "" \
    "" \
    "=! m1=!m1 /m1=!/m1 m2a=!m2a /m2a=!/m2a m2a-nofpu=!m2a-nofpu /m2a-nofpu=!/m2a-nofpu m2a-single-only=!m2a-single-only /m2a-single-only=!/m2a-single-only m2a-single=!m2a-single /m2a-single=!/m2a-single m2e=!m2e /m2e=!/m2e m2=!m2 /m2=!/m2 m3e=!m3e /m3e=!/m3e m3=!m3 /m3=!/m3 m4-nofpu=!m4-nofpu /m4-nofpu=!/m4-nofpu m4-single-only=!m4-single-only /m4-single-only=!/m4-single-only m4-single=!m4-single /m4-single=!/m4-single m4=!m4 /m4=!/m4 m4a-nofpu=!m4a-nofpu /m4a-nofpu=!/m4a-nofpu m4a-single-only=!m4a-single-only /m4a-single-only=!/m4a-single-only m4a-single=!m4a-single /m4a-single=!/m4a-single m4a=!m4a /m4a=!/m4a m4al=!m4al /m4al=!/m4al m5-32media=!m5-32media /m5-32media=!/m5-32media m5-32media-nofpu=!m5-32media-nofpu /m5-32media-nofpu=!/m5-32media-nofpu m5-compact=!m5-compact /m5-compact=!/m5-compact m5-compact-nofpu=!m5-compact-nofpu /m5-compact-nofpu=!/m5-compact-nofpu m5-64media=!m5-64media /m5-64media=!/m5-64media m5-64media-nofpu=!m5-64media-nofpu /m5-64media-nofpu=!/m5-64media-nofpu" \
    "" \
    "yes" \
    > tmp-mlib.h; \
else \
  /bin/sh ../../gcc-4.7.3/gcc/genmultilib '' '' '' '' '' '' '' "" no \
    > tmp-mlib.h; \
fi
lsf="../../gcc-4.7.3/gcc/cp/lang-specs.h ../../gcc-4.7.3/gcc/lto/lang-specs.h ../../gcc-4.7.3/gcc/objc/lang-specs.h ../../gcc-4.7.3/gcc/objcp/lang-specs.h"; for f in $lsf; do \
    echo "#include \"$f\""; \
done | sed 's|../../gcc-4.7.3/gcc/||' > tmp-specs.h
echo timestamp > s-bversion
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-specs.h specs.h
echo '#include "c-family/c-common.def"' >> tmp-all-tree.def
echo "gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -Wl,--stack,12582912" > checksum-options.tmp \
&& ../../gcc-4.7.3/gcc/../move-if-change checksum-options.tmp checksum-options
ltf="../../gcc-4.7.3/gcc/ada/gcc-interface/ada-tree.def ../../gcc-4.7.3/gcc/cp/cp-tree.def ../../gcc-4.7.3/gcc/java/java-tree.def ../../gcc-4.7.3/gcc/objc/objc-tree.def"; for f in $ltf; do \
  echo "#include \"$f\""; \
done | sed 's|../../gcc-4.7.3/gcc/||' >> tmp-all-tree.def
echo timestamp > s-specs
cp ../../gcc-4.7.3/gcc/gcc-ar.c gcc-nm.c
cp ../../gcc-4.7.3/gcc/gcc-ar.c gcc-ranlib.c
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-all-tree.def all-tree.def
TARGET_CPU_DEFAULT="" \
HEADERS="auto-host.h ansidecl.h" DEFINES="USED_FOR_TARGET " \
/bin/sh ../../gcc-4.7.3/gcc/mkconfig.sh tconfig.h
(echo "@set version-GCC 4.7.3"; \
 if [ "" = "experimental" ]; \
 then echo "@set DEVELOPMENT"; \
 else echo "@clear DEVELOPMENT"; \
 fi) > gcc-vers.texiT
echo timestamp > s-alltree
echo @set srcdir /home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/gcc/../../gcc-4.7.3/gcc >> gcc-vers.texiT
echo timestamp > gpl.pod
if [ -n "(GCC) " ]; then \
  echo "@set VERSION_PACKAGE (GCC) " >> gcc-vers.texiT; \
fi
perl ../../gcc-4.7.3/gcc/../contrib/texi2pod.pl ../../gcc-4.7.3/gcc/doc/include/gpl_v3.texi > gpl.pod
echo "@set BUGURL @uref{http://gcc.gnu.org/bugs.html}" >> gcc-vers.texiT; \
mv -f gcc-vers.texiT gcc-vers.texi
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genhooks.o ../../gcc-4.7.3/gcc/genhooks.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genchecksum.o ../../gcc-4.7.3/gcc/genchecksum.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genenums.o ../../gcc-4.7.3/gcc/genenums.c
gawk -f ../../gcc-4.7.3/gcc/opt-functions.awk -f ../../gcc-4.7.3/gcc/opt-read.awk \
       -f ../../gcc-4.7.3/gcc/optc-save-gen.awk \
       -v header_name="config.h system.h coretypes.h tm.h" < optionlist > options-save.c
gawk -f ../../gcc-4.7.3/gcc/opt-functions.awk -f ../../gcc-4.7.3/gcc/opt-read.awk \
       -f ../../gcc-4.7.3/gcc/optc-gen.awk \
       -v header_name="config.h system.h coretypes.h tm.h" < optionlist > options.c
gcc -c  -DSTANDARD_STARTFILE_PREFIX=\"../../../\" -DSTANDARD_EXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/lib/gcc/\" -DSTANDARD_LIBEXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/libexec/gcc/\" -DDEFAULT_TARGET_VERSION=\"4.7.3\" -DDEFAULT_TARGET_MACHINE=\"sh-elf\" -DSTANDARD_BINDIR_PREFIX=\"/opt/toolchains/dc/sh-elf/bin/\" -DTOOLDIR_BASE_PREFIX=\"../../../../\"  `test "X${SHLIB}" = "X" || test "yes" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` -DCONFIGURE_SPECS="\"\"" -DTARGET_MACHINE=\"sh-elf\" -DPERSONALITY=\"ar\" -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/gcc-ar.c -o gcc-ar.o
gcc -c  -DSTANDARD_STARTFILE_PREFIX=\"../../../\" -DSTANDARD_EXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/lib/gcc/\" -DSTANDARD_LIBEXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/libexec/gcc/\" -DDEFAULT_TARGET_VERSION=\"4.7.3\" -DDEFAULT_TARGET_MACHINE=\"sh-elf\" -DSTANDARD_BINDIR_PREFIX=\"/opt/toolchains/dc/sh-elf/bin/\" -DTOOLDIR_BASE_PREFIX=\"../../../../\"  `test "X${SHLIB}" = "X" || test "yes" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` -DCONFIGURE_SPECS="\"\"" -DTARGET_MACHINE=\"sh-elf\" -DPERSONALITY=\"nm\" -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    gcc-nm.c -o gcc-nm.o
warning: multiple different help strings for I:
        -I <dir>.       Add <dir> to the end of the main source path
        -I <dir>        Add <dir> to the end of the main include path
warning: multiple different help strings for nostdinc:
        Do not look for source files in standard path
        Do not search standard system include directories (those specified with -isystem will still be used)
gcc -c  -DSTANDARD_STARTFILE_PREFIX=\"../../../\" -DSTANDARD_EXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/lib/gcc/\" -DSTANDARD_LIBEXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/libexec/gcc/\" -DDEFAULT_TARGET_VERSION=\"4.7.3\" -DDEFAULT_TARGET_MACHINE=\"sh-elf\" -DSTANDARD_BINDIR_PREFIX=\"/opt/toolchains/dc/sh-elf/bin/\" -DTOOLDIR_BASE_PREFIX=\"../../../../\"  `test "X${SHLIB}" = "X" || test "yes" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` -DCONFIGURE_SPECS="\"\"" -DTARGET_MACHINE=\"sh-elf\" -DPERSONALITY=\"ranlib\" -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    gcc-ranlib.c -o gcc-ranlib.o
if [ xinfo = xinfo ]; then \
        makeinfo --split-size=5000000 --split-size=5000000 --no-split -I . -I ../../gcc-4.7.3/gcc/doc \
                -I ../../gcc-4.7.3/gcc/doc/include -o doc/cpp.info ../../gcc-4.7.3/gcc/doc/cpp.texi; \
fi
if [ xinfo = xinfo ]; then \
        makeinfo --split-size=5000000 --split-size=5000000 --no-split -I . -I ../../gcc-4.7.3/gcc/doc \
                -I ../../gcc-4.7.3/gcc/doc/include -o doc/gcc.info ../../gcc-4.7.3/gcc/doc/gcc.texi; \
fi
if [ xinfo = xinfo ]; then \
        makeinfo --split-size=5000000 --split-size=5000000 --no-split -I ../../gcc-4.7.3/gcc/doc \
                -I ../../gcc-4.7.3/gcc/doc/include -o doc/gccinstall.info ../../gcc-4.7.3/gcc/doc/install.texi; \
fi
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-mlib.h multilib.h
../../gcc-4.7.3/gcc/doc/install.texi:3162: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3177: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3234: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3241: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3250: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3287: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3304: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3327: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3362: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3374: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3381: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3419: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3432: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3484: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3497: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3608: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3617: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3629: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3649: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3678: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3698: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3713: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3863: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3870: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3877: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3884: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3891: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3898: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3926: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3936: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3943: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:3950: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4002: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4009: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4108: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4115: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4127: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4143: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4149: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4156: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4162: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4169: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4175: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4181: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4188: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4194: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4201: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4209: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4215: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4221: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4232: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4353: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4368: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4430: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4446: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4456: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4481: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4488: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4495: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4503: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4511: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4546: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4556: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4572: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4590: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4602: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4659: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4676: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4686: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4695: warning: @anchor should not appear in @heading
../../gcc-4.7.3/gcc/doc/install.texi:4741: warning: @anchor should not appear in @heading
echo timestamp > s-mlib
if [ xinfo = xinfo ]; then \
        makeinfo --split-size=5000000 --split-size=5000000 --no-split -I . -I ../../gcc-4.7.3/gcc/doc \
                -I ../../gcc-4.7.3/gcc/doc/include -o doc/cppinternals.info ../../gcc-4.7.3/gcc/doc/cppinternals.texi; \
fi
echo timestamp > gcc.pod
perl ../../gcc-4.7.3/gcc/../contrib/texi2pod.pl ../../gcc-4.7.3/gcc/doc/invoke.texi > gcc.pod
echo timestamp > doc/gpl.7
(pod2man --center="GNU" --release="gcc-4.7.3" --date=2013-04-11 --section=7 gpl.pod > doc/gpl.7.T$$ && \
        mv -f doc/gpl.7.T$$ doc/gpl.7) || \
        (rm -f doc/gpl.7.T$$ && exit 1)
gawk -f ../../gcc-4.7.3/gcc/opt-functions.awk -f ../../gcc-4.7.3/gcc/opt-read.awk \
       -f ../../gcc-4.7.3/gcc/opth-gen.awk \
       < optionlist > tmp-options.h
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genconstants.o ../../gcc-4.7.3/gcc/genconstants.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/read-md.o ../../gcc-4.7.3/gcc/read-md.c
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-options.h options.h
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/errors.o ../../gcc-4.7.3/gcc/errors.c
echo timestamp > s-options-h
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genmddeps.o ../../gcc-4.7.3/gcc/genmddeps.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genmodes.o ../../gcc-4.7.3/gcc/genmodes.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/gengenrtl.o ../../gcc-4.7.3/gcc/gengenrtl.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/gengtype.o ../../gcc-4.7.3/gcc/gengtype.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat  -Wno-error -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/gengtype-lex.o ../../gcc-4.7.3/gcc/gengtype-lex.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/gengtype-parse.o ../../gcc-4.7.3/gcc/gengtype-parse.c
gengtype-lex.c: In function ‘yy_get_next_buffer’:
gengtype-lex.c:1096:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
gengtype-lex.c:1887:3: note: in expansion of macro ‘YY_INPUT’
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/gengtype-state.o ../../gcc-4.7.3/gcc/gengtype-state.c
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genhooks \
    build/genhooks.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genchecksum \
    build/genchecksum.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genenums \
    build/genenums.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
build/genhooks "Common Target Hook" \
                                     > tmp-common-target-hooks-def.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-common-target-hooks-def.h \
                                     common/common-target-hooks-def.h
build/genhooks -d \
                ../../gcc-4.7.3/gcc/doc/tm.texi.in > tmp-tm.texi
echo timestamp > s-common-target-hooks-def-h
echo timestamp > doc/gcc.1
(pod2man --center="GNU" --release="gcc-4.7.3" --date=2013-04-11 --section=1 gcc.pod > doc/gcc.1.T$$ && \
        mv -f doc/gcc.1.T$$ doc/gcc.1) || \
        (rm -f doc/gcc.1.T$$ && exit 1)
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genconstants \
    build/genconstants.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
case `echo X|tr X '\101'` in \
  A) tr -d '\015' < tmp-tm.texi > tmp2-tm.texi ;; \
  *) tr -d '\r' < tmp-tm.texi > tmp2-tm.texi ;; \
esac
mv tmp2-tm.texi tmp-tm.texi
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-tm.texi tm.texi
../../gcc-4.7.3/gcc/doc/gcc.texi:89: warning: @tex should only appear at a line beginning
../../gcc-4.7.3/gcc/doc/gcc.texi:89: warning: @end should only appear at a line beginning
../../gcc-4.7.3/gcc/doc/gcc.texi:91: warning: @tex should only appear at a line beginning
../../gcc-4.7.3/gcc/doc/gcc.texi:91: warning: @end should only appear at a line beginning
../../gcc-4.7.3/gcc/doc/invoke.texi:11351: warning: command @tie does not accept arguments
../../gcc-4.7.3/gcc/doc/invoke.texi:11361: warning: command @tie does not accept arguments
../../gcc-4.7.3/gcc/doc/invoke.texi:1016: warning: node next `Overall Options' in menu `C Dialect Options' and in sectioning `Invoking G++' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:1016: warning: node up `Overall Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:1481: warning: node prev `C Dialect Options' in menu `Overall Options' and in sectioning `Invoking G++' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:1481: warning: node up `C Dialect Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:1871: warning: node up `C++ Dialect Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:2608: warning: node up `Objective-C and Objective-C++ Dialect Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:2840: warning: node up `Language Independent Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:2888: warning: node up `Warning Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:4691: warning: node up `Debugging Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:6112: warning: node up `Optimize Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:9280: warning: node up `Preprocessor Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:9318: warning: node up `Assembler Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:9341: warning: node up `Link Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:9592: warning: node up `Directory Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:9736: warning: node up `Spec Files' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/invoke.texi:10295: warning: node up `Target Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
../../gcc-4.7.3/gcc/doc/implement-c.texi:6: warning: node next `C Implementation' in menu `C Extensions' and in sectioning `C++ Implementation' differ
../../gcc-4.7.3/gcc/doc/implement-cxx.texi:6: warning: node next `C++ Implementation' in menu `C++ Extensions' and in sectioning `C Extensions' differ
../../gcc-4.7.3/gcc/doc/implement-cxx.texi:6: warning: node prev `C++ Implementation' in menu `C Extensions' and in sectioning `C Implementation' differ
../../gcc-4.7.3/gcc/doc/extend.texi:8: warning: node next `C Extensions' in menu `C++ Implementation' and in sectioning `C++ Extensions' differ
../../gcc-4.7.3/gcc/doc/extend.texi:8: warning: node prev `C Extensions' in menu `C Implementation' and in sectioning `C++ Implementation' differ
../../gcc-4.7.3/gcc/doc/extend.texi:772: warning: node next `Conditionals' in menu `Long Long' and in sectioning `__int128' differ
../../gcc-4.7.3/gcc/doc/extend.texi:810: warning: node next `__int128' in menu `Complex' and in sectioning `Long Long' differ
../../gcc-4.7.3/gcc/doc/extend.texi:810: warning: node prev `__int128' in menu `Long Long' and in sectioning `Conditionals' differ
../../gcc-4.7.3/gcc/doc/extend.texi:821: warning: node next `Long Long' in menu `__int128' and in sectioning `Complex' differ
../../gcc-4.7.3/gcc/doc/extend.texi:821: warning: node prev `Long Long' in menu `Conditionals' and in sectioning `__int128' differ
../../gcc-4.7.3/gcc/doc/extend.texi:853: warning: node prev `Complex' in menu `__int128' and in sectioning `Long Long' differ
../../gcc-4.7.3/gcc/doc/extend.texi:1411: warning: node next `Zero Length' in menu `Variable Length' and in sectioning `Empty Structures' differ
../../gcc-4.7.3/gcc/doc/extend.texi:1509: warning: node next `Empty Structures' in menu `Variadic Macros' and in sectioning `Variable Length' differ
../../gcc-4.7.3/gcc/doc/extend.texi:1509: warning: node prev `Empty Structures' in menu `Variable Length' and in sectioning `Zero Length' differ
../../gcc-4.7.3/gcc/doc/extend.texi:1525: warning: node next `Variable Length' in menu `Empty Structures' and in sectioning `Variadic Macros' differ
../../gcc-4.7.3/gcc/doc/extend.texi:1525: warning: node prev `Variable Length' in menu `Zero Length' and in sectioning `Empty Structures' differ
../../gcc-4.7.3/gcc/doc/extend.texi:1606: warning: node prev `Variadic Macros' in menu `Empty Structures' and in sectioning `Variable Length' differ
../../gcc-4.7.3/gcc/doc/extend.texi:1845: warning: node next `Designated Inits' in menu `Cast to Union' and in sectioning `Case Ranges' differ
../../gcc-4.7.3/gcc/doc/extend.texi:1989: warning: node next `Case Ranges' in menu `Mixed Declarations' and in sectioning `Cast to Union' differ
../../gcc-4.7.3/gcc/doc/extend.texi:1989: warning: node prev `Case Ranges' in menu `Cast to Union' and in sectioning `Designated Inits' differ
../../gcc-4.7.3/gcc/doc/extend.texi:2026: warning: node next `Cast to Union' in menu `Case Ranges' and in sectioning `Mixed Declarations' differ
../../gcc-4.7.3/gcc/doc/extend.texi:2026: warning: node prev `Cast to Union' in menu `Designated Inits' and in sectioning `Case Ranges' differ
../../gcc-4.7.3/gcc/doc/extend.texi:2067: warning: node prev `Mixed Declarations' in menu `Case Ranges' and in sectioning `Cast to Union' differ
../../gcc-4.7.3/gcc/doc/extend.texi:10954: warning: node next `MIPS Loongson Built-in Functions' in menu `Other MIPS Built-in Functions' and in sectioning `picoChip Built-in Functions' differ
../../gcc-4.7.3/gcc/doc/extend.texi:11357: warning: node next `picoChip Built-in Functions' in menu `PowerPC AltiVec/VSX Built-in Functions' and in sectioning `Other MIPS Built-in Functions' differ
../../gcc-4.7.3/gcc/doc/extend.texi:11357: warning: node prev `picoChip Built-in Functions' in menu `Other MIPS Built-in Functions' and in sectioning `MIPS Loongson Built-in Functions' differ
../../gcc-4.7.3/gcc/doc/extend.texi:11393: warning: node next `Other MIPS Built-in Functions' in menu `picoChip Built-in Functions' and in sectioning `PowerPC AltiVec/VSX Built-in Functions' differ
../../gcc-4.7.3/gcc/doc/extend.texi:11393: warning: node prev `Other MIPS Built-in Functions' in menu `MIPS Loongson Built-in Functions' and in sectioning `picoChip Built-in Functions' differ
../../gcc-4.7.3/gcc/doc/extend.texi:11405: warning: node prev `PowerPC AltiVec/VSX Built-in Functions' in menu `picoChip Built-in Functions' and in sectioning `Other MIPS Built-in Functions' differ
../../gcc-4.7.3/gcc/doc/extend.texi:14866: warning: node prev `C++ Extensions' in menu `C++ Implementation' and in sectioning `C Extensions' differ
../../gcc-4.7.3/gcc/doc/trouble.texi:7: warning: node next `Trouble' in menu `Service' and in sectioning `Bugs' differ
../../gcc-4.7.3/gcc/doc/trouble.texi:7: warning: node prev `Trouble' in menu `Bug Reporting' and in sectioning `Gcov' differ
../../gcc-4.7.3/gcc/doc/trouble.texi:7: warning: node up `Trouble' in menu `Bugs' and in sectioning `Top' differ
../../gcc-4.7.3/gcc/doc/service.texi:6: warning: node prev `Service' in menu `Trouble' and in sectioning `Bugs' differ
../../gcc-4.7.3/gcc/doc/service.texi:6: warning: node up `Service' in menu `Bugs' and in sectioning `Top' differ
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genmddeps \
    build/genmddeps.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genmodes \
    build/genmodes.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/gengenrtl \
    build/gengenrtl.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/gengtype \
    build/gengtype.o build/errors.o build/gengtype-lex.o build/gengtype-parse.o build/gengtype-state.o build/version.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
build/genmodes -m > tmp-min-modes.c
build/genhooks "Target Hook" \
                                     > tmp-target-hooks-def.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-min-modes.c min-insn-modes.c
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-target-hooks-def.h \
                                     target-hooks-def.h
echo timestamp > s-modes-m
build/genhooks "C Target Hook" \
                                     > tmp-c-target-hooks-def.h
echo timestamp > s-target-hooks-def-h
build/genmodes > tmp-modes.c
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-c-target-hooks-def.h \
                                     c-family/c-target-hooks-def.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-modes.c insn-modes.c
echo timestamp > s-c-target-hooks-def-h
echo timestamp > s-modes
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/lto-wrapper.c -o lto-wrapper.o
build/genmddeps ../../gcc-4.7.3/gcc/config/sh/sh.md > tmp-mddeps
build/genmodes -h > tmp-modes.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-modes.h insn-modes.h
echo timestamp > s-modes-h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-mddeps mddeps.mk
build/gengenrtl > tmp-genrtl.h
echo timestamp > s-mddeps
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-genrtl.h genrtl.h
build/gengtype  \
                    -S ../../gcc-4.7.3/gcc -I gtyp-input.list -w tmp-gtype.state
echo timestamp > s-genrtl-h
build/genenums ../../gcc-4.7.3/gcc/config/sh/sh.md \
   > tmp-enums.c
if [ xinfo = xinfo ]; then \
        makeinfo --split-size=5000000 --split-size=5000000 --no-split -I . -I ../../gcc-4.7.3/gcc/doc \
                -I ../../gcc-4.7.3/gcc/doc/include -o doc/gccint.info ../../gcc-4.7.3/gcc/doc/gccint.texi; \
fi
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-enums.c insn-enums.c
echo timestamp > s-enums
cp doc/gcc.1 doc/g++.1
build/genconstants ../../gcc-4.7.3/gcc/config/sh/sh.md \
   > tmp-constants.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-constants.h insn-constants.h
echo timestamp > s-constants
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/min-insn-modes.o min-insn-modes.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genflags.o ../../gcc-4.7.3/gcc/genflags.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/read-rtl.o ../../gcc-4.7.3/gcc/read-rtl.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/gensupport.o ../../gcc-4.7.3/gcc/gensupport.c
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-gtype.state gtype.state
build/gengtype  \
                    -r gtype.state
echo timestamp > s-gtype
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/print-rtl.o ../../gcc-4.7.3/gcc/print-rtl.c
gcc -c -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genconditions.o ../../gcc-4.7.3/gcc/genconditions.c
gcc -c -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genpreds.o ../../gcc-4.7.3/gcc/genpreds.c
gcc -c -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/gencheck.o ../../gcc-4.7.3/gcc/gencheck.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genattr.o ../../gcc-4.7.3/gcc/genattr.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genattr-common.o ../../gcc-4.7.3/gcc/genattr-common.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/gencodes.o ../../gcc-4.7.3/gcc/gencodes.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genconfig.o ../../gcc-4.7.3/gcc/genconfig.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genautomata.o ../../gcc-4.7.3/gcc/genautomata.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genemit.o ../../gcc-4.7.3/gcc/genemit.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genextract.o ../../gcc-4.7.3/gcc/genextract.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genopinit.o ../../gcc-4.7.3/gcc/genopinit.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genoutput.o ../../gcc-4.7.3/gcc/genoutput.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genpeep.o ../../gcc-4.7.3/gcc/genpeep.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genrecog.o ../../gcc-4.7.3/gcc/genrecog.c
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/gencheck \
    build/gencheck.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/genattrtab.o ../../gcc-4.7.3/gcc/genattrtab.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/rtl.o ../../gcc-4.7.3/gcc/rtl.c
../../gcc-4.7.3/gcc/doc/sourcebuild.texi:679: warning: @itemx should not begin @table
./tm.texi:11369: warning: @end should only appear at a line beginning
../../gcc-4.7.3/gcc/doc/passes.texi:9: warning: node next `Passes' in menu `GENERIC' and in sectioning `RTL' differ
../../gcc-4.7.3/gcc/doc/rtl.texi:7: warning: node next `RTL' in menu `Control Flow' and in sectioning `GENERIC' differ
../../gcc-4.7.3/gcc/doc/rtl.texi:7: warning: node prev `RTL' in menu `Tree SSA' and in sectioning `Passes' differ
../../gcc-4.7.3/gcc/doc/generic.texi:10: warning: node prev `GENERIC' in menu `Passes' and in sectioning `RTL' differ
../../gcc-4.7.3/gcc/doc/tree-ssa.texi:10: warning: node next `Tree SSA' in menu `RTL' and in sectioning `Loop Analysis and Representation' differ
../../gcc-4.7.3/gcc/doc/loop.texi:10: warning: node next `Loop Analysis and Representation' in menu `Machine Desc' and in sectioning `Control Flow' differ
../../gcc-4.7.3/gcc/doc/loop.texi:10: warning: node prev `Loop Analysis and Representation' in menu `Control Flow' and in sectioning `Tree SSA' differ
../../gcc-4.7.3/gcc/doc/cfg.texi:11: warning: node next `Control Flow' in menu `Loop Analysis and Representation' and in sectioning `Machine Desc' differ
../../gcc-4.7.3/gcc/doc/cfg.texi:11: warning: node prev `Control Flow' in menu `RTL' and in sectioning `Loop Analysis and Representation' differ
../../gcc-4.7.3/gcc/doc/md.texi:8: warning: node prev `Machine Desc' in menu `Loop Analysis and Representation' and in sectioning `Control Flow' differ
../../gcc-4.7.3/gcc/doc/md.texi:1522: warning: node next `Modifiers' in menu `Disable Insn Alternatives' and in sectioning `Machine Constraints' differ
../../gcc-4.7.3/gcc/doc/md.texi:1631: warning: node next `Machine Constraints' in menu `Define Constraints' and in sectioning `Disable Insn Alternatives' differ
../../gcc-4.7.3/gcc/doc/md.texi:1631: warning: node prev `Machine Constraints' in menu `Disable Insn Alternatives' and in sectioning `Modifiers' differ
../../gcc-4.7.3/gcc/doc/md.texi:3755: warning: node next `Disable Insn Alternatives' in menu `Machine Constraints' and in sectioning `Define Constraints' differ
../../gcc-4.7.3/gcc/doc/md.texi:3755: warning: node prev `Disable Insn Alternatives' in menu `Modifiers' and in sectioning `Machine Constraints' differ
../../gcc-4.7.3/gcc/doc/md.texi:3848: warning: node prev `Define Constraints' in menu `Machine Constraints' and in sectioning `Disable Insn Alternatives' differ
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/ggc-none.o ../../gcc-4.7.3/gcc/ggc-none.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/vec.o ../../gcc-4.7.3/gcc/vec.c
build/gencheck > tmp-check.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-check.h tree-check.h
echo timestamp > s-check
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genflags \
    build/genflags.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genconditions \
    build/genconditions.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genpreds \
    build/genpreds.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genattr \
    build/genattr.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genattr-common \
    build/genattr-common.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/gencodes \
    build/gencodes.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genconfig \
    build/genconfig.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genattrtab \
    build/genattrtab.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genautomata \
    build/genautomata.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a -lm
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genemit \
    build/genemit.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genextract \
    build/genextract.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genopinit \
    build/genopinit.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genoutput \
    build/genoutput.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genpeep \
    build/genpeep.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
build/genpreds ../../gcc-4.7.3/gcc/config/sh/sh.md > tmp-preds.c
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/genrecog \
    build/genrecog.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-preds.c insn-preds.c
echo timestamp > s-preds
build/genconditions ../../gcc-4.7.3/gcc/config/sh/sh.md > tmp-condmd.c
build/genpreds -h ../../gcc-4.7.3/gcc/config/sh/sh.md > tmp-preds.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-condmd.c build/gencondmd.c
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-preds.h tm-preds.h
build/genpreds -c ../../gcc-4.7.3/gcc/config/sh/sh.md > tmp-constrs.h
echo timestamp > s-conditions
echo timestamp > s-preds-h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-constrs.h tm-constrs.h
echo timestamp > s-constrs-h
gcc -c -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/gencondmd.o build/gencondmd.c
In file included from ../../gcc-4.7.3/gcc/function.h:25:0,
                 from build/gencondmd.c:25:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 -o build/gencondmd \
    build/gencondmd.o ../build-x86_64-unknown-cygwin/libiberty/libiberty.a
build/gencondmd > tmp-cond.md
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-cond.md insn-conditions.md
echo timestamp > s-condmd
build/genflags ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-flags.h
build/genattr ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-attr.h
build/genattr-common ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-attr-common.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-attr.h insn-attr.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-attr-common.h insn-attr-common.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-flags.h insn-flags.h
echo timestamp > s-attr
echo timestamp > s-attr-common
build/gencodes ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-codes.h
echo timestamp > s-flags
build/genconfig ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-config.h
build/genattrtab ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-attrtab.c
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-codes.h insn-codes.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-config.h insn-config.h
echo timestamp > s-codes
echo timestamp > s-config
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-attrtab.c insn-attrtab.c
build/genautomata ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-automata.c
build/genemit ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-emit.c
echo timestamp > s-attrtab
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-emit.c insn-emit.c
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-automata.c insn-automata.c
build/genextract ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-extract.c
echo timestamp > s-emit
echo timestamp > s-automata
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-extract.c insn-extract.c
build/genopinit ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-opinit.c
build/genoutput ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-output.c
echo timestamp > s-extract
build/genpeep ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-peep.c
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-opinit.c insn-opinit.c
../../gcc-4.7.3/gcc/config/sh/sh.md:2294: '@' is redundant for output template with single alternative
../../gcc-4.7.3/gcc/config/sh/sh.md:2306: '@' is redundant for output template with single alternative
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-output.c insn-output.c
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-peep.c insn-peep.c
echo timestamp > s-opinit
echo timestamp > s-output
echo timestamp > s-peep
build/genrecog ../../gcc-4.7.3/gcc/config/sh/sh.md \
  insn-conditions.md > tmp-recog.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/build -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
        -o build/gcov-iov.o ../../gcc-4.7.3/gcc/gcov-iov.c
../../gcc-4.7.3/gcc/config/sh/sh.md:1300: warning: source missing a mode?
../../gcc-4.7.3/gcc/config/sh/sh.md:1313: warning: source missing a mode?
../../gcc-4.7.3/gcc/config/sh/sh.md:7230: warning: source missing a mode?
../../gcc-4.7.3/gcc/config/sh/sh.md:9416: warning: source missing a mode?
../../gcc-4.7.3/gcc/config/sh/sh.md:9431: warning: source missing a mode?
../../gcc-4.7.3/gcc/config/sh/sh.md:11336: warning: source missing a mode?
../../gcc-4.7.3/gcc/config/sh/sh.md:7230: warning: source missing a mode?
../../gcc-4.7.3/gcc/config/sh/sh.md:11484: warning: constraints not supported in define_peephole2
../../gcc-4.7.3/gcc/config/sh/sh.md:11484: warning: destination operand 0 allows non-lvalue
../../gcc-4.7.3/gcc/config/sh/sh.md:11484: warning: constraints not supported in define_peephole2
../../gcc-4.7.3/gcc/config/sh/sh.md:11484: warning: constraints not supported in define_peephole2
../../gcc-4.7.3/gcc/config/sh/sh.md:11484: warning: destination operand 0 allows non-lvalue
../../gcc-4.7.3/gcc/config/sh/sh.md:11484: warning: constraints not supported in define_peephole2
../../gcc-4.7.3/gcc/config/sh/sh.md:11484: warning: source missing a mode?
../../gcc-4.7.3/gcc/config/sh/sh.md:11484: warning: constraints not supported in define_peephole2
../../gcc-4.7.3/gcc/config/sh/sh.md:11484: warning: constraints not supported in define_peephole2
../../gcc-4.7.3/gcc/config/sh/sh.md:11501: warning: constraints not supported in define_peephole2
../../gcc-4.7.3/gcc/config/sh/sh.md:11501: warning: destination operand 0 allows non-lvalue
../../gcc-4.7.3/gcc/config/sh/sh.md:11501: warning: constraints not supported in define_peephole2
../../gcc-4.7.3/gcc/config/sh/sh.md:11501: warning: constraints not supported in define_peephole2
../../gcc-4.7.3/gcc/config/sh/sh.md:11501: warning: destination operand 0 allows non-lvalue
../../gcc-4.7.3/gcc/config/sh/sh.md:11501: warning: constraints not supported in define_peephole2
../../gcc-4.7.3/gcc/config/sh/sh.md:11501: warning: source missing a mode?
../../gcc-4.7.3/gcc/config/sh/sh.md:11501: warning: constraints not supported in define_peephole2
../../gcc-4.7.3/gcc/config/sh/sh.md:11501: warning: constraints not supported in define_peephole2
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-recog.c insn-recog.c
echo timestamp > s-recog
(SHLIB=''; \
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    -DSTANDARD_STARTFILE_PREFIX=\"../../../\" -DSTANDARD_EXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/lib/gcc/\" -DSTANDARD_LIBEXEC_PREFIX=\"/opt/toolchains/dc/sh-elf/libexec/gcc/\" -DDEFAULT_TARGET_VERSION=\"4.7.3\" -DDEFAULT_TARGET_MACHINE=\"sh-elf\" -DSTANDARD_BINDIR_PREFIX=\"/opt/toolchains/dc/sh-elf/bin/\" -DTOOLDIR_BASE_PREFIX=\"../../../../\"  `test "X${SHLIB}" = "X" || test "yes" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` -DCONFIGURE_SPECS="\"\"" \
        -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber   ../../gcc-4.7.3/gcc/cp/g++spec.c)
gcc   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -DGENERATOR_FILE -Wl,--stack,12582912 \
        build/gcov-iov.o -o build/gcov-iov
build/gcov-iov '4.7.3' '' \
    > tmp-gcov-iov.h
/bin/sh ../../gcc-4.7.3/gcc/../move-if-change tmp-gcov-iov.h gcov-iov.h
echo timestamp > s-iov
gcc -c  -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-lang.c -o c-lang.o
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/stub-objc.c -o c-family/stub-objc.o
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/attribs.c -o attribs.o
In file included from ../../gcc-4.7.3/gcc/c-lang.c:27:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/attribs.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/c-family/stub-objc.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-errors.c -o c-errors.o
gcc -c  -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-decl.c -o c-decl.o
gcc -c  -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-typeck.c -o c-typeck.o
In file included from ../../gcc-4.7.3/gcc/c-errors.c:25:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/c-decl.c:35:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-convert.c -o c-convert.o
In file included from ../../gcc-4.7.3/gcc/c-typeck.c:32:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/c-convert.c:31:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-aux-info.c -o c-aux-info.o
In file included from ../../gcc-4.7.3/gcc/c-aux-info.c:29:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-objc-common.c -o c-objc-common.o
In file included from ../../gcc-4.7.3/gcc/c-objc-common.c:24:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-parser.c -o c-parser.o
In file included from ../../gcc-4.7.3/gcc/c-parser.c:44:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/tree-mudflap.c -o tree-mudflap.o
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-common.c -o c-family/c-common.o
In file included from ../../gcc-4.7.3/gcc/tree-mudflap.c:28:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/c-family/c-common.c:27:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-cppbuiltin.c -o c-family/c-cppbuiltin.o
In file included from ../../gcc-4.7.3/gcc/c-family/c-cppbuiltin.c:25:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-dump.c -o c-family/c-dump.o
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-format.c -o c-family/c-format.o
In file included from ../../gcc-4.7.3/gcc/c-family/c-dump.c:25:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-gimplify.c -o c-family/c-gimplify.o
In file included from ../../gcc-4.7.3/gcc/c-family/c-format.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/c-family/c-gimplify.c:31:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-lex.c -o c-family/c-lex.o
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-omp.c -o c-family/c-omp.o
In file included from ../../gcc-4.7.3/gcc/c-family/c-lex.c:27:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-opts.c -o c-family/c-opts.o
In file included from ../../gcc-4.7.3/gcc/c-family/c-omp.c:28:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DHOST_MACHINE=\"x86_64-unknown-cygwin\" -DTARGET_MACHINE=\"sh-unknown-elf\" -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-pch.c -o c-family/c-pch.o
In file included from ../../gcc-4.7.3/gcc/c-family/c-opts.c:25:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/c-family/c-pch.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-ppoutput.c -o c-family/c-ppoutput.o
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-pragma.c -o c-family/c-pragma.o
In file included from ../../gcc-4.7.3/gcc/c-family/c-ppoutput.c:25:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/c-family/c-pragma.c:25:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-pretty-print.c -o c-family/c-pretty-print.o
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-semantics.c -o c-family/c-semantics.o
In file included from ../../gcc-4.7.3/gcc/c-family/c-pretty-print.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes  -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -Ic-family -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/c-family -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/c-family/c-ada-spec.c -o c-family/c-ada-spec.o
In file included from ../../gcc-4.7.3/gcc/c-family/c-semantics.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    \
  ../../gcc-4.7.3/gcc/config/default-c.c -o default-c.o
In file included from ../../gcc-4.7.3/gcc/c-family/c-ada-spec.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/c-family/c-target-def.h:20:0,
                 from ../../gcc-4.7.3/gcc/config/default-c.c:25:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber   \
        ../../gcc-4.7.3/gcc/config/sh/sh-c.c
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/main.c -o main.o
In file included from ../../gcc-4.7.3/gcc/config/sh/sh-c.c:26:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    insn-attrtab.c -o insn-attrtab.o
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    insn-automata.c -o insn-automata.o
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    insn-emit.c -o insn-emit.o
In file included from ../../gcc-4.7.3/gcc/function.h:25:0,
                 from insn-automata.c:17:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/function.h:25:0,
                 from insn-attrtab.c:17:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/function.h:25:0,
                 from insn-emit.c:10:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    insn-extract.c -o insn-extract.o
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    insn-modes.c -o insn-modes.o
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    insn-opinit.c -o insn-opinit.o
In file included from ../../gcc-4.7.3/gcc/function.h:25:0,
                 from ../../gcc-4.7.3/gcc/expr.h:26,
                 from insn-opinit.c:13:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    insn-output.c -o insn-output.o
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    insn-peep.c -o insn-peep.o
In file included from ../../gcc-4.7.3/gcc/function.h:25:0,
                 from ../../gcc-4.7.3/gcc/expr.h:26,
                 from insn-output.c:11:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/function.h:25:0,
                 from insn-peep.c:15:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    insn-preds.c -o insn-preds.o
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    insn-recog.c -o insn-recog.o
In file included from insn-preds.c:9:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
In file included from ../../gcc-4.7.3/gcc/function.h:25:0,
                 from insn-recog.c:10:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    insn-enums.c -o insn-enums.o
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/ggc-page.c -o ggc-page.o
In file included from ../../gcc-4.7.3/gcc/ggc-page.c:25:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
gcc -c   -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat   -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.7.3/gcc -I../../gcc-4.7.3/gcc/. -I../../gcc-4.7.3/gcc/../include -I./../intl -I../../gcc-4.7.3/gcc/../libcpp/include  -I../../gcc-4.7.3/gcc/../libdecnumber -I../../gcc-4.7.3/gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc-4.7.3/gcc/alias.c -o alias.o
/bin/sh: line 5: 10172 Segmentation fault      (core dumped) make "DESTDIR=" "RPATH_ENVVAR=PATH" "TARGET_SUBDIR=sh-elf" "bindir=/opt/toolchains/dc/sh-elf/bin" "datadir=/opt/toolchains/dc/sh-elf/share" "exec_prefix=/opt/toolchains/dc/sh-elf" "includedir=/opt/toolchains/dc/sh-elf/include" "datarootdir=/opt/toolchains/dc/sh-elf/share" "docdir=/opt/toolchains/dc/sh-elf/share/doc/" "infodir=/opt/toolchains/dc/sh-elf/share/info" "pdfdir=/opt/toolchains/dc/sh-elf/share/doc/" "htmldir=/opt/toolchains/dc/sh-elf/share/doc/" "libdir=/opt/toolchains/dc/sh-elf/lib" "libexecdir=/opt/toolchains/dc/sh-elf/libexec" "lispdir=" "localstatedir=/opt/toolchains/dc/sh-elf/var" "mandir=/opt/toolchains/dc/sh-elf/share/man" "oldincludedir=/usr/include" "prefix=/opt/toolchains/dc/sh-elf" "sbindir=/opt/toolchains/dc/sh-elf/sbin" "sharedstatedir=/opt/toolchains/dc/sh-elf/com" "sysconfdir=/opt/toolchains/dc/sh-elf/etc" "tooldir=/opt/toolchains/dc/sh-elf/sh-elf" "build_tooldir=/opt/toolchains/dc/sh-elf/sh-elf" "target_alias=sh-elf" "AWK=gawk" "BISON=bison" "CC_FOR_BUILD=gcc" "CFLAGS_FOR_BUILD=-g -O2" "CXX_FOR_BUILD=g++" "EXPECT=expect" "FLEX=flex" "INSTALL=/usr/bin/install -c" "INSTALL_DATA=/usr/bin/install -c -m 644" "INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install -c" "LDFLAGS_FOR_BUILD=" "LEX=flex" "M4=m4" "MAKE=make" "RUNTEST=runtest" "RUNTESTFLAGS=" "SED=/usr/bin/sed" "SHELL=/bin/sh" "YACC=bison -y" "`echo 'ADAFLAGS=' | sed -e s'/[^=][^=]*=$/XFOO=/'`" "ADA_CFLAGS=" "AR_FLAGS=rc" "`echo 'BOOT_ADAFLAGS=-gnatpg -gnata' | sed -e s'/[^=][^=]*=$/XFOO=/'`" "BOOT_CFLAGS=-g -O2" "BOOT_LDFLAGS=-Wl,--stack,12582912" "CFLAGS=-g -O2" "CXXFLAGS=-g -O2" "LDFLAGS=-Wl,--stack,12582912" "LIBCFLAGS=-g -O2" "LIBCXXFLAGS=-g -O2 -fno-implicit-templates" "STAGE1_CHECKING=--enable-checking=yes,types" "STAGE1_LANGUAGES=c,c++,lto" "GNATBIND=no" "GNATMAKE=no" "AR_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/ar" "AS_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/as" "CC_FOR_TARGET=/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/xgcc -B/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3/./gcc/" "CFLAGS_FOR_TARGET=-g -O2" "CPPFLAGS_FOR_TARGET=" "CXXFLAGS_FOR_TARGET=-g -O2" "DLLTOOL_FOR_TARGET=sh-elf-dlltool" "FLAGS_FOR_TARGET=-B/opt/toolchains/dc/sh-elf/sh-elf/bin/ -B/opt/toolchains/dc/sh-elf/sh-elf/lib/ -isystem /opt/toolchains/dc/sh-elf/sh-elf/include -isystem /opt/toolchains/dc/sh-elf/sh-elf/sys-include" "GCJ_FOR_TARGET=sh-elf-gcj" "GFORTRAN_FOR_TARGET=sh-elf-gfortran" "GOC_FOR_TARGET=sh-elf-gccgo" "GOCFLAGS_FOR_TARGET=-O2 -g" "LD_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/ld" "LIPO_FOR_TARGET=sh-elf-lipo" "LDFLAGS_FOR_TARGET=" "LIBCFLAGS_FOR_TARGET=-g -O2" "LIBCXXFLAGS_FOR_TARGET=-g -O2 -fno-implicit-templates" "NM_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/nm" "OBJDUMP_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/objdump" "RANLIB_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib" "READELF_FOR_TARGET=sh-elf-readelf" "STRIP_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/strip" "WINDRES_FOR_TARGET=sh-elf-windres" "WINDMC_FOR_TARGET=sh-elf-windmc" "BUILD_CONFIG=" "`echo 'LANGUAGES=' | sed -e s'/[^=][^=]*=$/XFOO=/'`" "LEAN=false" "STAGE1_CFLAGS=-g -fkeep-inline-functions" "STAGE1_CXXFLAGS=-g -O2" "STAGE1_TFLAGS=" "STAGE2_CFLAGS=-g -O2" "STAGE2_CXXFLAGS=-g -O2" "STAGE2_TFLAGS=" "STAGE3_CFLAGS=-g -O2" "STAGE3_CXXFLAGS=-g -O2" "STAGE3_TFLAGS=" "STAGE4_CFLAGS=-g -O2" "STAGE4_CXXFLAGS=-g -O2" "STAGE4_TFLAGS=" "STAGEprofile_CFLAGS=-g -O2 -fprofile-generate" "STAGEprofile_CXXFLAGS=-g -O2" "STAGEprofile_TFLAGS=" "STAGEfeedback_CFLAGS=-g -O2 -fprofile-use" "STAGEfeedback_CXXFLAGS=-g -O2" "STAGEfeedback_TFLAGS=" "TFLAGS=" "CONFIG_SHELL=/bin/sh" "MAKEINFO=makeinfo --split-size=5000000 --split-size=5000000" 'AR=ar' 'AS=as' 'CC=gcc' 'CXX=g++' 'DLLTOOL=dlltool' 'GCJ=' 'GFORTRAN=' 'GOC=' 'LD=/usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe' 'LIPO=lipo' 'NM=nm' 'OBJDUMP=objdump' 'RANLIB=ranlib' 'READELF=readelf' 'STRIP=strip' 'WINDRES=windres' 'WINDMC=windmc' "GCC_FOR_TARGET= $r/./gcc/xgcc -B$r/./gcc/" "`echo 'STMP_FIXPROTO=' | sed -e s'/[^=][^=]*=$/XFOO=/'`" "`echo 'LIMITS_H_TEST=' | sed -e s'/[^=][^=]*=$/XFOO=/'`" all
Makefile:3853: recipe for target 'all-gcc' failed
make[2]: *** [all-gcc] Error 139
make[2]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3'
Makefile:869: recipe for target 'all' failed
make[1]: *** [all] Error 2
make[1]: INTERNAL: Exiting with 1 jobserver tokens available; should be 4!
make[1]: Leaving directory '/home/User/kallistios/utils/dc-chain/build-gcc-sh-elf-4.7.3'
In file included from ../../gcc-4.7.3/gcc/alias.c:27:0:
../../gcc-4.7.3/gcc/tree.h:3277:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
  unsigned thread_local : 1;
           ^
Makefile:184: recipe for target 'build-sh4-gcc-pass2' failed
make: *** [build-sh4-gcc-pass2] Error 1

User@Mothra-PC ~/kallistios/utils/dc-chain
$
Any idea on how to remove any sort of parallel build it is doing and trying that way. :?

Sincerely,

Vectrix Quest
User avatar
BlueCrab
The Crabby Overlord
The Crabby Overlord
Posts: 5658
Joined: Mon May 27, 2002 11:31 am
Location: Sailing the Skies of Arcadia
Has thanked: 9 times
Been thanked: 69 times
Contact:

Re: DCDev ISO Link

Post by BlueCrab »

Open up the Makefile in a text editor. Find the line that says "makejobs=-j4" and change it to "makejobs=" (just remove the -j4 part).
Vectrix Quest
DCEmu Fast Newbie
DCEmu Fast Newbie
Posts: 22
Joined: Thu Nov 14, 2013 1:10 pm
Has thanked: 0
Been thanked: 0

Re: DCDev ISO Link

Post by Vectrix Quest »

BlueCrab wrote:Open up the Makefile in a text editor. Find the line that says "makejobs=-j4" and change it to "makejobs=" (just remove the -j4 part).
Here is my copy of the build-gcc-sh-elf-4.7.3 makefile.

Code: Select all

# Makefile.in is generated from Makefile.tpl by 'autogen Makefile.def'.
#
# Makefile for directory with subdirs to build.
#   Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
#   1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
#   Free Software Foundation
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING3.  If not see
# <http://www.gnu.org/licenses/>.
#

# First, test for a proper version of make, but only where one is required.

ifeq (,$(.VARIABLES)) # The variable .VARIABLES, new with 3.80, is never empty.
$(error GNU make version 3.80 or newer is required.)
endif

# -------------------------------
# Standard Autoconf-set variables
# -------------------------------
VPATH=../gcc-4.7.3

build_alias=x86_64-unknown-cygwin
build_vendor=unknown
build_os=cygwin
build=x86_64-unknown-cygwin
host_alias=x86_64-unknown-cygwin
host_vendor=unknown
host_os=cygwin
host=x86_64-unknown-cygwin
target_alias=sh-elf
target_vendor=unknown
target_os=elf
target=sh-unknown-elf

program_transform_name = s&^&sh-elf-&

prefix = /opt/toolchains/dc/sh-elf
exec_prefix = ${prefix}

srcdir = ../gcc-4.7.3

bindir = ${exec_prefix}/bin
sbindir = ${exec_prefix}/sbin
libexecdir = ${exec_prefix}/libexec
datadir = ${datarootdir}
sysconfdir = ${prefix}/etc
sharedstatedir = ${prefix}/com
localstatedir = ${prefix}/var
libdir = ${exec_prefix}/lib
includedir = ${prefix}/include
oldincludedir = /usr/include
infodir = ${datarootdir}/info
datarootdir = ${prefix}/share
docdir = ${datarootdir}/doc/${PACKAGE}
pdfdir = ${docdir}
htmldir = ${docdir}
mandir = ${datarootdir}/man
man1dir = $(mandir)/man1
man2dir = $(mandir)/man2
man3dir = $(mandir)/man3
man4dir = $(mandir)/man4
man5dir = $(mandir)/man5
man6dir = $(mandir)/man6
man7dir = $(mandir)/man7
man8dir = $(mandir)/man8
man9dir = $(mandir)/man9

INSTALL = /usr/bin/install -c
INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_DATA = ${INSTALL} -m 644
LN = ln
LN_S = ln -s
MAINT = #
MAINTAINER_MODE_FALSE = 
MAINTAINER_MODE_TRUE = #

# -------------------------------------------------
# Miscellaneous non-standard autoconf-set variables
# -------------------------------------------------

# The gcc driver likes to know the arguments it was configured with.
TOPLEVEL_CONFIGURE_ARGUMENTS=../gcc-4.7.3/configure --target=sh-elf --prefix=/opt/toolchains/dc/sh-elf --with-newlib --disable-libssp --disable-tls --enable-threads=kos --enable-languages=c,c++,objc,obj-c++ --with-multilib-list=m4-single-only,m4-nofpu,m4 --with-endian=little --with-cpu=m4-single-only

tooldir = ${exec_prefix}/sh-elf
build_tooldir = ${exec_prefix}/sh-elf

# This is the name of the environment variable used for the path to
# the libraries.
RPATH_ENVVAR = PATH

# On targets where RPATH_ENVVAR is PATH, a subdirectory of the GCC build path
# is used instead of the directory itself to avoid including built
# executables in PATH.
GCC_SHLIB_SUBDIR = /shlib

# Build programs are put under this directory.
BUILD_SUBDIR = build-x86_64-unknown-cygwin
# This is set by the configure script to the arguments to use when configuring
# directories built for the build system.
BUILD_CONFIGARGS =  --cache-file=../config.cache '--prefix=/opt/toolchains/dc/sh-elf' '--with-newlib' '--disable-libssp' '--disable-tls' '--enable-threads=kos' '--with-multilib-list=m4-single-only,m4-nofpu,m4' '--with-endian=little' '--with-cpu=m4-single-only' '--enable-languages=c,c++,lto,objc,obj-c++' --program-transform-name='s&^&sh-elf-&' --disable-option-checking --with-build-subdir="$(BUILD_SUBDIR)"

# Linker flags to use on the host, for stage1 or when not
# bootstrapping.
STAGE1_LDFLAGS = 

# Libraries to use on the host, for stage1 or when not bootstrapping.
STAGE1_LIBS = 

# Linker flags to use for stage2 and later.
POSTSTAGE1_LDFLAGS = -static-libstdc++ -static-libgcc

# Libraries to use for stage2 and later.
POSTSTAGE1_LIBS = 

# This is the list of variables to export in the environment when
# configuring any subdirectory.  It must also be exported whenever
# recursing into a build directory in case that directory's Makefile
# re-runs configure.
BASE_EXPORTS = \
	FLEX="$(FLEX)"; export FLEX; \
	LEX="$(LEX)"; export LEX; \
	BISON="$(BISON)"; export BISON; \
	YACC="$(YACC)"; export YACC; \
	M4="$(M4)"; export M4; \
	SED="$(SED)"; export SED; \
	AWK="$(AWK)"; export AWK; \
	MAKEINFO="$(MAKEINFO)"; export MAKEINFO;

# This is the list of variables to export in the environment when
# configuring subdirectories for the build system.
BUILD_EXPORTS = \
	$(BASE_EXPORTS) \
	AR="$(AR_FOR_BUILD)"; export AR; \
	AS="$(AS_FOR_BUILD)"; export AS; \
	CC="$(CC_FOR_BUILD)"; export CC; \
	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
	CXX="$(CXX_FOR_BUILD)"; export CXX; \
	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
	GCJ="$(GCJ_FOR_BUILD)"; export GCJ; \
	GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
	GOC="$(GOC_FOR_BUILD)"; export GOC; \
	GOCFLAGS="$(GOCFLAGS_FOR_BUILD)"; export GOCFLAGS; \
	DLLTOOL="$(DLLTOOL_FOR_BUILD)"; export DLLTOOL; \
	LD="$(LD_FOR_BUILD)"; export LD; \
	LDFLAGS="$(LDFLAGS_FOR_BUILD)"; export LDFLAGS; \
	NM="$(NM_FOR_BUILD)"; export NM; \
	RANLIB="$(RANLIB_FOR_BUILD)"; export RANLIB; \
	WINDRES="$(WINDRES_FOR_BUILD)"; export WINDRES; \
	WINDMC="$(WINDMC_FOR_BUILD)"; export WINDMC;

# These variables must be set on the make command line for directories
# built for the build system to override those in BASE_FLAGS_TO_PASSS.
EXTRA_BUILD_FLAGS = \
	CFLAGS="$(CFLAGS_FOR_BUILD)" \
	LDFLAGS="$(LDFLAGS_FOR_BUILD)"

# This is the list of directories to built for the host system.
SUBDIRS =  intl libiberty zlib libcpp libdecnumber fixincludes gcc lto-plugin
TARGET_CONFIGDIRS =  libgcc libstdc++-v3 libquadmath libobjc
# This is set by the configure script to the arguments to use when configuring
# directories built for the host system.
HOST_CONFIGARGS =  --cache-file=./config.cache  '--prefix=/opt/toolchains/dc/sh-elf' '--with-newlib' '--disable-libssp' '--disable-tls' '--enable-threads=kos' '--with-multilib-list=m4-single-only,m4-nofpu,m4' '--with-endian=little' '--with-cpu=m4-single-only' '--enable-languages=c,c++,lto,objc,obj-c++' --program-transform-name='s&^&sh-elf-&' --disable-option-checking
# Host programs are put under this directory, which is . except if building
# with srcdir=..
HOST_SUBDIR = .
# This is the list of variables to export in the environment when
# configuring subdirectories for the host system.  We need to pass
# some to the GCC configure because of its hybrid host/target nature.
HOST_EXPORTS = \
	$(BASE_EXPORTS) \
	CC="$(CC)"; export CC; \
	ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
	CFLAGS="$(CFLAGS)"; export CFLAGS; \
	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
	CXX="$(CXX)"; export CXX; \
	CXXFLAGS="$(CXXFLAGS)"; export CXXFLAGS; \
	GCJ="$(GCJ)"; export GCJ; \
	GFORTRAN="$(GFORTRAN)"; export GFORTRAN; \
	GOC="$(GOC)"; export GOC; \
	AR="$(AR)"; export AR; \
	AS="$(AS)"; export AS; \
	CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \
	DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \
	LD="$(LD)"; export LD; \
	LDFLAGS="$(STAGE1_LDFLAGS) $(LDFLAGS)"; export LDFLAGS; \
	NM="$(NM)"; export NM; \
	RANLIB="$(RANLIB)"; export RANLIB; \
	WINDRES="$(WINDRES)"; export WINDRES; \
	WINDMC="$(WINDMC)"; export WINDMC; \
	OBJCOPY="$(OBJCOPY)"; export OBJCOPY; \
	OBJDUMP="$(OBJDUMP)"; export OBJDUMP; \
	READELF="$(READELF)"; export READELF; \
	AR_FOR_TARGET="$(AR_FOR_TARGET)"; export AR_FOR_TARGET; \
	AS_FOR_TARGET="$(AS_FOR_TARGET)"; export AS_FOR_TARGET; \
	GCC_FOR_TARGET="$(GCC_FOR_TARGET)"; export GCC_FOR_TARGET; \
	LD_FOR_TARGET="$(LD_FOR_TARGET)"; export LD_FOR_TARGET; \
	NM_FOR_TARGET="$(NM_FOR_TARGET)"; export NM_FOR_TARGET; \
	OBJDUMP_FOR_TARGET="$(OBJDUMP_FOR_TARGET)"; export OBJDUMP_FOR_TARGET; \
	RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)"; export RANLIB_FOR_TARGET; \
	READELF_FOR_TARGET="$(READELF_FOR_TARGET)"; export READELF_FOR_TARGET; \
	TOPLEVEL_CONFIGURE_ARGUMENTS="$(TOPLEVEL_CONFIGURE_ARGUMENTS)"; export TOPLEVEL_CONFIGURE_ARGUMENTS; \
	HOST_LIBS="$(STAGE1_LIBS)"; export HOST_LIBS; \
	GMPLIBS="$(HOST_GMPLIBS)"; export GMPLIBS; \
	GMPINC="$(HOST_GMPINC)"; export GMPINC; \
	PPLLIBS="$(HOST_PPLLIBS)"; export PPLLIBS; \
	PPLINC="$(HOST_PPLINC)"; export PPLINC; \
	CLOOGLIBS="$(HOST_CLOOGLIBS)"; export CLOOGLIBS; \
	CLOOGINC="$(HOST_CLOOGINC)"; export CLOOGINC; \
	LIBELFLIBS="$(HOST_LIBELFLIBS)" ; export LIBELFLIBS; \
	LIBELFINC="$(HOST_LIBELFINC)" ; export LIBELFINC; \
	$(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR);

POSTSTAGE1_CXX_EXPORT = \
	CXX='$(CXX)'; export CXX; \
	CXX_FOR_BUILD='$(CXX_FOR_BUILD)'; export CXX_FOR_BUILD;

# Similar, for later GCC stages.
POSTSTAGE1_HOST_EXPORTS = \
	$(HOST_EXPORTS) \
	CC="$(STAGE_CC_WRAPPER) $$r/$(HOST_SUBDIR)/prev-gcc/xgcc$(exeext) \
	  -B$$r/$(HOST_SUBDIR)/prev-gcc/ -B$(build_tooldir)/bin/ \
	  $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CC; \
	CC_FOR_BUILD="$$CC"; export CC_FOR_BUILD; \
	$(POSTSTAGE1_CXX_EXPORT) \
	GNATBIND="$$r/$(HOST_SUBDIR)/prev-gcc/gnatbind"; export GNATBIND; \
	LDFLAGS="$(POSTSTAGE1_LDFLAGS) $(BOOT_LDFLAGS)"; export LDFLAGS; \
	HOST_LIBS="$(POSTSTAGE1_LIBS)"; export HOST_LIBS;

# Target libraries are put under this directory:
TARGET_SUBDIR = sh-elf
# This is set by the configure script to the arguments to use when configuring
# directories built for the target.
TARGET_CONFIGARGS = --cache-file=./config.cache --enable-multilib --with-cross-host=x86_64-unknown-cygwin   '--prefix=/opt/toolchains/dc/sh-elf' '--with-newlib' '--disable-libssp' '--disable-tls' '--enable-threads=kos' '--with-multilib-list=m4-single-only,m4-nofpu,m4' '--with-endian=little' '--with-cpu=m4-single-only' '--enable-languages=c,c++,lto,objc,obj-c++' --program-transform-name='s&^&sh-elf-&' --disable-option-checking --with-target-subdir="$(TARGET_SUBDIR)"
# This is the list of variables to export in the environment when
# configuring subdirectories for the target system.
BASE_TARGET_EXPORTS = \
	$(BASE_EXPORTS) \
	AR="$(AR_FOR_TARGET)"; export AR; \
	AS="$(COMPILER_AS_FOR_TARGET)"; export AS; \
	CC="$(CC_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CC; \
	CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
	CPPFLAGS="$(CPPFLAGS_FOR_TARGET)"; export CPPFLAGS; \
	CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
	GCJ="$(GCJ_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export GCJ; \
	GFORTRAN="$(GFORTRAN_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export GFORTRAN; \
	GOC="$(GOC_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export GOC; \
	DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
	LD="$(COMPILER_LD_FOR_TARGET)"; export LD; \
	LDFLAGS="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS; \
	LIPO="$(LIPO_FOR_TARGET)"; export LIPO; \
	NM="$(COMPILER_NM_FOR_TARGET)"; export NM; \
	OBJDUMP="$(OBJDUMP_FOR_TARGET)"; export OBJDUMP; \
	RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
	READELF="$(READELF_FOR_TARGET)"; export READELF; \
	STRIP="$(STRIP_FOR_TARGET)"; export STRIP; \
	WINDRES="$(WINDRES_FOR_TARGET)"; export WINDRES; \
	WINDMC="$(WINDMC_FOR_TARGET)"; export WINDMC; \
	$(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR); \
	TARGET_CONFIGDIRS="$(TARGET_CONFIGDIRS)"; export TARGET_CONFIGDIRS;

RAW_CXX_TARGET_EXPORTS = \
	$(BASE_TARGET_EXPORTS) \
	CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \
	CXX="$(RAW_CXX_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CXX;

NORMAL_TARGET_EXPORTS = \
	$(BASE_TARGET_EXPORTS) \
	CXX="$(CXX_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CXX;

# Where to find GMP
HOST_GMPLIBS = -lmpc -lmpfr -lgmp
HOST_GMPINC = 

# Where to find PPL
HOST_PPLLIBS = 
HOST_PPLINC = 

# Where to find CLOOG
HOST_CLOOGLIBS = 
HOST_CLOOGINC = 

# Where to find libelf
HOST_LIBELFLIBS = @libelflibs@
HOST_LIBELFINC = @libelfinc@

EXTRA_CONFIGARGS_LIBJAVA = --disable-static

# ----------------------------------------------
# Programs producing files for the BUILD machine
# ----------------------------------------------

SHELL = /bin/sh

# pwd command to use.  Allow user to override default by setting PWDCMD in
# the environment to account for automounters.  The make variable must not
# be called PWDCMD, otherwise the value set here is passed to make
# subprocesses and overrides the setting from the user's environment.
# Don't use PWD since it is a common shell environment variable and we
# don't want to corrupt it.
PWD_COMMAND = $${PWDCMD-pwd}

# compilers to use to create programs which must be run in the build
# environment.
AR_FOR_BUILD = $(AR)
AS_FOR_BUILD = $(AS)
CC_FOR_BUILD = $(CC)
CFLAGS_FOR_BUILD = -g -O2
CXXFLAGS_FOR_BUILD = -g -O2
CXX_FOR_BUILD = $(CXX)
DLLTOOL_FOR_BUILD = $(DLLTOOL)
GCJ_FOR_BUILD = $(GCJ)
GFORTRAN_FOR_BUILD = $(GFORTRAN)
GOC_FOR_BUILD = $(GOC)
LDFLAGS_FOR_BUILD = 
LD_FOR_BUILD = $(LD)
NM_FOR_BUILD = $(NM)
RANLIB_FOR_BUILD = $(RANLIB)
WINDMC_FOR_BUILD = $(WINDMC)
WINDRES_FOR_BUILD = $(WINDRES)

# Special variables passed down in EXTRA_GCC_FLAGS.  They are defined
# here so that they can be overridden by Makefile fragments.
BUILD_PREFIX = @BUILD_PREFIX@
BUILD_PREFIX_1 = @BUILD_PREFIX_1@

# Flags to pass to stage2 and later makes.  They are defined
# here so that they can be overridden by Makefile fragments.
BOOT_CFLAGS= -g -O2
BOOT_LDFLAGS=
BOOT_ADAFLAGS=-gnatpg -gnata

AWK = gawk
SED = /usr/bin/sed
BISON = bison
YACC = bison -y
FLEX = flex
LEX = flex
M4 = m4
MAKEINFO = makeinfo
EXPECT = expect
RUNTEST = runtest

# This just becomes part of the MAKEINFO definition passed down to
# sub-makes.  It lets flags be given on the command line while still
# using the makeinfo from the object tree.
# (Default to avoid splitting info files by setting the threshold high.)
MAKEINFOFLAGS = --split-size=5000000

# ---------------------------------------------
# Programs producing files for the HOST machine
# ---------------------------------------------

AS = as
AR = ar
AR_FLAGS = rc
CC = gcc
CXX = g++
DLLTOOL = dlltool
LD = /usr/lib/gcc/x86_64-pc-cygwin/4.8.2/../../../../x86_64-pc-cygwin/bin/ld.exe
LIPO = lipo
NM = nm
OBJDUMP = objdump
RANLIB = ranlib
READELF = readelf
STRIP = strip
WINDRES = windres
WINDMC = windmc

GNATBIND = no
GNATMAKE = no

CFLAGS = -g -O2
LDFLAGS = 
LIBCFLAGS = $(CFLAGS)
CXXFLAGS = -g -O2
LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
GOCFLAGS = $(CFLAGS)

TFLAGS =

# Defaults for all stages; some are overridden below.

STAGE_CFLAGS = $(BOOT_CFLAGS)
STAGE_TFLAGS = $(TFLAGS)
STAGE_CONFIGURE_FLAGS=
POSTSTAGE1_CONFIGURE_FLAGS = --enable-build-with-cxx


# Defaults for stage 1; some are overridden below.
STAGE1_CFLAGS = $(STAGE_CFLAGS)
STAGE1_CXXFLAGS = $(CXXFLAGS)
STAGE1_TFLAGS = $(STAGE_TFLAGS)
# STAGE1_CONFIGURE_FLAGS overridden below, so we can use
# POSTSTAGE1_CONFIGURE_FLAGS here.
STAGE1_CONFIGURE_FLAGS = \
	$(STAGE_CONFIGURE_FLAGS) $(POSTSTAGE1_CONFIGURE_FLAGS)

# Defaults for stage 2; some are overridden below.
STAGE2_CFLAGS = $(STAGE_CFLAGS)
STAGE2_CXXFLAGS = $(CXXFLAGS)
STAGE2_TFLAGS = $(STAGE_TFLAGS)
# STAGE1_CONFIGURE_FLAGS overridden below, so we can use
# POSTSTAGE1_CONFIGURE_FLAGS here.
STAGE2_CONFIGURE_FLAGS = \
	$(STAGE_CONFIGURE_FLAGS) $(POSTSTAGE1_CONFIGURE_FLAGS)

# Defaults for stage 3; some are overridden below.
STAGE3_CFLAGS = $(STAGE_CFLAGS)
STAGE3_CXXFLAGS = $(CXXFLAGS)
STAGE3_TFLAGS = $(STAGE_TFLAGS)
# STAGE1_CONFIGURE_FLAGS overridden below, so we can use
# POSTSTAGE1_CONFIGURE_FLAGS here.
STAGE3_CONFIGURE_FLAGS = \
	$(STAGE_CONFIGURE_FLAGS) $(POSTSTAGE1_CONFIGURE_FLAGS)

# Defaults for stage 4; some are overridden below.
STAGE4_CFLAGS = $(STAGE_CFLAGS)
STAGE4_CXXFLAGS = $(CXXFLAGS)
STAGE4_TFLAGS = $(STAGE_TFLAGS)
# STAGE1_CONFIGURE_FLAGS overridden below, so we can use
# POSTSTAGE1_CONFIGURE_FLAGS here.
STAGE4_CONFIGURE_FLAGS = \
	$(STAGE_CONFIGURE_FLAGS) $(POSTSTAGE1_CONFIGURE_FLAGS)

# Defaults for stage profile; some are overridden below.
STAGEprofile_CFLAGS = $(STAGE_CFLAGS)
STAGEprofile_CXXFLAGS = $(CXXFLAGS)
STAGEprofile_TFLAGS = $(STAGE_TFLAGS)
# STAGE1_CONFIGURE_FLAGS overridden below, so we can use
# POSTSTAGE1_CONFIGURE_FLAGS here.
STAGEprofile_CONFIGURE_FLAGS = \
	$(STAGE_CONFIGURE_FLAGS) $(POSTSTAGE1_CONFIGURE_FLAGS)

# Defaults for stage feedback; some are overridden below.
STAGEfeedback_CFLAGS = $(STAGE_CFLAGS)
STAGEfeedback_CXXFLAGS = $(CXXFLAGS)
STAGEfeedback_TFLAGS = $(STAGE_TFLAGS)
# STAGE1_CONFIGURE_FLAGS overridden below, so we can use
# POSTSTAGE1_CONFIGURE_FLAGS here.
STAGEfeedback_CONFIGURE_FLAGS = \
	$(STAGE_CONFIGURE_FLAGS) $(POSTSTAGE1_CONFIGURE_FLAGS)


# Only build the C compiler for stage1, because that is the only one that
# we can guarantee will build with the native compiler, and also it is the
# only thing useful for building stage2. STAGE1_CFLAGS (via CFLAGS),
# MAKEINFO and MAKEINFOFLAGS are explicitly passed here to make them
# overrideable (for a bootstrap build stage1 also builds gcc.info).

STAGE1_CFLAGS = -g -fkeep-inline-functions
STAGE1_CHECKING = --enable-checking=yes,types
STAGE1_LANGUAGES = c,c++,lto
# * We force-disable intermodule optimizations, even if
#   --enable-intermodule was passed, since the installed compiler
#   probably can't handle them.  Luckily, autoconf always respects
#   the last argument when conflicting --enable arguments are passed.
# * Likewise, we force-disable coverage flags, since the installed
#   compiler probably has never heard of them.
# * Don't remove this, because above we added
#   POSTSTAGE1_CONFIGURE_FLAGS to STAGE_CONFIGURE_FLAGS, which
#   we don't want for STAGE1_CONFIGURE_FLAGS.
STAGE1_CONFIGURE_FLAGS = --disable-intermodule $(STAGE1_CHECKING) \
	  --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"

STAGEprofile_CFLAGS = $(STAGE2_CFLAGS) -fprofile-generate
STAGEprofile_TFLAGS = $(STAGE2_TFLAGS)

STAGEfeedback_CFLAGS = $(STAGE3_CFLAGS) -fprofile-use
STAGEfeedback_TFLAGS = $(STAGE3_TFLAGS)

do-compare = cmp --ignore-initial=16 $$f1 $$f2
do-compare3 = $(do-compare)

# -----------------------------------------------
# Programs producing files for the TARGET machine
# -----------------------------------------------

AR_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/ar
AS_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/as
CC_FOR_TARGET=$(STAGE_CC_WRAPPER) $$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/

# If GCC_FOR_TARGET is not overriden on the command line, then this
# variable is passed down to the gcc Makefile, where it is used to
# build libgcc2.a.  We define it here so that it can itself be
# overridden on the command line.
GCC_FOR_TARGET=$(STAGE_CC_WRAPPER) $$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/
CXX_FOR_TARGET=$(STAGE_CC_WRAPPER) $$r/$(HOST_SUBDIR)/gcc/g++ -B$$r/$(HOST_SUBDIR)/gcc/ -nostdinc++ `if test -f $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags; then $(SHELL) $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags --build-includes; else echo -funconfigured-libstdc++-v3 ; fi` -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs
RAW_CXX_FOR_TARGET=$(STAGE_CC_WRAPPER) $$r/$(HOST_SUBDIR)/gcc/xgcc -shared-libgcc -B$$r/$(HOST_SUBDIR)/gcc -nostdinc++ -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs
GCJ_FOR_TARGET=$(STAGE_CC_WRAPPER) sh-elf-gcj
GFORTRAN_FOR_TARGET=$(STAGE_CC_WRAPPER) sh-elf-gfortran
GOC_FOR_TARGET=$(STAGE_CC_WRAPPER) sh-elf-gccgo
DLLTOOL_FOR_TARGET=sh-elf-dlltool
LD_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/ld

LIPO_FOR_TARGET=sh-elf-lipo
NM_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/nm
OBJDUMP_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/objdump
RANLIB_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/ranlib
READELF_FOR_TARGET=sh-elf-readelf
STRIP_FOR_TARGET=/opt/toolchains/dc/sh-elf/sh-elf/bin/strip
WINDRES_FOR_TARGET=sh-elf-windres
WINDMC_FOR_TARGET=sh-elf-windmc

COMPILER_AS_FOR_TARGET=$$r/$(HOST_SUBDIR)/gcc/as
COMPILER_LD_FOR_TARGET=$$r/$(HOST_SUBDIR)/gcc/collect-ld
COMPILER_NM_FOR_TARGET=$$r/$(HOST_SUBDIR)/gcc/nm

CFLAGS_FOR_TARGET = -g -O2
CXXFLAGS_FOR_TARGET = -g -O2

LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
LDFLAGS_FOR_TARGET = 
GOCFLAGS_FOR_TARGET = -O2 -g

FLAGS_FOR_TARGET =  -B$(build_tooldir)/bin/ -B$(build_tooldir)/lib/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include
SYSROOT_CFLAGS_FOR_TARGET = 
DEBUG_PREFIX_CFLAGS_FOR_TARGET = 

XGCC_FLAGS_FOR_TARGET = $(FLAGS_FOR_TARGET) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)

# ------------------------------------
# Miscellaneous targets and flag lists
# ------------------------------------

# The first rule in the file had better be this one.  Don't put any above it.
# This lives here to allow makefile fragments to contain dependencies.
all:

#### host and target specific makefile fragments come in here.
# Increase stack limit to a figure based on the Linux default, with 4MB added
# as GCC turns out to need that much more to pass all the limits-* tests.
LDFLAGS += -Wl,--stack,12582912
BOOT_LDFLAGS += -Wl,--stack,12582912
###

# This is the list of directories that may be needed in RPATH_ENVVAR
# so that programs built for the target machine work.
TARGET_LIB_PATH = $(TARGET_LIB_PATH_libstdc++-v3)$(TARGET_LIB_PATH_libmudflap)$(TARGET_LIB_PATH_libssp)$(TARGET_LIB_PATH_libgomp)$(TARGET_LIB_PATH_libitm)$(HOST_LIB_PATH_gcc)

TARGET_LIB_PATH_libstdc++-v3 = $$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs:







# This is the list of directories that may be needed in RPATH_ENVVAR
# so that programs built for the host machine work.
HOST_LIB_PATH = $(HOST_LIB_PATH_bfd)$(HOST_LIB_PATH_opcodes)$(HOST_LIB_PATH_gmp)$(HOST_LIB_PATH_mpfr)$(HOST_LIB_PATH_mpc)$(HOST_LIB_PATH_ppl)$(HOST_LIB_PATH_cloog)$(HOST_LIB_PATH_libelf)

# Define HOST_LIB_PATH_gcc here, for the sake of TARGET_LIB_PATH, ouch
HOST_LIB_PATH_gcc = $$r/$(HOST_SUBDIR)/gcc$(GCC_SHLIB_SUBDIR):$$r/$(HOST_SUBDIR)/prev-gcc$(GCC_SHLIB_SUBDIR):











CXX_FOR_TARGET_FLAG_TO_PASS = \
	"CXX_FOR_TARGET=$(CXX_FOR_TARGET)"
# CXX_FOR_TARGET is tricky to get right for target libs that require a
# functional C++ compiler.  When we recurse, if we expand
# CXX_FOR_TARGET before configuring libstdc++-v3, we won't get
# libstdc++ include flags from the script.  Instead, we get an
# -funconfigured-* word, so that we'll get errors if this invalid C++
# command line is used for anything, but also so that we can use the
# word to decide whether or not to pass on this CXX_FOR_TARGET.  If we
# don't pass it on, sub-make will use the default definition, that
# re-expands it at the time of use, so we'll get it right when we need
# it.  One potential exception is the expansion of CXX_FOR_TARGET
# passed down as part of CXX within TARGET_FLAGS, but this wouldn't
# really work, for C++ host programs can't depend on the current-stage
# C++ target library.
CXX_FOR_TARGET_FLAG_TO_PASS = \
	$(shell if echo "$(CXX_FOR_TARGET)" | grep " -funconfigured-" > /dev/null; then :; else echo '"CXX_FOR_TARGET=$(CXX_FOR_TARGET)"'; fi)

# Flags to pass down to all sub-makes.
BASE_FLAGS_TO_PASS = \
	"DESTDIR=$(DESTDIR)" \
	"RPATH_ENVVAR=$(RPATH_ENVVAR)" \
	"TARGET_SUBDIR=$(TARGET_SUBDIR)" \
	"bindir=$(bindir)" \
	"datadir=$(datadir)" \
	"exec_prefix=$(exec_prefix)" \
	"includedir=$(includedir)" \
	"datarootdir=$(datarootdir)" \
	"docdir=$(docdir)" \
	"infodir=$(infodir)" \
	"pdfdir=$(pdfdir)" \
	"htmldir=$(htmldir)" \
	"libdir=$(libdir)" \
	"libexecdir=$(libexecdir)" \
	"lispdir=$(lispdir)" \
	"localstatedir=$(localstatedir)" \
	"mandir=$(mandir)" \
	"oldincludedir=$(oldincludedir)" \
	"prefix=$(prefix)" \
	"sbindir=$(sbindir)" \
	"sharedstatedir=$(sharedstatedir)" \
	"sysconfdir=$(sysconfdir)" \
	"tooldir=$(tooldir)" \
	"build_tooldir=$(build_tooldir)" \
	"target_alias=$(target_alias)" \
	"AWK=$(AWK)" \
	"BISON=$(BISON)" \
	"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
	"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
	"CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
	"EXPECT=$(EXPECT)" \
	"FLEX=$(FLEX)" \
	"INSTALL=$(INSTALL)" \
	"INSTALL_DATA=$(INSTALL_DATA)" \
	"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
	"INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
	"LDFLAGS_FOR_BUILD=$(LDFLAGS_FOR_BUILD)" \
	"LEX=$(LEX)" \
	"M4=$(M4)" \
	"MAKE=$(MAKE)" \
	"RUNTEST=$(RUNTEST)" \
	"RUNTESTFLAGS=$(RUNTESTFLAGS)" \
	"SED=$(SED)" \
	"SHELL=$(SHELL)" \
	"YACC=$(YACC)" \
	"`echo 'ADAFLAGS=$(ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
	"ADA_CFLAGS=$(ADA_CFLAGS)" \
	"AR_FLAGS=$(AR_FLAGS)" \
	"`echo 'BOOT_ADAFLAGS=$(BOOT_ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
	"BOOT_CFLAGS=$(BOOT_CFLAGS)" \
	"BOOT_LDFLAGS=$(BOOT_LDFLAGS)" \
	"CFLAGS=$(CFLAGS)" \
	"CXXFLAGS=$(CXXFLAGS)" \
	"LDFLAGS=$(LDFLAGS)" \
	"LIBCFLAGS=$(LIBCFLAGS)" \
	"LIBCXXFLAGS=$(LIBCXXFLAGS)" \
	"STAGE1_CHECKING=$(STAGE1_CHECKING)" \
	"STAGE1_LANGUAGES=$(STAGE1_LANGUAGES)" \
	"GNATBIND=$(GNATBIND)" \
	"GNATMAKE=$(GNATMAKE)" \
	"AR_FOR_TARGET=$(AR_FOR_TARGET)" \
	"AS_FOR_TARGET=$(AS_FOR_TARGET)" \
	"CC_FOR_TARGET=$(CC_FOR_TARGET)" \
	"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
	"CPPFLAGS_FOR_TARGET=$(CPPFLAGS_FOR_TARGET)" \
	"CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
	"DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
	"FLAGS_FOR_TARGET=$(FLAGS_FOR_TARGET)" \
	"GCJ_FOR_TARGET=$(GCJ_FOR_TARGET)" \
	"GFORTRAN_FOR_TARGET=$(GFORTRAN_FOR_TARGET)" \
	"GOC_FOR_TARGET=$(GOC_FOR_TARGET)" \
	"GOCFLAGS_FOR_TARGET=$(GOCFLAGS_FOR_TARGET)" \
	"LD_FOR_TARGET=$(LD_FOR_TARGET)" \
	"LIPO_FOR_TARGET=$(LIPO_FOR_TARGET)" \
	"LDFLAGS_FOR_TARGET=$(LDFLAGS_FOR_TARGET)" \
	"LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
	"LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
	"NM_FOR_TARGET=$(NM_FOR_TARGET)" \
	"OBJDUMP_FOR_TARGET=$(OBJDUMP_FOR_TARGET)" \
	"RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
	"READELF_FOR_TARGET=$(READELF_FOR_TARGET)" \
	"STRIP_FOR_TARGET=$(STRIP_FOR_TARGET)" \
	"WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
	"WINDMC_FOR_TARGET=$(WINDMC_FOR_TARGET)" \
	"BUILD_CONFIG=$(BUILD_CONFIG)" \
	"`echo 'LANGUAGES=$(LANGUAGES)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
	"LEAN=$(LEAN)" \
	"STAGE1_CFLAGS=$(STAGE1_CFLAGS)" \
	"STAGE1_CXXFLAGS=$(STAGE1_CXXFLAGS)" \
	"STAGE1_TFLAGS=$(STAGE1_TFLAGS)" \
	"STAGE2_CFLAGS=$(STAGE2_CFLAGS)" \
	"STAGE2_CXXFLAGS=$(STAGE2_CXXFLAGS)" \
	"STAGE2_TFLAGS=$(STAGE2_TFLAGS)" \
	"STAGE3_CFLAGS=$(STAGE3_CFLAGS)" \
	"STAGE3_CXXFLAGS=$(STAGE3_CXXFLAGS)" \
	"STAGE3_TFLAGS=$(STAGE3_TFLAGS)" \
	"STAGE4_CFLAGS=$(STAGE4_CFLAGS)" \
	"STAGE4_CXXFLAGS=$(STAGE4_CXXFLAGS)" \
	"STAGE4_TFLAGS=$(STAGE4_TFLAGS)" \
	"STAGEprofile_CFLAGS=$(STAGEprofile_CFLAGS)" \
	"STAGEprofile_CXXFLAGS=$(STAGEprofile_CXXFLAGS)" \
	"STAGEprofile_TFLAGS=$(STAGEprofile_TFLAGS)" \
	"STAGEfeedback_CFLAGS=$(STAGEfeedback_CFLAGS)" \
	"STAGEfeedback_CXXFLAGS=$(STAGEfeedback_CXXFLAGS)" \
	"STAGEfeedback_TFLAGS=$(STAGEfeedback_TFLAGS)" \
	$(CXX_FOR_TARGET_FLAG_TO_PASS) \
	"TFLAGS=$(TFLAGS)" \
	"CONFIG_SHELL=$(SHELL)" \
	"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" 

# We leave this in just in case, but it is not needed anymore.
RECURSE_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS)

# Flags to pass down to most sub-makes, in which we're building with
# the host environment.
EXTRA_HOST_FLAGS = \
	'AR=$(AR)' \
	'AS=$(AS)' \
	'CC=$(CC)' \
	'CXX=$(CXX)' \
	'DLLTOOL=$(DLLTOOL)' \
	'GCJ=$(GCJ)' \
	'GFORTRAN=$(GFORTRAN)' \
	'GOC=$(GOC)' \
	'LD=$(LD)' \
	'LIPO=$(LIPO)' \
	'NM=$(NM)' \
	'OBJDUMP=$(OBJDUMP)' \
	'RANLIB=$(RANLIB)' \
	'READELF=$(READELF)' \
	'STRIP=$(STRIP)' \
	'WINDRES=$(WINDRES)' \
	'WINDMC=$(WINDMC)'

FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)

# Flags to pass to stage2 and later makes.

POSTSTAGE1_FLAGS_TO_PASS = \
	CC="$${CC}" CC_FOR_BUILD="$${CC_FOR_BUILD}" \
	CXX="$${CXX}" CXX_FOR_BUILD="$${CXX_FOR_BUILD}" \
	GNATBIND="$${GNATBIND}" \
	LDFLAGS="$${LDFLAGS}" \
	HOST_LIBS="$${HOST_LIBS}" \
	"`echo 'ADAFLAGS=$(BOOT_ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`"

# Flags to pass down to makes which are built with the target environment.
# The double $ decreases the length of the command line; those variables
# are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.  The
# *_CFLAGS_FOR_TARGET variables are not passed down and most often empty,
# so we expand them here.
EXTRA_TARGET_FLAGS = \
	'AR=$$(AR_FOR_TARGET)' \
	'AS=$(COMPILER_AS_FOR_TARGET)' \
	'CC=$$(CC_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
	'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
	'CXX=$$(CXX_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
	'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
	'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
	'GCJ=$$(GCJ_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
	'GFORTRAN=$$(GFORTRAN_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
	'GOC=$$(GOC_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
	'GOCFLAGS=$$(GOCFLAGS_FOR_TARGET)' \
	'LD=$(COMPILER_LD_FOR_TARGET)' \
	'LDFLAGS=$$(LDFLAGS_FOR_TARGET)' \
	'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
	'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
	'NM=$(COMPILER_NM_FOR_TARGET)' \
	'OBJDUMP=$$(OBJDUMP_FOR_TARGET)' \
	'RANLIB=$$(RANLIB_FOR_TARGET)' \
	'READELF=$$(READELF_FOR_TARGET)' \
	'WINDRES=$$(WINDRES_FOR_TARGET)' \
	'WINDMC=$$(WINDMC_FOR_TARGET)' \
	'XGCC_FLAGS_FOR_TARGET=$(XGCC_FLAGS_FOR_TARGET)' \
	"TFLAGS=$$TFLAGS"

TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)

# Flags to pass down to gcc.  gcc builds a library, libgcc.a, so it
# unfortunately needs the native compiler and the target ar and
# ranlib.
# If any variables are added here, they must be added to do-*, below.
# The BUILD_* variables are a special case, which are used for the gcc
# cross-building scheme.
EXTRA_GCC_FLAGS = \
	"GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
	"`echo 'STMP_FIXPROTO=$(STMP_FIXPROTO)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
	"`echo 'LIMITS_H_TEST=$(LIMITS_H_TEST)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`"

GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS)

BUILD_CONFIG = 
ifneq ($(BUILD_CONFIG),)
include $(foreach CONFIG, $(BUILD_CONFIG), $(srcdir)/config/$(CONFIG).mk)
endif

.PHONY: configure-host
configure-host:  \
    maybe-configure-bfd \
    maybe-configure-opcodes \
    maybe-configure-binutils \
    maybe-configure-bison \
    maybe-configure-cgen \
    maybe-configure-dejagnu \
    maybe-configure-etc \
    maybe-configure-fastjar \
    maybe-configure-fixincludes \
    maybe-configure-flex \
    maybe-configure-gas \
    maybe-configure-gcc \
    maybe-configure-gmp \
    maybe-configure-mpfr \
    maybe-configure-mpc \
    maybe-configure-ppl \
    maybe-configure-cloog \
    maybe-configure-libelf \
    maybe-configure-gold \
    maybe-configure-gprof \
    maybe-configure-intl \
    maybe-configure-tcl \
    maybe-configure-itcl \
    maybe-configure-ld \
    maybe-configure-libcpp \
    maybe-configure-libdecnumber \
    maybe-configure-libgui \
    maybe-configure-libiberty \
    maybe-configure-libiconv \
    maybe-configure-m4 \
    maybe-configure-readline \
    maybe-configure-sid \
    maybe-configure-sim \
    maybe-configure-texinfo \
    maybe-configure-zlib \
    maybe-configure-gdb \
    maybe-configure-expect \
    maybe-configure-guile \
    maybe-configure-tk \
    maybe-configure-libtermcap \
    maybe-configure-utils \
    maybe-configure-gnattools \
    maybe-configure-lto-plugin
.PHONY: configure-target
configure-target:  \
    maybe-configure-target-libstdc++-v3 \
    maybe-configure-target-libmudflap \
    maybe-configure-target-libssp \
    maybe-configure-target-newlib \
    maybe-configure-target-libgcc \
    maybe-configure-target-libquadmath \
    maybe-configure-target-libgfortran \
    maybe-configure-target-libobjc \
    maybe-configure-target-libgo \
    maybe-configure-target-libtermcap \
    maybe-configure-target-winsup \
    maybe-configure-target-libgloss \
    maybe-configure-target-libffi \
    maybe-configure-target-libjava \
    maybe-configure-target-zlib \
    maybe-configure-target-boehm-gc \
    maybe-configure-target-rda \
    maybe-configure-target-libada \
    maybe-configure-target-libgomp \
    maybe-configure-target-libitm

# The target built for a native non-bootstrap build.
.PHONY: all
all:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	  $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-host all-target \
	&& :

.PHONY: all-build

all-build: maybe-all-build-libiberty
all-build: maybe-all-build-bison
all-build: maybe-all-build-flex
all-build: maybe-all-build-m4
all-build: maybe-all-build-texinfo
all-build: maybe-all-build-fixincludes

.PHONY: all-host

all-host: maybe-all-bison
all-host: maybe-all-cgen
all-host: maybe-all-dejagnu
all-host: maybe-all-etc
all-host: maybe-all-fastjar
all-host: maybe-all-fixincludes
all-host: maybe-all-flex
all-host: maybe-all-gcc
all-host: maybe-all-gprof
all-host: maybe-all-intl
all-host: maybe-all-tcl
all-host: maybe-all-itcl
all-host: maybe-all-libcpp
all-host: maybe-all-libdecnumber
all-host: maybe-all-libgui
all-host: maybe-all-libiberty
all-host: maybe-all-libiconv
all-host: maybe-all-m4
all-host: maybe-all-readline
all-host: maybe-all-sid
all-host: maybe-all-sim
all-host: maybe-all-texinfo
all-host: maybe-all-zlib
all-host: maybe-all-gdb
all-host: maybe-all-expect
all-host: maybe-all-guile
all-host: maybe-all-tk
all-host: maybe-all-libtermcap
all-host: maybe-all-utils
all-host: maybe-all-gnattools
all-host: maybe-all-lto-plugin

.PHONY: all-target

all-target: maybe-all-target-libstdc++-v3
all-target: maybe-all-target-libmudflap
all-target: maybe-all-target-libssp
all-target: maybe-all-target-newlib
all-target: maybe-all-target-libgcc
all-target: maybe-all-target-libquadmath
all-target: maybe-all-target-libgfortran
all-target: maybe-all-target-libobjc
all-target: maybe-all-target-libgo
all-target: maybe-all-target-libtermcap
all-target: maybe-all-target-winsup
all-target: maybe-all-target-libgloss
all-target: maybe-all-target-libffi
all-target: maybe-all-target-libjava
all-target: maybe-all-target-zlib
all-target: maybe-all-target-boehm-gc
all-target: maybe-all-target-rda
all-target: maybe-all-target-libada
all-target: maybe-all-target-libitm

# Do a target for all the subdirectories.  A ``make do-X'' will do a
# ``make X'' in all subdirectories (because, in general, there is a
# dependency (below) of X upon do-X, a ``make X'' will also do this,
# but it may do additional work as well).

.PHONY: do-info
do-info:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) info-host \
	  info-target


.PHONY: info-host

info-host: maybe-info-bfd
info-host: maybe-info-opcodes
info-host: maybe-info-binutils
info-host: maybe-info-bison
info-host: maybe-info-cgen
info-host: maybe-info-dejagnu
info-host: maybe-info-etc
info-host: maybe-info-fastjar
info-host: maybe-info-fixincludes
info-host: maybe-info-flex
info-host: maybe-info-gas
info-host: maybe-info-gcc
info-host: maybe-info-gmp
info-host: maybe-info-mpfr
info-host: maybe-info-mpc
info-host: maybe-info-ppl
info-host: maybe-info-cloog
info-host: maybe-info-libelf
info-host: maybe-info-gold
info-host: maybe-info-gprof
info-host: maybe-info-intl
info-host: maybe-info-tcl
info-host: maybe-info-itcl
info-host: maybe-info-ld
info-host: maybe-info-libcpp
info-host: maybe-info-libdecnumber
info-host: maybe-info-libgui
info-host: maybe-info-libiberty
info-host: maybe-info-libiconv
info-host: maybe-info-m4
info-host: maybe-info-readline
info-host: maybe-info-sid
info-host: maybe-info-sim
info-host: maybe-info-texinfo
info-host: maybe-info-zlib
info-host: maybe-info-gdb
info-host: maybe-info-expect
info-host: maybe-info-guile
info-host: maybe-info-tk
info-host: maybe-info-libtermcap
info-host: maybe-info-utils
info-host: maybe-info-gnattools
info-host: maybe-info-lto-plugin

.PHONY: info-target

info-target: maybe-info-target-libstdc++-v3
info-target: maybe-info-target-libmudflap
info-target: maybe-info-target-libssp
info-target: maybe-info-target-newlib
info-target: maybe-info-target-libgcc
info-target: maybe-info-target-libquadmath
info-target: maybe-info-target-libgfortran
info-target: maybe-info-target-libobjc
info-target: maybe-info-target-libgo
info-target: maybe-info-target-libtermcap
info-target: maybe-info-target-winsup
info-target: maybe-info-target-libgloss
info-target: maybe-info-target-libffi
info-target: maybe-info-target-libjava
info-target: maybe-info-target-zlib
info-target: maybe-info-target-boehm-gc
info-target: maybe-info-target-rda
info-target: maybe-info-target-libada
info-target: maybe-info-target-libgomp
info-target: maybe-info-target-libitm

.PHONY: do-dvi
do-dvi:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) dvi-host \
	  dvi-target


.PHONY: dvi-host

dvi-host: maybe-dvi-bfd
dvi-host: maybe-dvi-opcodes
dvi-host: maybe-dvi-binutils
dvi-host: maybe-dvi-bison
dvi-host: maybe-dvi-cgen
dvi-host: maybe-dvi-dejagnu
dvi-host: maybe-dvi-etc
dvi-host: maybe-dvi-fastjar
dvi-host: maybe-dvi-fixincludes
dvi-host: maybe-dvi-flex
dvi-host: maybe-dvi-gas
dvi-host: maybe-dvi-gcc
dvi-host: maybe-dvi-gmp
dvi-host: maybe-dvi-mpfr
dvi-host: maybe-dvi-mpc
dvi-host: maybe-dvi-ppl
dvi-host: maybe-dvi-cloog
dvi-host: maybe-dvi-libelf
dvi-host: maybe-dvi-gold
dvi-host: maybe-dvi-gprof
dvi-host: maybe-dvi-intl
dvi-host: maybe-dvi-tcl
dvi-host: maybe-dvi-itcl
dvi-host: maybe-dvi-ld
dvi-host: maybe-dvi-libcpp
dvi-host: maybe-dvi-libdecnumber
dvi-host: maybe-dvi-libgui
dvi-host: maybe-dvi-libiberty
dvi-host: maybe-dvi-libiconv
dvi-host: maybe-dvi-m4
dvi-host: maybe-dvi-readline
dvi-host: maybe-dvi-sid
dvi-host: maybe-dvi-sim
dvi-host: maybe-dvi-texinfo
dvi-host: maybe-dvi-zlib
dvi-host: maybe-dvi-gdb
dvi-host: maybe-dvi-expect
dvi-host: maybe-dvi-guile
dvi-host: maybe-dvi-tk
dvi-host: maybe-dvi-libtermcap
dvi-host: maybe-dvi-utils
dvi-host: maybe-dvi-gnattools
dvi-host: maybe-dvi-lto-plugin

.PHONY: dvi-target

dvi-target: maybe-dvi-target-libstdc++-v3
dvi-target: maybe-dvi-target-libmudflap
dvi-target: maybe-dvi-target-libssp
dvi-target: maybe-dvi-target-newlib
dvi-target: maybe-dvi-target-libgcc
dvi-target: maybe-dvi-target-libquadmath
dvi-target: maybe-dvi-target-libgfortran
dvi-target: maybe-dvi-target-libobjc
dvi-target: maybe-dvi-target-libgo
dvi-target: maybe-dvi-target-libtermcap
dvi-target: maybe-dvi-target-winsup
dvi-target: maybe-dvi-target-libgloss
dvi-target: maybe-dvi-target-libffi
dvi-target: maybe-dvi-target-libjava
dvi-target: maybe-dvi-target-zlib
dvi-target: maybe-dvi-target-boehm-gc
dvi-target: maybe-dvi-target-rda
dvi-target: maybe-dvi-target-libada
dvi-target: maybe-dvi-target-libgomp
dvi-target: maybe-dvi-target-libitm

.PHONY: do-pdf
do-pdf:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) pdf-host \
	  pdf-target


.PHONY: pdf-host

pdf-host: maybe-pdf-bfd
pdf-host: maybe-pdf-opcodes
pdf-host: maybe-pdf-binutils
pdf-host: maybe-pdf-bison
pdf-host: maybe-pdf-cgen
pdf-host: maybe-pdf-dejagnu
pdf-host: maybe-pdf-etc
pdf-host: maybe-pdf-fastjar
pdf-host: maybe-pdf-fixincludes
pdf-host: maybe-pdf-flex
pdf-host: maybe-pdf-gas
pdf-host: maybe-pdf-gcc
pdf-host: maybe-pdf-gmp
pdf-host: maybe-pdf-mpfr
pdf-host: maybe-pdf-mpc
pdf-host: maybe-pdf-ppl
pdf-host: maybe-pdf-cloog
pdf-host: maybe-pdf-libelf
pdf-host: maybe-pdf-gold
pdf-host: maybe-pdf-gprof
pdf-host: maybe-pdf-intl
pdf-host: maybe-pdf-tcl
pdf-host: maybe-pdf-itcl
pdf-host: maybe-pdf-ld
pdf-host: maybe-pdf-libcpp
pdf-host: maybe-pdf-libdecnumber
pdf-host: maybe-pdf-libgui
pdf-host: maybe-pdf-libiberty
pdf-host: maybe-pdf-libiconv
pdf-host: maybe-pdf-m4
pdf-host: maybe-pdf-readline
pdf-host: maybe-pdf-sid
pdf-host: maybe-pdf-sim
pdf-host: maybe-pdf-texinfo
pdf-host: maybe-pdf-zlib
pdf-host: maybe-pdf-gdb
pdf-host: maybe-pdf-expect
pdf-host: maybe-pdf-guile
pdf-host: maybe-pdf-tk
pdf-host: maybe-pdf-libtermcap
pdf-host: maybe-pdf-utils
pdf-host: maybe-pdf-gnattools
pdf-host: maybe-pdf-lto-plugin

.PHONY: pdf-target

pdf-target: maybe-pdf-target-libstdc++-v3
pdf-target: maybe-pdf-target-libmudflap
pdf-target: maybe-pdf-target-libssp
pdf-target: maybe-pdf-target-newlib
pdf-target: maybe-pdf-target-libgcc
pdf-target: maybe-pdf-target-libquadmath
pdf-target: maybe-pdf-target-libgfortran
pdf-target: maybe-pdf-target-libobjc
pdf-target: maybe-pdf-target-libgo
pdf-target: maybe-pdf-target-libtermcap
pdf-target: maybe-pdf-target-winsup
pdf-target: maybe-pdf-target-libgloss
pdf-target: maybe-pdf-target-libffi
pdf-target: maybe-pdf-target-libjava
pdf-target: maybe-pdf-target-zlib
pdf-target: maybe-pdf-target-boehm-gc
pdf-target: maybe-pdf-target-rda
pdf-target: maybe-pdf-target-libada
pdf-target: maybe-pdf-target-libgomp
pdf-target: maybe-pdf-target-libitm

.PHONY: do-html
do-html:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) html-host \
	  html-target


.PHONY: html-host

html-host: maybe-html-bfd
html-host: maybe-html-opcodes
html-host: maybe-html-binutils
html-host: maybe-html-bison
html-host: maybe-html-cgen
html-host: maybe-html-dejagnu
html-host: maybe-html-etc
html-host: maybe-html-fastjar
html-host: maybe-html-fixincludes
html-host: maybe-html-flex
html-host: maybe-html-gas
html-host: maybe-html-gcc
html-host: maybe-html-gmp
html-host: maybe-html-mpfr
html-host: maybe-html-mpc
html-host: maybe-html-ppl
html-host: maybe-html-cloog
html-host: maybe-html-libelf
html-host: maybe-html-gold
html-host: maybe-html-gprof
html-host: maybe-html-intl
html-host: maybe-html-tcl
html-host: maybe-html-itcl
html-host: maybe-html-ld
html-host: maybe-html-libcpp
html-host: maybe-html-libdecnumber
html-host: maybe-html-libgui
html-host: maybe-html-libiberty
html-host: maybe-html-libiconv
html-host: maybe-html-m4
html-host: maybe-html-readline
html-host: maybe-html-sid
html-host: maybe-html-sim
html-host: maybe-html-texinfo
html-host: maybe-html-zlib
html-host: maybe-html-gdb
html-host: maybe-html-expect
html-host: maybe-html-guile
html-host: maybe-html-tk
html-host: maybe-html-libtermcap
html-host: maybe-html-utils
html-host: maybe-html-gnattools
html-host: maybe-html-lto-plugin

.PHONY: html-target

html-target: maybe-html-target-libstdc++-v3
html-target: maybe-html-target-libmudflap
html-target: maybe-html-target-libssp
html-target: maybe-html-target-newlib
html-target: maybe-html-target-libgcc
html-target: maybe-html-target-libquadmath
html-target: maybe-html-target-libgfortran
html-target: maybe-html-target-libobjc
html-target: maybe-html-target-libgo
html-target: maybe-html-target-libtermcap
html-target: maybe-html-target-winsup
html-target: maybe-html-target-libgloss
html-target: maybe-html-target-libffi
html-target: maybe-html-target-libjava
html-target: maybe-html-target-zlib
html-target: maybe-html-target-boehm-gc
html-target: maybe-html-target-rda
html-target: maybe-html-target-libada
html-target: maybe-html-target-libgomp
html-target: maybe-html-target-libitm

.PHONY: do-TAGS
do-TAGS:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) TAGS-host \
	  TAGS-target


.PHONY: TAGS-host

TAGS-host: maybe-TAGS-bfd
TAGS-host: maybe-TAGS-opcodes
TAGS-host: maybe-TAGS-binutils
TAGS-host: maybe-TAGS-bison
TAGS-host: maybe-TAGS-cgen
TAGS-host: maybe-TAGS-dejagnu
TAGS-host: maybe-TAGS-etc
TAGS-host: maybe-TAGS-fastjar
TAGS-host: maybe-TAGS-fixincludes
TAGS-host: maybe-TAGS-flex
TAGS-host: maybe-TAGS-gas
TAGS-host: maybe-TAGS-gcc
TAGS-host: maybe-TAGS-gmp
TAGS-host: maybe-TAGS-mpfr
TAGS-host: maybe-TAGS-mpc
TAGS-host: maybe-TAGS-ppl
TAGS-host: maybe-TAGS-cloog
TAGS-host: maybe-TAGS-libelf
TAGS-host: maybe-TAGS-gold
TAGS-host: maybe-TAGS-gprof
TAGS-host: maybe-TAGS-intl
TAGS-host: maybe-TAGS-tcl
TAGS-host: maybe-TAGS-itcl
TAGS-host: maybe-TAGS-ld
TAGS-host: maybe-TAGS-libcpp
TAGS-host: maybe-TAGS-libdecnumber
TAGS-host: maybe-TAGS-libgui
TAGS-host: maybe-TAGS-libiberty
TAGS-host: maybe-TAGS-libiconv
TAGS-host: maybe-TAGS-m4
TAGS-host: maybe-TAGS-readline
TAGS-host: maybe-TAGS-sid
TAGS-host: maybe-TAGS-sim
TAGS-host: maybe-TAGS-texinfo
TAGS-host: maybe-TAGS-zlib
TAGS-host: maybe-TAGS-gdb
TAGS-host: maybe-TAGS-expect
TAGS-host: maybe-TAGS-guile
TAGS-host: maybe-TAGS-tk
TAGS-host: maybe-TAGS-libtermcap
TAGS-host: maybe-TAGS-utils
TAGS-host: maybe-TAGS-gnattools
TAGS-host: maybe-TAGS-lto-plugin

.PHONY: TAGS-target

TAGS-target: maybe-TAGS-target-libstdc++-v3
TAGS-target: maybe-TAGS-target-libmudflap
TAGS-target: maybe-TAGS-target-libssp
TAGS-target: maybe-TAGS-target-newlib
TAGS-target: maybe-TAGS-target-libgcc
TAGS-target: maybe-TAGS-target-libquadmath
TAGS-target: maybe-TAGS-target-libgfortran
TAGS-target: maybe-TAGS-target-libobjc
TAGS-target: maybe-TAGS-target-libgo
TAGS-target: maybe-TAGS-target-libtermcap
TAGS-target: maybe-TAGS-target-winsup
TAGS-target: maybe-TAGS-target-libgloss
TAGS-target: maybe-TAGS-target-libffi
TAGS-target: maybe-TAGS-target-libjava
TAGS-target: maybe-TAGS-target-zlib
TAGS-target: maybe-TAGS-target-boehm-gc
TAGS-target: maybe-TAGS-target-rda
TAGS-target: maybe-TAGS-target-libada
TAGS-target: maybe-TAGS-target-libgomp
TAGS-target: maybe-TAGS-target-libitm

.PHONY: do-install-info
do-install-info:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) install-info-host \
	  install-info-target


.PHONY: install-info-host

install-info-host: maybe-install-info-bfd
install-info-host: maybe-install-info-opcodes
install-info-host: maybe-install-info-binutils
install-info-host: maybe-install-info-bison
install-info-host: maybe-install-info-cgen
install-info-host: maybe-install-info-dejagnu
install-info-host: maybe-install-info-etc
install-info-host: maybe-install-info-fastjar
install-info-host: maybe-install-info-fixincludes
install-info-host: maybe-install-info-flex
install-info-host: maybe-install-info-gas
install-info-host: maybe-install-info-gcc
install-info-host: maybe-install-info-gmp
install-info-host: maybe-install-info-mpfr
install-info-host: maybe-install-info-mpc
install-info-host: maybe-install-info-ppl
install-info-host: maybe-install-info-cloog
install-info-host: maybe-install-info-libelf
install-info-host: maybe-install-info-gold
install-info-host: maybe-install-info-gprof
install-info-host: maybe-install-info-intl
install-info-host: maybe-install-info-tcl
install-info-host: maybe-install-info-itcl
install-info-host: maybe-install-info-ld
install-info-host: maybe-install-info-libcpp
install-info-host: maybe-install-info-libdecnumber
install-info-host: maybe-install-info-libgui
install-info-host: maybe-install-info-libiberty
install-info-host: maybe-install-info-libiconv
install-info-host: maybe-install-info-m4
install-info-host: maybe-install-info-readline
install-info-host: maybe-install-info-sid
install-info-host: maybe-install-info-sim
install-info-host: maybe-install-info-texinfo
install-info-host: maybe-install-info-zlib
install-info-host: maybe-install-info-gdb
install-info-host: maybe-install-info-expect
install-info-host: maybe-install-info-guile
install-info-host: maybe-install-info-tk
install-info-host: maybe-install-info-libtermcap
install-info-host: maybe-install-info-utils
install-info-host: maybe-install-info-gnattools
install-info-host: maybe-install-info-lto-plugin

.PHONY: install-info-target

install-info-target: maybe-install-info-target-libstdc++-v3
install-info-target: maybe-install-info-target-libmudflap
install-info-target: maybe-install-info-target-libssp
install-info-target: maybe-install-info-target-newlib
install-info-target: maybe-install-info-target-libgcc
install-info-target: maybe-install-info-target-libquadmath
install-info-target: maybe-install-info-target-libgfortran
install-info-target: maybe-install-info-target-libobjc
install-info-target: maybe-install-info-target-libgo
install-info-target: maybe-install-info-target-libtermcap
install-info-target: maybe-install-info-target-winsup
install-info-target: maybe-install-info-target-libgloss
install-info-target: maybe-install-info-target-libffi
install-info-target: maybe-install-info-target-libjava
install-info-target: maybe-install-info-target-zlib
install-info-target: maybe-install-info-target-boehm-gc
install-info-target: maybe-install-info-target-rda
install-info-target: maybe-install-info-target-libada
install-info-target: maybe-install-info-target-libgomp
install-info-target: maybe-install-info-target-libitm

.PHONY: do-install-pdf
do-install-pdf:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) install-pdf-host \
	  install-pdf-target


.PHONY: install-pdf-host

install-pdf-host: maybe-install-pdf-bfd
install-pdf-host: maybe-install-pdf-opcodes
install-pdf-host: maybe-install-pdf-binutils
install-pdf-host: maybe-install-pdf-bison
install-pdf-host: maybe-install-pdf-cgen
install-pdf-host: maybe-install-pdf-dejagnu
install-pdf-host: maybe-install-pdf-etc
install-pdf-host: maybe-install-pdf-fastjar
install-pdf-host: maybe-install-pdf-fixincludes
install-pdf-host: maybe-install-pdf-flex
install-pdf-host: maybe-install-pdf-gas
install-pdf-host: maybe-install-pdf-gcc
install-pdf-host: maybe-install-pdf-gmp
install-pdf-host: maybe-install-pdf-mpfr
install-pdf-host: maybe-install-pdf-mpc
install-pdf-host: maybe-install-pdf-ppl
install-pdf-host: maybe-install-pdf-cloog
install-pdf-host: maybe-install-pdf-libelf
install-pdf-host: maybe-install-pdf-gold
install-pdf-host: maybe-install-pdf-gprof
install-pdf-host: maybe-install-pdf-intl
install-pdf-host: maybe-install-pdf-tcl
install-pdf-host: maybe-install-pdf-itcl
install-pdf-host: maybe-install-pdf-ld
install-pdf-host: maybe-install-pdf-libcpp
install-pdf-host: maybe-install-pdf-libdecnumber
install-pdf-host: maybe-install-pdf-libgui
install-pdf-host: maybe-install-pdf-libiberty
install-pdf-host: maybe-install-pdf-libiconv
install-pdf-host: maybe-install-pdf-m4
install-pdf-host: maybe-install-pdf-readline
install-pdf-host: maybe-install-pdf-sid
install-pdf-host: maybe-install-pdf-sim
install-pdf-host: maybe-install-pdf-texinfo
install-pdf-host: maybe-install-pdf-zlib
install-pdf-host: maybe-install-pdf-gdb
install-pdf-host: maybe-install-pdf-expect
install-pdf-host: maybe-install-pdf-guile
install-pdf-host: maybe-install-pdf-tk
install-pdf-host: maybe-install-pdf-libtermcap
install-pdf-host: maybe-install-pdf-utils
install-pdf-host: maybe-install-pdf-gnattools
install-pdf-host: maybe-install-pdf-lto-plugin

.PHONY: install-pdf-target

install-pdf-target: maybe-install-pdf-target-libstdc++-v3
install-pdf-target: maybe-install-pdf-target-libmudflap
install-pdf-target: maybe-install-pdf-target-libssp
install-pdf-target: maybe-install-pdf-target-newlib
install-pdf-target: maybe-install-pdf-target-libgcc
install-pdf-target: maybe-install-pdf-target-libquadmath
install-pdf-target: maybe-install-pdf-target-libgfortran
install-pdf-target: maybe-install-pdf-target-libobjc
install-pdf-target: maybe-install-pdf-target-libgo
install-pdf-target: maybe-install-pdf-target-libtermcap
install-pdf-target: maybe-install-pdf-target-winsup
install-pdf-target: maybe-install-pdf-target-libgloss
install-pdf-target: maybe-install-pdf-target-libffi
install-pdf-target: maybe-install-pdf-target-libjava
install-pdf-target: maybe-install-pdf-target-zlib
install-pdf-target: maybe-install-pdf-target-boehm-gc
install-pdf-target: maybe-install-pdf-target-rda
install-pdf-target: maybe-install-pdf-target-libada
install-pdf-target: maybe-install-pdf-target-libgomp
install-pdf-target: maybe-install-pdf-target-libitm

.PHONY: do-install-html
do-install-html:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) install-html-host \
	  install-html-target


.PHONY: install-html-host

install-html-host: maybe-install-html-bfd
install-html-host: maybe-install-html-opcodes
install-html-host: maybe-install-html-binutils
install-html-host: maybe-install-html-bison
install-html-host: maybe-install-html-cgen
install-html-host: maybe-install-html-dejagnu
install-html-host: maybe-install-html-etc
install-html-host: maybe-install-html-fastjar
install-html-host: maybe-install-html-fixincludes
install-html-host: maybe-install-html-flex
install-html-host: maybe-install-html-gas
install-html-host: maybe-install-html-gcc
install-html-host: maybe-install-html-gmp
install-html-host: maybe-install-html-mpfr
install-html-host: maybe-install-html-mpc
install-html-host: maybe-install-html-ppl
install-html-host: maybe-install-html-cloog
install-html-host: maybe-install-html-libelf
install-html-host: maybe-install-html-gold
install-html-host: maybe-install-html-gprof
install-html-host: maybe-install-html-intl
install-html-host: maybe-install-html-tcl
install-html-host: maybe-install-html-itcl
install-html-host: maybe-install-html-ld
install-html-host: maybe-install-html-libcpp
install-html-host: maybe-install-html-libdecnumber
install-html-host: maybe-install-html-libgui
install-html-host: maybe-install-html-libiberty
install-html-host: maybe-install-html-libiconv
install-html-host: maybe-install-html-m4
install-html-host: maybe-install-html-readline
install-html-host: maybe-install-html-sid
install-html-host: maybe-install-html-sim
install-html-host: maybe-install-html-texinfo
install-html-host: maybe-install-html-zlib
install-html-host: maybe-install-html-gdb
install-html-host: maybe-install-html-expect
install-html-host: maybe-install-html-guile
install-html-host: maybe-install-html-tk
install-html-host: maybe-install-html-libtermcap
install-html-host: maybe-install-html-utils
install-html-host: maybe-install-html-gnattools
install-html-host: maybe-install-html-lto-plugin

.PHONY: install-html-target

install-html-target: maybe-install-html-target-libstdc++-v3
install-html-target: maybe-install-html-target-libmudflap
install-html-target: maybe-install-html-target-libssp
install-html-target: maybe-install-html-target-newlib
install-html-target: maybe-install-html-target-libgcc
install-html-target: maybe-install-html-target-libquadmath
install-html-target: maybe-install-html-target-libgfortran
install-html-target: maybe-install-html-target-libobjc
install-html-target: maybe-install-html-target-libgo
install-html-target: maybe-install-html-target-libtermcap
install-html-target: maybe-install-html-target-winsup
install-html-target: maybe-install-html-target-libgloss
install-html-target: maybe-install-html-target-libffi
install-html-target: maybe-install-html-target-libjava
install-html-target: maybe-install-html-target-zlib
install-html-target: maybe-install-html-target-boehm-gc
install-html-target: maybe-install-html-target-rda
install-html-target: maybe-install-html-target-libada
install-html-target: maybe-install-html-target-libgomp
install-html-target: maybe-install-html-target-libitm

.PHONY: do-installcheck
do-installcheck:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) installcheck-host \
	  installcheck-target


.PHONY: installcheck-host

installcheck-host: maybe-installcheck-bfd
installcheck-host: maybe-installcheck-opcodes
installcheck-host: maybe-installcheck-binutils
installcheck-host: maybe-installcheck-bison
installcheck-host: maybe-installcheck-cgen
installcheck-host: maybe-installcheck-dejagnu
installcheck-host: maybe-installcheck-etc
installcheck-host: maybe-installcheck-fastjar
installcheck-host: maybe-installcheck-fixincludes
installcheck-host: maybe-installcheck-flex
installcheck-host: maybe-installcheck-gas
installcheck-host: maybe-installcheck-gcc
installcheck-host: maybe-installcheck-gmp
installcheck-host: maybe-installcheck-mpfr
installcheck-host: maybe-installcheck-mpc
installcheck-host: maybe-installcheck-ppl
installcheck-host: maybe-installcheck-cloog
installcheck-host: maybe-installcheck-libelf
installcheck-host: maybe-installcheck-gold
installcheck-host: maybe-installcheck-gprof
installcheck-host: maybe-installcheck-intl
installcheck-host: maybe-installcheck-tcl
installcheck-host: maybe-installcheck-itcl
installcheck-host: maybe-installcheck-ld
installcheck-host: maybe-installcheck-libcpp
installcheck-host: maybe-installcheck-libdecnumber
installcheck-host: maybe-installcheck-libgui
installcheck-host: maybe-installcheck-libiberty
installcheck-host: maybe-installcheck-libiconv
installcheck-host: maybe-installcheck-m4
installcheck-host: maybe-installcheck-readline
installcheck-host: maybe-installcheck-sid
installcheck-host: maybe-installcheck-sim
installcheck-host: maybe-installcheck-texinfo
installcheck-host: maybe-installcheck-zlib
installcheck-host: maybe-installcheck-gdb
installcheck-host: maybe-installcheck-expect
installcheck-host: maybe-installcheck-guile
installcheck-host: maybe-installcheck-tk
installcheck-host: maybe-installcheck-libtermcap
installcheck-host: maybe-installcheck-utils
installcheck-host: maybe-installcheck-gnattools
installcheck-host: maybe-installcheck-lto-plugin

.PHONY: installcheck-target

installcheck-target: maybe-installcheck-target-libstdc++-v3
installcheck-target: maybe-installcheck-target-libmudflap
installcheck-target: maybe-installcheck-target-libssp
installcheck-target: maybe-installcheck-target-newlib
installcheck-target: maybe-installcheck-target-libgcc
installcheck-target: maybe-installcheck-target-libquadmath
installcheck-target: maybe-installcheck-target-libgfortran
installcheck-target: maybe-installcheck-target-libobjc
installcheck-target: maybe-installcheck-target-libgo
installcheck-target: maybe-installcheck-target-libtermcap
installcheck-target: maybe-installcheck-target-winsup
installcheck-target: maybe-installcheck-target-libgloss
installcheck-target: maybe-installcheck-target-libffi
installcheck-target: maybe-installcheck-target-libjava
installcheck-target: maybe-installcheck-target-zlib
installcheck-target: maybe-installcheck-target-boehm-gc
installcheck-target: maybe-installcheck-target-rda
installcheck-target: maybe-installcheck-target-libada
installcheck-target: maybe-installcheck-target-libgomp
installcheck-target: maybe-installcheck-target-libitm

.PHONY: do-mostlyclean
do-mostlyclean:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) mostlyclean-host \
	  mostlyclean-target


.PHONY: mostlyclean-host

mostlyclean-host: maybe-mostlyclean-bfd
mostlyclean-host: maybe-mostlyclean-opcodes
mostlyclean-host: maybe-mostlyclean-binutils
mostlyclean-host: maybe-mostlyclean-bison
mostlyclean-host: maybe-mostlyclean-cgen
mostlyclean-host: maybe-mostlyclean-dejagnu
mostlyclean-host: maybe-mostlyclean-etc
mostlyclean-host: maybe-mostlyclean-fastjar
mostlyclean-host: maybe-mostlyclean-fixincludes
mostlyclean-host: maybe-mostlyclean-flex
mostlyclean-host: maybe-mostlyclean-gas
mostlyclean-host: maybe-mostlyclean-gcc
mostlyclean-host: maybe-mostlyclean-gmp
mostlyclean-host: maybe-mostlyclean-mpfr
mostlyclean-host: maybe-mostlyclean-mpc
mostlyclean-host: maybe-mostlyclean-ppl
mostlyclean-host: maybe-mostlyclean-cloog
mostlyclean-host: maybe-mostlyclean-libelf
mostlyclean-host: maybe-mostlyclean-gold
mostlyclean-host: maybe-mostlyclean-gprof
mostlyclean-host: maybe-mostlyclean-intl
mostlyclean-host: maybe-mostlyclean-tcl
mostlyclean-host: maybe-mostlyclean-itcl
mostlyclean-host: maybe-mostlyclean-ld
mostlyclean-host: maybe-mostlyclean-libcpp
mostlyclean-host: maybe-mostlyclean-libdecnumber
mostlyclean-host: maybe-mostlyclean-libgui
mostlyclean-host: maybe-mostlyclean-libiberty
mostlyclean-host: maybe-mostlyclean-libiconv
mostlyclean-host: maybe-mostlyclean-m4
mostlyclean-host: maybe-mostlyclean-readline
mostlyclean-host: maybe-mostlyclean-sid
mostlyclean-host: maybe-mostlyclean-sim
mostlyclean-host: maybe-mostlyclean-texinfo
mostlyclean-host: maybe-mostlyclean-zlib
mostlyclean-host: maybe-mostlyclean-gdb
mostlyclean-host: maybe-mostlyclean-expect
mostlyclean-host: maybe-mostlyclean-guile
mostlyclean-host: maybe-mostlyclean-tk
mostlyclean-host: maybe-mostlyclean-libtermcap
mostlyclean-host: maybe-mostlyclean-utils
mostlyclean-host: maybe-mostlyclean-gnattools
mostlyclean-host: maybe-mostlyclean-lto-plugin

.PHONY: mostlyclean-target

mostlyclean-target: maybe-mostlyclean-target-libstdc++-v3
mostlyclean-target: maybe-mostlyclean-target-libmudflap
mostlyclean-target: maybe-mostlyclean-target-libssp
mostlyclean-target: maybe-mostlyclean-target-newlib
mostlyclean-target: maybe-mostlyclean-target-libgcc
mostlyclean-target: maybe-mostlyclean-target-libquadmath
mostlyclean-target: maybe-mostlyclean-target-libgfortran
mostlyclean-target: maybe-mostlyclean-target-libobjc
mostlyclean-target: maybe-mostlyclean-target-libgo
mostlyclean-target: maybe-mostlyclean-target-libtermcap
mostlyclean-target: maybe-mostlyclean-target-winsup
mostlyclean-target: maybe-mostlyclean-target-libgloss
mostlyclean-target: maybe-mostlyclean-target-libffi
mostlyclean-target: maybe-mostlyclean-target-libjava
mostlyclean-target: maybe-mostlyclean-target-zlib
mostlyclean-target: maybe-mostlyclean-target-boehm-gc
mostlyclean-target: maybe-mostlyclean-target-rda
mostlyclean-target: maybe-mostlyclean-target-libada
mostlyclean-target: maybe-mostlyclean-target-libgomp
mostlyclean-target: maybe-mostlyclean-target-libitm

.PHONY: do-clean
do-clean:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) clean-host \
	  clean-target


.PHONY: clean-host

clean-host: maybe-clean-bfd
clean-host: maybe-clean-opcodes
clean-host: maybe-clean-binutils
clean-host: maybe-clean-bison
clean-host: maybe-clean-cgen
clean-host: maybe-clean-dejagnu
clean-host: maybe-clean-etc
clean-host: maybe-clean-fastjar
clean-host: maybe-clean-fixincludes
clean-host: maybe-clean-flex
clean-host: maybe-clean-gas
clean-host: maybe-clean-gcc
clean-host: maybe-clean-gmp
clean-host: maybe-clean-mpfr
clean-host: maybe-clean-mpc
clean-host: maybe-clean-ppl
clean-host: maybe-clean-cloog
clean-host: maybe-clean-libelf
clean-host: maybe-clean-gold
clean-host: maybe-clean-gprof
clean-host: maybe-clean-intl
clean-host: maybe-clean-tcl
clean-host: maybe-clean-itcl
clean-host: maybe-clean-ld
clean-host: maybe-clean-libcpp
clean-host: maybe-clean-libdecnumber
clean-host: maybe-clean-libgui
clean-host: maybe-clean-libiberty
clean-host: maybe-clean-libiconv
clean-host: maybe-clean-m4
clean-host: maybe-clean-readline
clean-host: maybe-clean-sid
clean-host: maybe-clean-sim
clean-host: maybe-clean-texinfo
clean-host: maybe-clean-zlib
clean-host: maybe-clean-gdb
clean-host: maybe-clean-expect
clean-host: maybe-clean-guile
clean-host: maybe-clean-tk
clean-host: maybe-clean-libtermcap
clean-host: maybe-clean-utils
clean-host: maybe-clean-gnattools
clean-host: maybe-clean-lto-plugin

.PHONY: clean-target

clean-target: maybe-clean-target-libstdc++-v3
clean-target: maybe-clean-target-libmudflap
clean-target: maybe-clean-target-libssp
clean-target: maybe-clean-target-newlib
clean-target: maybe-clean-target-libgcc
clean-target: maybe-clean-target-libquadmath
clean-target: maybe-clean-target-libgfortran
clean-target: maybe-clean-target-libobjc
clean-target: maybe-clean-target-libgo
clean-target: maybe-clean-target-libtermcap
clean-target: maybe-clean-target-winsup
clean-target: maybe-clean-target-libgloss
clean-target: maybe-clean-target-libffi
clean-target: maybe-clean-target-libjava
clean-target: maybe-clean-target-zlib
clean-target: maybe-clean-target-boehm-gc
clean-target: maybe-clean-target-rda
clean-target: maybe-clean-target-libada
clean-target: maybe-clean-target-libgomp
clean-target: maybe-clean-target-libitm

.PHONY: do-distclean
do-distclean:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) distclean-host \
	  distclean-target


.PHONY: distclean-host

distclean-host: maybe-distclean-bfd
distclean-host: maybe-distclean-opcodes
distclean-host: maybe-distclean-binutils
distclean-host: maybe-distclean-bison
distclean-host: maybe-distclean-cgen
distclean-host: maybe-distclean-dejagnu
distclean-host: maybe-distclean-etc
distclean-host: maybe-distclean-fastjar
distclean-host: maybe-distclean-fixincludes
distclean-host: maybe-distclean-flex
distclean-host: maybe-distclean-gas
distclean-host: maybe-distclean-gcc
distclean-host: maybe-distclean-gmp
distclean-host: maybe-distclean-mpfr
distclean-host: maybe-distclean-mpc
distclean-host: maybe-distclean-ppl
distclean-host: maybe-distclean-cloog
distclean-host: maybe-distclean-libelf
distclean-host: maybe-distclean-gold
distclean-host: maybe-distclean-gprof
distclean-host: maybe-distclean-intl
distclean-host: maybe-distclean-tcl
distclean-host: maybe-distclean-itcl
distclean-host: maybe-distclean-ld
distclean-host: maybe-distclean-libcpp
distclean-host: maybe-distclean-libdecnumber
distclean-host: maybe-distclean-libgui
distclean-host: maybe-distclean-libiberty
distclean-host: maybe-distclean-libiconv
distclean-host: maybe-distclean-m4
distclean-host: maybe-distclean-readline
distclean-host: maybe-distclean-sid
distclean-host: maybe-distclean-sim
distclean-host: maybe-distclean-texinfo
distclean-host: maybe-distclean-zlib
distclean-host: maybe-distclean-gdb
distclean-host: maybe-distclean-expect
distclean-host: maybe-distclean-guile
distclean-host: maybe-distclean-tk
distclean-host: maybe-distclean-libtermcap
distclean-host: maybe-distclean-utils
distclean-host: maybe-distclean-gnattools
distclean-host: maybe-distclean-lto-plugin

.PHONY: distclean-target

distclean-target: maybe-distclean-target-libstdc++-v3
distclean-target: maybe-distclean-target-libmudflap
distclean-target: maybe-distclean-target-libssp
distclean-target: maybe-distclean-target-newlib
distclean-target: maybe-distclean-target-libgcc
distclean-target: maybe-distclean-target-libquadmath
distclean-target: maybe-distclean-target-libgfortran
distclean-target: maybe-distclean-target-libobjc
distclean-target: maybe-distclean-target-libgo
distclean-target: maybe-distclean-target-libtermcap
distclean-target: maybe-distclean-target-winsup
distclean-target: maybe-distclean-target-libgloss
distclean-target: maybe-distclean-target-libffi
distclean-target: maybe-distclean-target-libjava
distclean-target: maybe-distclean-target-zlib
distclean-target: maybe-distclean-target-boehm-gc
distclean-target: maybe-distclean-target-rda
distclean-target: maybe-distclean-target-libada
distclean-target: maybe-distclean-target-libgomp
distclean-target: maybe-distclean-target-libitm

.PHONY: do-maintainer-clean
do-maintainer-clean:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) maintainer-clean-host \
	  maintainer-clean-target


.PHONY: maintainer-clean-host

maintainer-clean-host: maybe-maintainer-clean-bfd
maintainer-clean-host: maybe-maintainer-clean-opcodes
maintainer-clean-host: maybe-maintainer-clean-binutils
maintainer-clean-host: maybe-maintainer-clean-bison
maintainer-clean-host: maybe-maintainer-clean-cgen
maintainer-clean-host: maybe-maintainer-clean-dejagnu
maintainer-clean-host: maybe-maintainer-clean-etc
maintainer-clean-host: maybe-maintainer-clean-fastjar
maintainer-clean-host: maybe-maintainer-clean-fixincludes
maintainer-clean-host: maybe-maintainer-clean-flex
maintainer-clean-host: maybe-maintainer-clean-gas
maintainer-clean-host: maybe-maintainer-clean-gcc
maintainer-clean-host: maybe-maintainer-clean-gmp
maintainer-clean-host: maybe-maintainer-clean-mpfr
maintainer-clean-host: maybe-maintainer-clean-mpc
maintainer-clean-host: maybe-maintainer-clean-ppl
maintainer-clean-host: maybe-maintainer-clean-cloog
maintainer-clean-host: maybe-maintainer-clean-libelf
maintainer-clean-host: maybe-maintainer-clean-gold
maintainer-clean-host: maybe-maintainer-clean-gprof
maintainer-clean-host: maybe-maintainer-clean-intl
maintainer-clean-host: maybe-maintainer-clean-tcl
maintainer-clean-host: maybe-maintainer-clean-itcl
maintainer-clean-host: maybe-maintainer-clean-ld
maintainer-clean-host: maybe-maintainer-clean-libcpp
maintainer-clean-host: maybe-maintainer-clean-libdecnumber
maintainer-clean-host: maybe-maintainer-clean-libgui
maintainer-clean-host: maybe-maintainer-clean-libiberty
maintainer-clean-host: maybe-maintainer-clean-libiconv
maintainer-clean-host: maybe-maintainer-clean-m4
maintainer-clean-host: maybe-maintainer-clean-readline
maintainer-clean-host: maybe-maintainer-clean-sid
maintainer-clean-host: maybe-maintainer-clean-sim
maintainer-clean-host: maybe-maintainer-clean-texinfo
maintainer-clean-host: maybe-maintainer-clean-zlib
maintainer-clean-host: maybe-maintainer-clean-gdb
maintainer-clean-host: maybe-maintainer-clean-expect
maintainer-clean-host: maybe-maintainer-clean-guile
maintainer-clean-host: maybe-maintainer-clean-tk
maintainer-clean-host: maybe-maintainer-clean-libtermcap
maintainer-clean-host: maybe-maintainer-clean-utils
maintainer-clean-host: maybe-maintainer-clean-gnattools
maintainer-clean-host: maybe-maintainer-clean-lto-plugin

.PHONY: maintainer-clean-target

maintainer-clean-target: maybe-maintainer-clean-target-libstdc++-v3
maintainer-clean-target: maybe-maintainer-clean-target-libmudflap
maintainer-clean-target: maybe-maintainer-clean-target-libssp
maintainer-clean-target: maybe-maintainer-clean-target-newlib
maintainer-clean-target: maybe-maintainer-clean-target-libgcc
maintainer-clean-target: maybe-maintainer-clean-target-libquadmath
maintainer-clean-target: maybe-maintainer-clean-target-libgfortran
maintainer-clean-target: maybe-maintainer-clean-target-libobjc
maintainer-clean-target: maybe-maintainer-clean-target-libgo
maintainer-clean-target: maybe-maintainer-clean-target-libtermcap
maintainer-clean-target: maybe-maintainer-clean-target-winsup
maintainer-clean-target: maybe-maintainer-clean-target-libgloss
maintainer-clean-target: maybe-maintainer-clean-target-libffi
maintainer-clean-target: maybe-maintainer-clean-target-libjava
maintainer-clean-target: maybe-maintainer-clean-target-zlib
maintainer-clean-target: maybe-maintainer-clean-target-boehm-gc
maintainer-clean-target: maybe-maintainer-clean-target-rda
maintainer-clean-target: maybe-maintainer-clean-target-libada
maintainer-clean-target: maybe-maintainer-clean-target-libgomp
maintainer-clean-target: maybe-maintainer-clean-target-libitm


# Here are the targets which correspond to the do-X targets.

.PHONY: info installcheck dvi pdf html
.PHONY: install-info install-pdf install-html
.PHONY: clean distclean mostlyclean maintainer-clean realclean
.PHONY: local-clean local-distclean local-maintainer-clean
info: do-info
installcheck: do-installcheck
dvi: do-dvi
pdf: do-pdf
html: do-html

# Make sure makeinfo is built before we do a `make info', if we're
# in fact building texinfo.
do-info: maybe-all-texinfo

install-info: do-install-info dir.info
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	if [ -f dir.info ] ; then \
	  $(INSTALL_DATA) dir.info $(DESTDIR)$(infodir)/dir.info ; \
	else true ; fi

install-pdf: do-install-pdf

install-html: do-install-html

local-clean:
	-rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E *.log

local-distclean:
	-rm -f Makefile config.status config.cache mh-frag mt-frag
	-rm -f maybedep.tmp serdep.tmp
	-if [ "$(TARGET_SUBDIR)" != "." ]; then \
	  rm -rf $(TARGET_SUBDIR); \
	else true; fi
	-rm -rf $(BUILD_SUBDIR)
	-if [ "$(HOST_SUBDIR)" != "." ]; then \
	  rm -rf $(HOST_SUBDIR); \
	else true; fi
	-rm -f texinfo/po/Makefile texinfo/po/Makefile.in texinfo/info/Makefile
	-rm -f texinfo/doc/Makefile texinfo/po/POTFILES
	-rmdir texinfo/doc texinfo/info texinfo/intl texinfo/lib 2>/dev/null
	-rmdir texinfo/makeinfo texinfo/po texinfo/util 2>/dev/null
	-rmdir fastjar gcc libiberty texinfo zlib 2>/dev/null
	-find . -name config.cache -exec rm -f {} \; \; 2>/dev/null

local-maintainer-clean:
	@echo "This command is intended for maintainers to use;"
	@echo "it deletes files that may require special tools to rebuild."

clean: do-clean local-clean
mostlyclean: do-mostlyclean local-clean
distclean: do-distclean local-clean local-distclean
maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean 
maintainer-clean: local-distclean
realclean: maintainer-clean

# Check target.

.PHONY: check do-check
check: do-check

# Only include modules actually being configured and built.
.PHONY: check-host
check-host:  \
    maybe-check-bfd \
    maybe-check-opcodes \
    maybe-check-binutils \
    maybe-check-bison \
    maybe-check-cgen \
    maybe-check-dejagnu \
    maybe-check-etc \
    maybe-check-fastjar \
    maybe-check-fixincludes \
    maybe-check-flex \
    maybe-check-gas \
    maybe-check-gcc \
    maybe-check-gmp \
    maybe-check-mpfr \
    maybe-check-mpc \
    maybe-check-ppl \
    maybe-check-cloog \
    maybe-check-libelf \
    maybe-check-gold \
    maybe-check-gprof \
    maybe-check-intl \
    maybe-check-tcl \
    maybe-check-itcl \
    maybe-check-ld \
    maybe-check-libcpp \
    maybe-check-libdecnumber \
    maybe-check-libgui \
    maybe-check-libiberty \
    maybe-check-libiconv \
    maybe-check-m4 \
    maybe-check-readline \
    maybe-check-sid \
    maybe-check-sim \
    maybe-check-texinfo \
    maybe-check-zlib \
    maybe-check-gdb \
    maybe-check-expect \
    maybe-check-guile \
    maybe-check-tk \
    maybe-check-libtermcap \
    maybe-check-utils \
    maybe-check-gnattools \
    maybe-check-lto-plugin

.PHONY: check-target
check-target:  \
    maybe-check-target-libstdc++-v3 \
    maybe-check-target-libmudflap \
    maybe-check-target-libssp \
    maybe-check-target-newlib \
    maybe-check-target-libgcc \
    maybe-check-target-libquadmath \
    maybe-check-target-libgfortran \
    maybe-check-target-libobjc \
    maybe-check-target-libgo \
    maybe-check-target-libtermcap \
    maybe-check-target-winsup \
    maybe-check-target-libgloss \
    maybe-check-target-libffi \
    maybe-check-target-libjava \
    maybe-check-target-zlib \
    maybe-check-target-boehm-gc \
    maybe-check-target-rda \
    maybe-check-target-libada \
    maybe-check-target-libgomp \
    maybe-check-target-libitm

do-check:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) check-host check-target

# Automated reporting of test results.

warning.log: build.log
	$(srcdir)/contrib/warn_summary build.log > $@

mail-report.log:
	if test x'$(BOOT_CFLAGS)' != x''; then \
	    BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \
	fi; \
	$(srcdir)/contrib/test_summary -t >$@
	chmod +x $@
	echo If you really want to send e-mail, run ./$@ now

mail-report-with-warnings.log: warning.log
	if test x'$(BOOT_CFLAGS)' != x''; then \
	    BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \
	fi; \
	$(srcdir)/contrib/test_summary -t -i warning.log >$@
	chmod +x $@
	echo If you really want to send e-mail, run ./$@ now

# Installation targets.

.PHONY: install uninstall
install:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) installdirs install-host install-target

.PHONY: install-host-nogcc
install-host-nogcc:  \
    maybe-install-bfd \
    maybe-install-opcodes \
    maybe-install-binutils \
    maybe-install-bison \
    maybe-install-cgen \
    maybe-install-dejagnu \
    maybe-install-etc \
    maybe-install-fastjar \
    maybe-install-fixincludes \
    maybe-install-flex \
    maybe-install-gas \
    maybe-install-gmp \
    maybe-install-mpfr \
    maybe-install-mpc \
    maybe-install-ppl \
    maybe-install-cloog \
    maybe-install-libelf \
    maybe-install-gold \
    maybe-install-gprof \
    maybe-install-intl \
    maybe-install-tcl \
    maybe-install-itcl \
    maybe-install-ld \
    maybe-install-libcpp \
    maybe-install-libdecnumber \
    maybe-install-libgui \
    maybe-install-libiberty \
    maybe-install-libiconv \
    maybe-install-m4 \
    maybe-install-readline \
    maybe-install-sid \
    maybe-install-sim \
    maybe-install-texinfo \
    maybe-install-zlib \
    maybe-install-gdb \
    maybe-install-expect \
    maybe-install-guile \
    maybe-install-tk \
    maybe-install-libtermcap \
    maybe-install-utils \
    maybe-install-gnattools \
    maybe-install-lto-plugin

.PHONY: install-host
install-host:  \
    maybe-install-bfd \
    maybe-install-opcodes \
    maybe-install-binutils \
    maybe-install-bison \
    maybe-install-cgen \
    maybe-install-dejagnu \
    maybe-install-etc \
    maybe-install-fastjar \
    maybe-install-fixincludes \
    maybe-install-flex \
    maybe-install-gas \
    maybe-install-gcc \
    maybe-install-gmp \
    maybe-install-mpfr \
    maybe-install-mpc \
    maybe-install-ppl \
    maybe-install-cloog \
    maybe-install-libelf \
    maybe-install-gold \
    maybe-install-gprof \
    maybe-install-intl \
    maybe-install-tcl \
    maybe-install-itcl \
    maybe-install-ld \
    maybe-install-libcpp \
    maybe-install-libdecnumber \
    maybe-install-libgui \
    maybe-install-libiberty \
    maybe-install-libiconv \
    maybe-install-m4 \
    maybe-install-readline \
    maybe-install-sid \
    maybe-install-sim \
    maybe-install-texinfo \
    maybe-install-zlib \
    maybe-install-gdb \
    maybe-install-expect \
    maybe-install-guile \
    maybe-install-tk \
    maybe-install-libtermcap \
    maybe-install-utils \
    maybe-install-gnattools \
    maybe-install-lto-plugin

.PHONY: install-target
install-target:  \
    maybe-install-target-libstdc++-v3 \
    maybe-install-target-libmudflap \
    maybe-install-target-libssp \
    maybe-install-target-newlib \
    maybe-install-target-libgcc \
    maybe-install-target-libquadmath \
    maybe-install-target-libgfortran \
    maybe-install-target-libobjc \
    maybe-install-target-libgo \
    maybe-install-target-libtermcap \
    maybe-install-target-winsup \
    maybe-install-target-libgloss \
    maybe-install-target-libffi \
    maybe-install-target-libjava \
    maybe-install-target-zlib \
    maybe-install-target-boehm-gc \
    maybe-install-target-rda \
    maybe-install-target-libada \
    maybe-install-target-libgomp \
    maybe-install-target-libitm

uninstall:
	@echo "the uninstall target is not supported in this tree"

.PHONY: install.all
install.all: install-no-fixedincludes
	@if [ -f ./gcc/Makefile ] ; then \
		r=`${PWD_COMMAND}` ; export r ; \
		s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
		$(HOST_EXPORTS) \
		(cd ./gcc && \
		$(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
	else \
		true ; \
	fi

# install-no-fixedincludes is used to allow the elaboration of binary packages
# suitable for distribution, where we cannot include the fixed system header
# files.
.PHONY: install-no-fixedincludes
install-no-fixedincludes: installdirs install-host-nogcc \
	install-target gcc-install-no-fixedincludes

.PHONY: install-strip
install-strip:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) installdirs install-strip-host install-strip-target

.PHONY: install-strip-host
install-strip-host:  \
    maybe-install-strip-bfd \
    maybe-install-strip-opcodes \
    maybe-install-strip-binutils \
    maybe-install-strip-bison \
    maybe-install-strip-cgen \
    maybe-install-strip-dejagnu \
    maybe-install-strip-etc \
    maybe-install-strip-fastjar \
    maybe-install-strip-fixincludes \
    maybe-install-strip-flex \
    maybe-install-strip-gas \
    maybe-install-strip-gcc \
    maybe-install-strip-gmp \
    maybe-install-strip-mpfr \
    maybe-install-strip-mpc \
    maybe-install-strip-ppl \
    maybe-install-strip-cloog \
    maybe-install-strip-libelf \
    maybe-install-strip-gold \
    maybe-install-strip-gprof \
    maybe-install-strip-intl \
    maybe-install-strip-tcl \
    maybe-install-strip-itcl \
    maybe-install-strip-ld \
    maybe-install-strip-libcpp \
    maybe-install-strip-libdecnumber \
    maybe-install-strip-libgui \
    maybe-install-strip-libiberty \
    maybe-install-strip-libiconv \
    maybe-install-strip-m4 \
    maybe-install-strip-readline \
    maybe-install-strip-sid \
    maybe-install-strip-sim \
    maybe-install-strip-texinfo \
    maybe-install-strip-zlib \
    maybe-install-strip-gdb \
    maybe-install-strip-expect \
    maybe-install-strip-guile \
    maybe-install-strip-tk \
    maybe-install-strip-libtermcap \
    maybe-install-strip-utils \
    maybe-install-strip-gnattools \
    maybe-install-strip-lto-plugin

.PHONY: install-strip-target
install-strip-target:  \
    maybe-install-strip-target-libstdc++-v3 \
    maybe-install-strip-target-libmudflap \
    maybe-install-strip-target-libssp \
    maybe-install-strip-target-newlib \
    maybe-install-strip-target-libgcc \
    maybe-install-strip-target-libquadmath \
    maybe-install-strip-target-libgfortran \
    maybe-install-strip-target-libobjc \
    maybe-install-strip-target-libgo \
    maybe-install-strip-target-libtermcap \
    maybe-install-strip-target-winsup \
    maybe-install-strip-target-libgloss \
    maybe-install-strip-target-libffi \
    maybe-install-strip-target-libjava \
    maybe-install-strip-target-zlib \
    maybe-install-strip-target-boehm-gc \
    maybe-install-strip-target-rda \
    maybe-install-strip-target-libada \
    maybe-install-strip-target-libgomp \
    maybe-install-strip-target-libitm


### other supporting targets

MAKEDIRS= \
	$(DESTDIR)$(prefix) \
	$(DESTDIR)$(exec_prefix)
.PHONY: installdirs
installdirs: mkinstalldirs
	$(SHELL) $(srcdir)/mkinstalldirs $(MAKEDIRS)

dir.info: do-install-info
	if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
	  $(srcdir)/texinfo/gen-info-dir $(DESTDIR)$(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
	  mv -f dir.info.new dir.info ; \
	else true ; \
	fi

dist:
	@echo "Building a full distribution of this tree isn't done"
	@echo "via 'make dist'.  Check out the etc/ subdirectory" 

etags tags: TAGS

# Right now this just builds TAGS in each subdirectory.  emacs19 has the
# ability to use several tags files at once, so there is probably no need
# to combine them into one big TAGS file (like CVS 1.3 does).  We could
# (if we felt like it) have this Makefile write a piece of elisp which
# the user could load to tell emacs19 where all the TAGS files we just
# built are.
TAGS: do-TAGS

# ------------------------------------
# Macros for configure and all targets
# ------------------------------------





# --------------------------------------
# Modules which run on the build machine
# --------------------------------------


.PHONY: configure-build-libiberty maybe-configure-build-libiberty
maybe-configure-build-libiberty:
maybe-configure-build-libiberty: configure-build-libiberty
configure-build-libiberty: 
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	test ! -f $(BUILD_SUBDIR)/libiberty/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(BUILD_SUBDIR)/libiberty ; \
	$(BUILD_EXPORTS)  \
	echo Configuring in $(BUILD_SUBDIR)/libiberty; \
	cd "$(BUILD_SUBDIR)/libiberty" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(BUILD_SUBDIR)/libiberty/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/libiberty"; \
	libsrcdir="$$s/libiberty"; \
	rm -f no-such-file || : ; \
	CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
	  $(BUILD_CONFIGARGS) --build=${build_alias} --host=${build_alias} \
	  --target=${target_alias} $${srcdiroption}  \
	  || exit 1





.PHONY: all-build-libiberty maybe-all-build-libiberty
maybe-all-build-libiberty:
TARGET-build-libiberty=all
maybe-all-build-libiberty: all-build-libiberty
all-build-libiberty: configure-build-libiberty
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(BUILD_EXPORTS)  \
	(cd $(BUILD_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_BUILD_FLAGS)  \
		$(TARGET-build-libiberty))





.PHONY: configure-build-bison maybe-configure-build-bison
maybe-configure-build-bison:





.PHONY: all-build-bison maybe-all-build-bison
maybe-all-build-bison:





.PHONY: configure-build-flex maybe-configure-build-flex
maybe-configure-build-flex:





.PHONY: all-build-flex maybe-all-build-flex
maybe-all-build-flex:





.PHONY: configure-build-m4 maybe-configure-build-m4
maybe-configure-build-m4:





.PHONY: all-build-m4 maybe-all-build-m4
maybe-all-build-m4:





.PHONY: configure-build-texinfo maybe-configure-build-texinfo
maybe-configure-build-texinfo:





.PHONY: all-build-texinfo maybe-all-build-texinfo
maybe-all-build-texinfo:





.PHONY: configure-build-fixincludes maybe-configure-build-fixincludes
maybe-configure-build-fixincludes:
maybe-configure-build-fixincludes: configure-build-fixincludes
configure-build-fixincludes: 
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	test ! -f $(BUILD_SUBDIR)/fixincludes/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(BUILD_SUBDIR)/fixincludes ; \
	$(BUILD_EXPORTS)  \
	echo Configuring in $(BUILD_SUBDIR)/fixincludes; \
	cd "$(BUILD_SUBDIR)/fixincludes" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(BUILD_SUBDIR)/fixincludes/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/fixincludes"; \
	libsrcdir="$$s/fixincludes"; \
	rm -f no-such-file || : ; \
	CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
	  $(BUILD_CONFIGARGS) --build=${build_alias} --host=${build_alias} \
	  --target=${target_alias} $${srcdiroption}  \
	  || exit 1





.PHONY: all-build-fixincludes maybe-all-build-fixincludes
maybe-all-build-fixincludes:
TARGET-build-fixincludes=all
maybe-all-build-fixincludes: all-build-fixincludes
all-build-fixincludes: configure-build-fixincludes
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(BUILD_EXPORTS)  \
	(cd $(BUILD_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_BUILD_FLAGS)  \
		$(TARGET-build-fixincludes))





# --------------------------------------
# Modules which run on the host machine
# --------------------------------------


.PHONY: configure-bfd maybe-configure-bfd
maybe-configure-bfd:



.PHONY: configure-stage1-bfd maybe-configure-stage1-bfd
maybe-configure-stage1-bfd:

.PHONY: configure-stage2-bfd maybe-configure-stage2-bfd
maybe-configure-stage2-bfd:

.PHONY: configure-stage3-bfd maybe-configure-stage3-bfd
maybe-configure-stage3-bfd:

.PHONY: configure-stage4-bfd maybe-configure-stage4-bfd
maybe-configure-stage4-bfd:

.PHONY: configure-stageprofile-bfd maybe-configure-stageprofile-bfd
maybe-configure-stageprofile-bfd:

.PHONY: configure-stagefeedback-bfd maybe-configure-stagefeedback-bfd
maybe-configure-stagefeedback-bfd:





.PHONY: all-bfd maybe-all-bfd
maybe-all-bfd:



.PHONY: all-stage1-bfd maybe-all-stage1-bfd
.PHONY: clean-stage1-bfd maybe-clean-stage1-bfd
maybe-all-stage1-bfd:
maybe-clean-stage1-bfd:


.PHONY: all-stage2-bfd maybe-all-stage2-bfd
.PHONY: clean-stage2-bfd maybe-clean-stage2-bfd
maybe-all-stage2-bfd:
maybe-clean-stage2-bfd:


.PHONY: all-stage3-bfd maybe-all-stage3-bfd
.PHONY: clean-stage3-bfd maybe-clean-stage3-bfd
maybe-all-stage3-bfd:
maybe-clean-stage3-bfd:


.PHONY: all-stage4-bfd maybe-all-stage4-bfd
.PHONY: clean-stage4-bfd maybe-clean-stage4-bfd
maybe-all-stage4-bfd:
maybe-clean-stage4-bfd:


.PHONY: all-stageprofile-bfd maybe-all-stageprofile-bfd
.PHONY: clean-stageprofile-bfd maybe-clean-stageprofile-bfd
maybe-all-stageprofile-bfd:
maybe-clean-stageprofile-bfd:


.PHONY: all-stagefeedback-bfd maybe-all-stagefeedback-bfd
.PHONY: clean-stagefeedback-bfd maybe-clean-stagefeedback-bfd
maybe-all-stagefeedback-bfd:
maybe-clean-stagefeedback-bfd:





.PHONY: check-bfd maybe-check-bfd
maybe-check-bfd:

.PHONY: install-bfd maybe-install-bfd
maybe-install-bfd:

.PHONY: install-strip-bfd maybe-install-strip-bfd
maybe-install-strip-bfd:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-bfd info-bfd
maybe-info-bfd:

.PHONY: maybe-dvi-bfd dvi-bfd
maybe-dvi-bfd:

.PHONY: maybe-pdf-bfd pdf-bfd
maybe-pdf-bfd:

.PHONY: maybe-html-bfd html-bfd
maybe-html-bfd:

.PHONY: maybe-TAGS-bfd TAGS-bfd
maybe-TAGS-bfd:

.PHONY: maybe-install-info-bfd install-info-bfd
maybe-install-info-bfd:

.PHONY: maybe-install-pdf-bfd install-pdf-bfd
maybe-install-pdf-bfd:

.PHONY: maybe-install-html-bfd install-html-bfd
maybe-install-html-bfd:

.PHONY: maybe-installcheck-bfd installcheck-bfd
maybe-installcheck-bfd:

.PHONY: maybe-mostlyclean-bfd mostlyclean-bfd
maybe-mostlyclean-bfd:

.PHONY: maybe-clean-bfd clean-bfd
maybe-clean-bfd:

.PHONY: maybe-distclean-bfd distclean-bfd
maybe-distclean-bfd:

.PHONY: maybe-maintainer-clean-bfd maintainer-clean-bfd
maybe-maintainer-clean-bfd:



.PHONY: configure-opcodes maybe-configure-opcodes
maybe-configure-opcodes:



.PHONY: configure-stage1-opcodes maybe-configure-stage1-opcodes
maybe-configure-stage1-opcodes:

.PHONY: configure-stage2-opcodes maybe-configure-stage2-opcodes
maybe-configure-stage2-opcodes:

.PHONY: configure-stage3-opcodes maybe-configure-stage3-opcodes
maybe-configure-stage3-opcodes:

.PHONY: configure-stage4-opcodes maybe-configure-stage4-opcodes
maybe-configure-stage4-opcodes:

.PHONY: configure-stageprofile-opcodes maybe-configure-stageprofile-opcodes
maybe-configure-stageprofile-opcodes:

.PHONY: configure-stagefeedback-opcodes maybe-configure-stagefeedback-opcodes
maybe-configure-stagefeedback-opcodes:





.PHONY: all-opcodes maybe-all-opcodes
maybe-all-opcodes:



.PHONY: all-stage1-opcodes maybe-all-stage1-opcodes
.PHONY: clean-stage1-opcodes maybe-clean-stage1-opcodes
maybe-all-stage1-opcodes:
maybe-clean-stage1-opcodes:


.PHONY: all-stage2-opcodes maybe-all-stage2-opcodes
.PHONY: clean-stage2-opcodes maybe-clean-stage2-opcodes
maybe-all-stage2-opcodes:
maybe-clean-stage2-opcodes:


.PHONY: all-stage3-opcodes maybe-all-stage3-opcodes
.PHONY: clean-stage3-opcodes maybe-clean-stage3-opcodes
maybe-all-stage3-opcodes:
maybe-clean-stage3-opcodes:


.PHONY: all-stage4-opcodes maybe-all-stage4-opcodes
.PHONY: clean-stage4-opcodes maybe-clean-stage4-opcodes
maybe-all-stage4-opcodes:
maybe-clean-stage4-opcodes:


.PHONY: all-stageprofile-opcodes maybe-all-stageprofile-opcodes
.PHONY: clean-stageprofile-opcodes maybe-clean-stageprofile-opcodes
maybe-all-stageprofile-opcodes:
maybe-clean-stageprofile-opcodes:


.PHONY: all-stagefeedback-opcodes maybe-all-stagefeedback-opcodes
.PHONY: clean-stagefeedback-opcodes maybe-clean-stagefeedback-opcodes
maybe-all-stagefeedback-opcodes:
maybe-clean-stagefeedback-opcodes:





.PHONY: check-opcodes maybe-check-opcodes
maybe-check-opcodes:

.PHONY: install-opcodes maybe-install-opcodes
maybe-install-opcodes:

.PHONY: install-strip-opcodes maybe-install-strip-opcodes
maybe-install-strip-opcodes:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-opcodes info-opcodes
maybe-info-opcodes:

.PHONY: maybe-dvi-opcodes dvi-opcodes
maybe-dvi-opcodes:

.PHONY: maybe-pdf-opcodes pdf-opcodes
maybe-pdf-opcodes:

.PHONY: maybe-html-opcodes html-opcodes
maybe-html-opcodes:

.PHONY: maybe-TAGS-opcodes TAGS-opcodes
maybe-TAGS-opcodes:

.PHONY: maybe-install-info-opcodes install-info-opcodes
maybe-install-info-opcodes:

.PHONY: maybe-install-pdf-opcodes install-pdf-opcodes
maybe-install-pdf-opcodes:

.PHONY: maybe-install-html-opcodes install-html-opcodes
maybe-install-html-opcodes:

.PHONY: maybe-installcheck-opcodes installcheck-opcodes
maybe-installcheck-opcodes:

.PHONY: maybe-mostlyclean-opcodes mostlyclean-opcodes
maybe-mostlyclean-opcodes:

.PHONY: maybe-clean-opcodes clean-opcodes
maybe-clean-opcodes:

.PHONY: maybe-distclean-opcodes distclean-opcodes
maybe-distclean-opcodes:

.PHONY: maybe-maintainer-clean-opcodes maintainer-clean-opcodes
maybe-maintainer-clean-opcodes:



.PHONY: configure-binutils maybe-configure-binutils
maybe-configure-binutils:



.PHONY: configure-stage1-binutils maybe-configure-stage1-binutils
maybe-configure-stage1-binutils:

.PHONY: configure-stage2-binutils maybe-configure-stage2-binutils
maybe-configure-stage2-binutils:

.PHONY: configure-stage3-binutils maybe-configure-stage3-binutils
maybe-configure-stage3-binutils:

.PHONY: configure-stage4-binutils maybe-configure-stage4-binutils
maybe-configure-stage4-binutils:

.PHONY: configure-stageprofile-binutils maybe-configure-stageprofile-binutils
maybe-configure-stageprofile-binutils:

.PHONY: configure-stagefeedback-binutils maybe-configure-stagefeedback-binutils
maybe-configure-stagefeedback-binutils:





.PHONY: all-binutils maybe-all-binutils
maybe-all-binutils:



.PHONY: all-stage1-binutils maybe-all-stage1-binutils
.PHONY: clean-stage1-binutils maybe-clean-stage1-binutils
maybe-all-stage1-binutils:
maybe-clean-stage1-binutils:


.PHONY: all-stage2-binutils maybe-all-stage2-binutils
.PHONY: clean-stage2-binutils maybe-clean-stage2-binutils
maybe-all-stage2-binutils:
maybe-clean-stage2-binutils:


.PHONY: all-stage3-binutils maybe-all-stage3-binutils
.PHONY: clean-stage3-binutils maybe-clean-stage3-binutils
maybe-all-stage3-binutils:
maybe-clean-stage3-binutils:


.PHONY: all-stage4-binutils maybe-all-stage4-binutils
.PHONY: clean-stage4-binutils maybe-clean-stage4-binutils
maybe-all-stage4-binutils:
maybe-clean-stage4-binutils:


.PHONY: all-stageprofile-binutils maybe-all-stageprofile-binutils
.PHONY: clean-stageprofile-binutils maybe-clean-stageprofile-binutils
maybe-all-stageprofile-binutils:
maybe-clean-stageprofile-binutils:


.PHONY: all-stagefeedback-binutils maybe-all-stagefeedback-binutils
.PHONY: clean-stagefeedback-binutils maybe-clean-stagefeedback-binutils
maybe-all-stagefeedback-binutils:
maybe-clean-stagefeedback-binutils:





.PHONY: check-binutils maybe-check-binutils
maybe-check-binutils:

.PHONY: install-binutils maybe-install-binutils
maybe-install-binutils:

.PHONY: install-strip-binutils maybe-install-strip-binutils
maybe-install-strip-binutils:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-binutils info-binutils
maybe-info-binutils:

.PHONY: maybe-dvi-binutils dvi-binutils
maybe-dvi-binutils:

.PHONY: maybe-pdf-binutils pdf-binutils
maybe-pdf-binutils:

.PHONY: maybe-html-binutils html-binutils
maybe-html-binutils:

.PHONY: maybe-TAGS-binutils TAGS-binutils
maybe-TAGS-binutils:

.PHONY: maybe-install-info-binutils install-info-binutils
maybe-install-info-binutils:

.PHONY: maybe-install-pdf-binutils install-pdf-binutils
maybe-install-pdf-binutils:

.PHONY: maybe-install-html-binutils install-html-binutils
maybe-install-html-binutils:

.PHONY: maybe-installcheck-binutils installcheck-binutils
maybe-installcheck-binutils:

.PHONY: maybe-mostlyclean-binutils mostlyclean-binutils
maybe-mostlyclean-binutils:

.PHONY: maybe-clean-binutils clean-binutils
maybe-clean-binutils:

.PHONY: maybe-distclean-binutils distclean-binutils
maybe-distclean-binutils:

.PHONY: maybe-maintainer-clean-binutils maintainer-clean-binutils
maybe-maintainer-clean-binutils:



.PHONY: configure-bison maybe-configure-bison
maybe-configure-bison:





.PHONY: all-bison maybe-all-bison
maybe-all-bison:




.PHONY: check-bison maybe-check-bison
maybe-check-bison:

.PHONY: install-bison maybe-install-bison
maybe-install-bison:

.PHONY: install-strip-bison maybe-install-strip-bison
maybe-install-strip-bison:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-bison info-bison
maybe-info-bison:

.PHONY: maybe-dvi-bison dvi-bison
maybe-dvi-bison:

.PHONY: maybe-pdf-bison pdf-bison
maybe-pdf-bison:

.PHONY: maybe-html-bison html-bison
maybe-html-bison:

.PHONY: maybe-TAGS-bison TAGS-bison
maybe-TAGS-bison:

.PHONY: maybe-install-info-bison install-info-bison
maybe-install-info-bison:

.PHONY: maybe-install-pdf-bison install-pdf-bison
maybe-install-pdf-bison:

.PHONY: maybe-install-html-bison install-html-bison
maybe-install-html-bison:

.PHONY: maybe-installcheck-bison installcheck-bison
maybe-installcheck-bison:

.PHONY: maybe-mostlyclean-bison mostlyclean-bison
maybe-mostlyclean-bison:

.PHONY: maybe-clean-bison clean-bison
maybe-clean-bison:

.PHONY: maybe-distclean-bison distclean-bison
maybe-distclean-bison:

.PHONY: maybe-maintainer-clean-bison maintainer-clean-bison
maybe-maintainer-clean-bison:



.PHONY: configure-cgen maybe-configure-cgen
maybe-configure-cgen:





.PHONY: all-cgen maybe-all-cgen
maybe-all-cgen:




.PHONY: check-cgen maybe-check-cgen
maybe-check-cgen:

.PHONY: install-cgen maybe-install-cgen
maybe-install-cgen:

.PHONY: install-strip-cgen maybe-install-strip-cgen
maybe-install-strip-cgen:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-cgen info-cgen
maybe-info-cgen:

.PHONY: maybe-dvi-cgen dvi-cgen
maybe-dvi-cgen:

.PHONY: maybe-pdf-cgen pdf-cgen
maybe-pdf-cgen:

.PHONY: maybe-html-cgen html-cgen
maybe-html-cgen:

.PHONY: maybe-TAGS-cgen TAGS-cgen
maybe-TAGS-cgen:

.PHONY: maybe-install-info-cgen install-info-cgen
maybe-install-info-cgen:

.PHONY: maybe-install-pdf-cgen install-pdf-cgen
maybe-install-pdf-cgen:

.PHONY: maybe-install-html-cgen install-html-cgen
maybe-install-html-cgen:

.PHONY: maybe-installcheck-cgen installcheck-cgen
maybe-installcheck-cgen:

.PHONY: maybe-mostlyclean-cgen mostlyclean-cgen
maybe-mostlyclean-cgen:

.PHONY: maybe-clean-cgen clean-cgen
maybe-clean-cgen:

.PHONY: maybe-distclean-cgen distclean-cgen
maybe-distclean-cgen:

.PHONY: maybe-maintainer-clean-cgen maintainer-clean-cgen
maybe-maintainer-clean-cgen:



.PHONY: configure-dejagnu maybe-configure-dejagnu
maybe-configure-dejagnu:





.PHONY: all-dejagnu maybe-all-dejagnu
maybe-all-dejagnu:




.PHONY: check-dejagnu maybe-check-dejagnu
maybe-check-dejagnu:

.PHONY: install-dejagnu maybe-install-dejagnu
maybe-install-dejagnu:

.PHONY: install-strip-dejagnu maybe-install-strip-dejagnu
maybe-install-strip-dejagnu:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-dejagnu info-dejagnu
maybe-info-dejagnu:

.PHONY: maybe-dvi-dejagnu dvi-dejagnu
maybe-dvi-dejagnu:

.PHONY: maybe-pdf-dejagnu pdf-dejagnu
maybe-pdf-dejagnu:

.PHONY: maybe-html-dejagnu html-dejagnu
maybe-html-dejagnu:

.PHONY: maybe-TAGS-dejagnu TAGS-dejagnu
maybe-TAGS-dejagnu:

.PHONY: maybe-install-info-dejagnu install-info-dejagnu
maybe-install-info-dejagnu:

.PHONY: maybe-install-pdf-dejagnu install-pdf-dejagnu
maybe-install-pdf-dejagnu:

.PHONY: maybe-install-html-dejagnu install-html-dejagnu
maybe-install-html-dejagnu:

.PHONY: maybe-installcheck-dejagnu installcheck-dejagnu
maybe-installcheck-dejagnu:

.PHONY: maybe-mostlyclean-dejagnu mostlyclean-dejagnu
maybe-mostlyclean-dejagnu:

.PHONY: maybe-clean-dejagnu clean-dejagnu
maybe-clean-dejagnu:

.PHONY: maybe-distclean-dejagnu distclean-dejagnu
maybe-distclean-dejagnu:

.PHONY: maybe-maintainer-clean-dejagnu maintainer-clean-dejagnu
maybe-maintainer-clean-dejagnu:



.PHONY: configure-etc maybe-configure-etc
maybe-configure-etc:





.PHONY: all-etc maybe-all-etc
maybe-all-etc:




.PHONY: check-etc maybe-check-etc
maybe-check-etc:

.PHONY: install-etc maybe-install-etc
maybe-install-etc:

.PHONY: install-strip-etc maybe-install-strip-etc
maybe-install-strip-etc:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-etc info-etc
maybe-info-etc:

.PHONY: maybe-dvi-etc dvi-etc
maybe-dvi-etc:

.PHONY: maybe-pdf-etc pdf-etc
maybe-pdf-etc:

.PHONY: maybe-html-etc html-etc
maybe-html-etc:

.PHONY: maybe-TAGS-etc TAGS-etc
maybe-TAGS-etc:

.PHONY: maybe-install-info-etc install-info-etc
maybe-install-info-etc:

.PHONY: maybe-install-pdf-etc install-pdf-etc
maybe-install-pdf-etc:

.PHONY: maybe-install-html-etc install-html-etc
maybe-install-html-etc:

.PHONY: maybe-installcheck-etc installcheck-etc
maybe-installcheck-etc:

.PHONY: maybe-mostlyclean-etc mostlyclean-etc
maybe-mostlyclean-etc:

.PHONY: maybe-clean-etc clean-etc
maybe-clean-etc:

.PHONY: maybe-distclean-etc distclean-etc
maybe-distclean-etc:

.PHONY: maybe-maintainer-clean-etc maintainer-clean-etc
maybe-maintainer-clean-etc:



.PHONY: configure-fastjar maybe-configure-fastjar
maybe-configure-fastjar:





.PHONY: all-fastjar maybe-all-fastjar
maybe-all-fastjar:




.PHONY: check-fastjar maybe-check-fastjar
maybe-check-fastjar:

.PHONY: install-fastjar maybe-install-fastjar
maybe-install-fastjar:

.PHONY: install-strip-fastjar maybe-install-strip-fastjar
maybe-install-strip-fastjar:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-fastjar info-fastjar
maybe-info-fastjar:

.PHONY: maybe-dvi-fastjar dvi-fastjar
maybe-dvi-fastjar:

.PHONY: maybe-pdf-fastjar pdf-fastjar
maybe-pdf-fastjar:

.PHONY: maybe-html-fastjar html-fastjar
maybe-html-fastjar:

.PHONY: maybe-TAGS-fastjar TAGS-fastjar
maybe-TAGS-fastjar:

.PHONY: maybe-install-info-fastjar install-info-fastjar
maybe-install-info-fastjar:

.PHONY: maybe-install-pdf-fastjar install-pdf-fastjar
maybe-install-pdf-fastjar:

.PHONY: maybe-install-html-fastjar install-html-fastjar
maybe-install-html-fastjar:

.PHONY: maybe-installcheck-fastjar installcheck-fastjar
maybe-installcheck-fastjar:

.PHONY: maybe-mostlyclean-fastjar mostlyclean-fastjar
maybe-mostlyclean-fastjar:

.PHONY: maybe-clean-fastjar clean-fastjar
maybe-clean-fastjar:

.PHONY: maybe-distclean-fastjar distclean-fastjar
maybe-distclean-fastjar:

.PHONY: maybe-maintainer-clean-fastjar maintainer-clean-fastjar
maybe-maintainer-clean-fastjar:



.PHONY: configure-fixincludes maybe-configure-fixincludes
maybe-configure-fixincludes:
maybe-configure-fixincludes: configure-fixincludes
configure-fixincludes: 
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	test ! -f $(HOST_SUBDIR)/fixincludes/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/fixincludes ; \
	$(HOST_EXPORTS)  \
	echo Configuring in $(HOST_SUBDIR)/fixincludes; \
	cd "$(HOST_SUBDIR)/fixincludes" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(HOST_SUBDIR)/fixincludes/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/fixincludes"; \
	libsrcdir="$$s/fixincludes"; \
	$(SHELL) $${libsrcdir}/configure \
	  $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
	  --target=${target_alias} $${srcdiroption}  \
	  || exit 1





.PHONY: all-fixincludes maybe-all-fixincludes
maybe-all-fixincludes:
TARGET-fixincludes=all
maybe-all-fixincludes: all-fixincludes
all-fixincludes: configure-fixincludes
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS)  \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)  \
		$(TARGET-fixincludes))




.PHONY: check-fixincludes maybe-check-fixincludes
maybe-check-fixincludes:
maybe-check-fixincludes: check-fixincludes

check-fixincludes:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(FLAGS_TO_PASS)  check)


.PHONY: install-fixincludes maybe-install-fixincludes
maybe-install-fixincludes:
maybe-install-fixincludes: install-fixincludes

install-fixincludes: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(FLAGS_TO_PASS)  install)


.PHONY: install-strip-fixincludes maybe-install-strip-fixincludes
maybe-install-strip-fixincludes:
maybe-install-strip-fixincludes: install-strip-fixincludes

install-strip-fixincludes: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(FLAGS_TO_PASS)  install-strip)


# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-fixincludes info-fixincludes
maybe-info-fixincludes:
maybe-info-fixincludes: info-fixincludes

info-fixincludes: \
    configure-fixincludes 
	@: $(MAKE); $(unstage)
	@[ -f ./fixincludes/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing info in fixincludes" ; \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          info) \
	  || exit 1


.PHONY: maybe-dvi-fixincludes dvi-fixincludes
maybe-dvi-fixincludes:
maybe-dvi-fixincludes: dvi-fixincludes

dvi-fixincludes: \
    configure-fixincludes 
	@: $(MAKE); $(unstage)
	@[ -f ./fixincludes/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing dvi in fixincludes" ; \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          dvi) \
	  || exit 1


.PHONY: maybe-pdf-fixincludes pdf-fixincludes
maybe-pdf-fixincludes:
maybe-pdf-fixincludes: pdf-fixincludes

pdf-fixincludes: \
    configure-fixincludes 
	@: $(MAKE); $(unstage)
	@[ -f ./fixincludes/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing pdf in fixincludes" ; \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          pdf) \
	  || exit 1


.PHONY: maybe-html-fixincludes html-fixincludes
maybe-html-fixincludes:
maybe-html-fixincludes: html-fixincludes

html-fixincludes: \
    configure-fixincludes 
	@: $(MAKE); $(unstage)
	@[ -f ./fixincludes/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing html in fixincludes" ; \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          html) \
	  || exit 1


.PHONY: maybe-TAGS-fixincludes TAGS-fixincludes
maybe-TAGS-fixincludes:
maybe-TAGS-fixincludes: TAGS-fixincludes

# fixincludes doesn't support TAGS.
TAGS-fixincludes:


.PHONY: maybe-install-info-fixincludes install-info-fixincludes
maybe-install-info-fixincludes:
maybe-install-info-fixincludes: install-info-fixincludes

install-info-fixincludes: \
    configure-fixincludes \
    info-fixincludes 
	@: $(MAKE); $(unstage)
	@[ -f ./fixincludes/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-info in fixincludes" ; \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-info) \
	  || exit 1


.PHONY: maybe-install-pdf-fixincludes install-pdf-fixincludes
maybe-install-pdf-fixincludes:
maybe-install-pdf-fixincludes: install-pdf-fixincludes

install-pdf-fixincludes: \
    configure-fixincludes \
    pdf-fixincludes 
	@: $(MAKE); $(unstage)
	@[ -f ./fixincludes/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-pdf in fixincludes" ; \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-pdf) \
	  || exit 1


.PHONY: maybe-install-html-fixincludes install-html-fixincludes
maybe-install-html-fixincludes:
maybe-install-html-fixincludes: install-html-fixincludes

install-html-fixincludes: \
    configure-fixincludes \
    html-fixincludes 
	@: $(MAKE); $(unstage)
	@[ -f ./fixincludes/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-html in fixincludes" ; \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-html) \
	  || exit 1


.PHONY: maybe-installcheck-fixincludes installcheck-fixincludes
maybe-installcheck-fixincludes:
maybe-installcheck-fixincludes: installcheck-fixincludes

installcheck-fixincludes: \
    configure-fixincludes 
	@: $(MAKE); $(unstage)
	@[ -f ./fixincludes/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing installcheck in fixincludes" ; \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          installcheck) \
	  || exit 1


.PHONY: maybe-mostlyclean-fixincludes mostlyclean-fixincludes
maybe-mostlyclean-fixincludes:
maybe-mostlyclean-fixincludes: mostlyclean-fixincludes

mostlyclean-fixincludes: 
	@: $(MAKE); $(unstage)
	@[ -f ./fixincludes/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing mostlyclean in fixincludes" ; \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          mostlyclean) \
	  || exit 1


.PHONY: maybe-clean-fixincludes clean-fixincludes
maybe-clean-fixincludes:
maybe-clean-fixincludes: clean-fixincludes

clean-fixincludes: 
	@: $(MAKE); $(unstage)
	@[ -f ./fixincludes/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing clean in fixincludes" ; \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          clean) \
	  || exit 1


.PHONY: maybe-distclean-fixincludes distclean-fixincludes
maybe-distclean-fixincludes:
maybe-distclean-fixincludes: distclean-fixincludes

distclean-fixincludes: 
	@: $(MAKE); $(unstage)
	@[ -f ./fixincludes/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing distclean in fixincludes" ; \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          distclean) \
	  || exit 1


.PHONY: maybe-maintainer-clean-fixincludes maintainer-clean-fixincludes
maybe-maintainer-clean-fixincludes:
maybe-maintainer-clean-fixincludes: maintainer-clean-fixincludes

maintainer-clean-fixincludes: 
	@: $(MAKE); $(unstage)
	@[ -f ./fixincludes/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing maintainer-clean in fixincludes" ; \
	(cd $(HOST_SUBDIR)/fixincludes && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          maintainer-clean) \
	  || exit 1




.PHONY: configure-flex maybe-configure-flex
maybe-configure-flex:





.PHONY: all-flex maybe-all-flex
maybe-all-flex:




.PHONY: check-flex maybe-check-flex
maybe-check-flex:

.PHONY: install-flex maybe-install-flex
maybe-install-flex:

.PHONY: install-strip-flex maybe-install-strip-flex
maybe-install-strip-flex:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-flex info-flex
maybe-info-flex:

.PHONY: maybe-dvi-flex dvi-flex
maybe-dvi-flex:

.PHONY: maybe-pdf-flex pdf-flex
maybe-pdf-flex:

.PHONY: maybe-html-flex html-flex
maybe-html-flex:

.PHONY: maybe-TAGS-flex TAGS-flex
maybe-TAGS-flex:

.PHONY: maybe-install-info-flex install-info-flex
maybe-install-info-flex:

.PHONY: maybe-install-pdf-flex install-pdf-flex
maybe-install-pdf-flex:

.PHONY: maybe-install-html-flex install-html-flex
maybe-install-html-flex:

.PHONY: maybe-installcheck-flex installcheck-flex
maybe-installcheck-flex:

.PHONY: maybe-mostlyclean-flex mostlyclean-flex
maybe-mostlyclean-flex:

.PHONY: maybe-clean-flex clean-flex
maybe-clean-flex:

.PHONY: maybe-distclean-flex distclean-flex
maybe-distclean-flex:

.PHONY: maybe-maintainer-clean-flex maintainer-clean-flex
maybe-maintainer-clean-flex:



.PHONY: configure-gas maybe-configure-gas
maybe-configure-gas:



.PHONY: configure-stage1-gas maybe-configure-stage1-gas
maybe-configure-stage1-gas:

.PHONY: configure-stage2-gas maybe-configure-stage2-gas
maybe-configure-stage2-gas:

.PHONY: configure-stage3-gas maybe-configure-stage3-gas
maybe-configure-stage3-gas:

.PHONY: configure-stage4-gas maybe-configure-stage4-gas
maybe-configure-stage4-gas:

.PHONY: configure-stageprofile-gas maybe-configure-stageprofile-gas
maybe-configure-stageprofile-gas:

.PHONY: configure-stagefeedback-gas maybe-configure-stagefeedback-gas
maybe-configure-stagefeedback-gas:





.PHONY: all-gas maybe-all-gas
maybe-all-gas:



.PHONY: all-stage1-gas maybe-all-stage1-gas
.PHONY: clean-stage1-gas maybe-clean-stage1-gas
maybe-all-stage1-gas:
maybe-clean-stage1-gas:


.PHONY: all-stage2-gas maybe-all-stage2-gas
.PHONY: clean-stage2-gas maybe-clean-stage2-gas
maybe-all-stage2-gas:
maybe-clean-stage2-gas:


.PHONY: all-stage3-gas maybe-all-stage3-gas
.PHONY: clean-stage3-gas maybe-clean-stage3-gas
maybe-all-stage3-gas:
maybe-clean-stage3-gas:


.PHONY: all-stage4-gas maybe-all-stage4-gas
.PHONY: clean-stage4-gas maybe-clean-stage4-gas
maybe-all-stage4-gas:
maybe-clean-stage4-gas:


.PHONY: all-stageprofile-gas maybe-all-stageprofile-gas
.PHONY: clean-stageprofile-gas maybe-clean-stageprofile-gas
maybe-all-stageprofile-gas:
maybe-clean-stageprofile-gas:


.PHONY: all-stagefeedback-gas maybe-all-stagefeedback-gas
.PHONY: clean-stagefeedback-gas maybe-clean-stagefeedback-gas
maybe-all-stagefeedback-gas:
maybe-clean-stagefeedback-gas:





.PHONY: check-gas maybe-check-gas
maybe-check-gas:

.PHONY: install-gas maybe-install-gas
maybe-install-gas:

.PHONY: install-strip-gas maybe-install-strip-gas
maybe-install-strip-gas:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-gas info-gas
maybe-info-gas:

.PHONY: maybe-dvi-gas dvi-gas
maybe-dvi-gas:

.PHONY: maybe-pdf-gas pdf-gas
maybe-pdf-gas:

.PHONY: maybe-html-gas html-gas
maybe-html-gas:

.PHONY: maybe-TAGS-gas TAGS-gas
maybe-TAGS-gas:

.PHONY: maybe-install-info-gas install-info-gas
maybe-install-info-gas:

.PHONY: maybe-install-pdf-gas install-pdf-gas
maybe-install-pdf-gas:

.PHONY: maybe-install-html-gas install-html-gas
maybe-install-html-gas:

.PHONY: maybe-installcheck-gas installcheck-gas
maybe-installcheck-gas:

.PHONY: maybe-mostlyclean-gas mostlyclean-gas
maybe-mostlyclean-gas:

.PHONY: maybe-clean-gas clean-gas
maybe-clean-gas:

.PHONY: maybe-distclean-gas distclean-gas
maybe-distclean-gas:

.PHONY: maybe-maintainer-clean-gas maintainer-clean-gas
maybe-maintainer-clean-gas:



.PHONY: configure-gcc maybe-configure-gcc
maybe-configure-gcc:
maybe-configure-gcc: configure-gcc
configure-gcc: 
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
	$(HOST_EXPORTS)  \
	echo Configuring in $(HOST_SUBDIR)/gcc; \
	cd "$(HOST_SUBDIR)/gcc" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(HOST_SUBDIR)/gcc/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/gcc"; \
	libsrcdir="$$s/gcc"; \
	$(SHELL) $${libsrcdir}/configure \
	  $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
	  --target=${target_alias} $${srcdiroption}  \
	  || exit 1



.PHONY: configure-stage1-gcc maybe-configure-stage1-gcc
maybe-configure-stage1-gcc:

.PHONY: configure-stage2-gcc maybe-configure-stage2-gcc
maybe-configure-stage2-gcc:

.PHONY: configure-stage3-gcc maybe-configure-stage3-gcc
maybe-configure-stage3-gcc:

.PHONY: configure-stage4-gcc maybe-configure-stage4-gcc
maybe-configure-stage4-gcc:

.PHONY: configure-stageprofile-gcc maybe-configure-stageprofile-gcc
maybe-configure-stageprofile-gcc:

.PHONY: configure-stagefeedback-gcc maybe-configure-stagefeedback-gcc
maybe-configure-stagefeedback-gcc:





.PHONY: all-gcc maybe-all-gcc
maybe-all-gcc:
TARGET-gcc=all
maybe-all-gcc: all-gcc
all-gcc: configure-gcc
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS)  \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS) \
		$(TARGET-gcc))



.PHONY: all-stage1-gcc maybe-all-stage1-gcc
.PHONY: clean-stage1-gcc maybe-clean-stage1-gcc
maybe-all-stage1-gcc:
maybe-clean-stage1-gcc:


.PHONY: all-stage2-gcc maybe-all-stage2-gcc
.PHONY: clean-stage2-gcc maybe-clean-stage2-gcc
maybe-all-stage2-gcc:
maybe-clean-stage2-gcc:


.PHONY: all-stage3-gcc maybe-all-stage3-gcc
.PHONY: clean-stage3-gcc maybe-clean-stage3-gcc
maybe-all-stage3-gcc:
maybe-clean-stage3-gcc:


.PHONY: all-stage4-gcc maybe-all-stage4-gcc
.PHONY: clean-stage4-gcc maybe-clean-stage4-gcc
maybe-all-stage4-gcc:
maybe-clean-stage4-gcc:


.PHONY: all-stageprofile-gcc maybe-all-stageprofile-gcc
.PHONY: clean-stageprofile-gcc maybe-clean-stageprofile-gcc
maybe-all-stageprofile-gcc:
maybe-clean-stageprofile-gcc:


.PHONY: all-stagefeedback-gcc maybe-all-stagefeedback-gcc
.PHONY: clean-stagefeedback-gcc maybe-clean-stagefeedback-gcc
maybe-all-stagefeedback-gcc:
maybe-clean-stagefeedback-gcc:





.PHONY: check-gcc maybe-check-gcc
maybe-check-gcc:
maybe-check-gcc: check-gcc

check-gcc:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) check)


.PHONY: install-gcc maybe-install-gcc
maybe-install-gcc:
maybe-install-gcc: install-gcc

install-gcc: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) install)


.PHONY: install-strip-gcc maybe-install-strip-gcc
maybe-install-strip-gcc:
maybe-install-strip-gcc: install-strip-gcc

install-strip-gcc: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) install-strip)


# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-gcc info-gcc
maybe-info-gcc:
maybe-info-gcc: info-gcc

info-gcc: \
    configure-gcc 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing info in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          info) \
	  || exit 1


.PHONY: maybe-dvi-gcc dvi-gcc
maybe-dvi-gcc:
maybe-dvi-gcc: dvi-gcc

dvi-gcc: \
    configure-gcc 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing dvi in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          dvi) \
	  || exit 1


.PHONY: maybe-pdf-gcc pdf-gcc
maybe-pdf-gcc:
maybe-pdf-gcc: pdf-gcc

pdf-gcc: \
    configure-gcc 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing pdf in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          pdf) \
	  || exit 1


.PHONY: maybe-html-gcc html-gcc
maybe-html-gcc:
maybe-html-gcc: html-gcc

html-gcc: \
    configure-gcc 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing html in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          html) \
	  || exit 1


.PHONY: maybe-TAGS-gcc TAGS-gcc
maybe-TAGS-gcc:
maybe-TAGS-gcc: TAGS-gcc

TAGS-gcc: \
    configure-gcc 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing TAGS in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          TAGS) \
	  || exit 1


.PHONY: maybe-install-info-gcc install-info-gcc
maybe-install-info-gcc:
maybe-install-info-gcc: install-info-gcc

install-info-gcc: \
    configure-gcc \
    info-gcc 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-info in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-info) \
	  || exit 1


.PHONY: maybe-install-pdf-gcc install-pdf-gcc
maybe-install-pdf-gcc:
maybe-install-pdf-gcc: install-pdf-gcc

install-pdf-gcc: \
    configure-gcc \
    pdf-gcc 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-pdf in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-pdf) \
	  || exit 1


.PHONY: maybe-install-html-gcc install-html-gcc
maybe-install-html-gcc:
maybe-install-html-gcc: install-html-gcc

install-html-gcc: \
    configure-gcc \
    html-gcc 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-html in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-html) \
	  || exit 1


.PHONY: maybe-installcheck-gcc installcheck-gcc
maybe-installcheck-gcc:
maybe-installcheck-gcc: installcheck-gcc

installcheck-gcc: \
    configure-gcc 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing installcheck in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          installcheck) \
	  || exit 1


.PHONY: maybe-mostlyclean-gcc mostlyclean-gcc
maybe-mostlyclean-gcc:
maybe-mostlyclean-gcc: mostlyclean-gcc

mostlyclean-gcc: 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing mostlyclean in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          mostlyclean) \
	  || exit 1


.PHONY: maybe-clean-gcc clean-gcc
maybe-clean-gcc:
maybe-clean-gcc: clean-gcc

clean-gcc: 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing clean in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          clean) \
	  || exit 1


.PHONY: maybe-distclean-gcc distclean-gcc
maybe-distclean-gcc:
maybe-distclean-gcc: distclean-gcc

distclean-gcc: 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing distclean in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          distclean) \
	  || exit 1


.PHONY: maybe-maintainer-clean-gcc maintainer-clean-gcc
maybe-maintainer-clean-gcc:
maybe-maintainer-clean-gcc: maintainer-clean-gcc

maintainer-clean-gcc: 
	@[ -f ./gcc/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing maintainer-clean in gcc" ; \
	(cd $(HOST_SUBDIR)/gcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          maintainer-clean) \
	  || exit 1




.PHONY: configure-gmp maybe-configure-gmp
maybe-configure-gmp:



.PHONY: configure-stage1-gmp maybe-configure-stage1-gmp
maybe-configure-stage1-gmp:

.PHONY: configure-stage2-gmp maybe-configure-stage2-gmp
maybe-configure-stage2-gmp:

.PHONY: configure-stage3-gmp maybe-configure-stage3-gmp
maybe-configure-stage3-gmp:

.PHONY: configure-stage4-gmp maybe-configure-stage4-gmp
maybe-configure-stage4-gmp:

.PHONY: configure-stageprofile-gmp maybe-configure-stageprofile-gmp
maybe-configure-stageprofile-gmp:

.PHONY: configure-stagefeedback-gmp maybe-configure-stagefeedback-gmp
maybe-configure-stagefeedback-gmp:





.PHONY: all-gmp maybe-all-gmp
maybe-all-gmp:



.PHONY: all-stage1-gmp maybe-all-stage1-gmp
.PHONY: clean-stage1-gmp maybe-clean-stage1-gmp
maybe-all-stage1-gmp:
maybe-clean-stage1-gmp:


.PHONY: all-stage2-gmp maybe-all-stage2-gmp
.PHONY: clean-stage2-gmp maybe-clean-stage2-gmp
maybe-all-stage2-gmp:
maybe-clean-stage2-gmp:


.PHONY: all-stage3-gmp maybe-all-stage3-gmp
.PHONY: clean-stage3-gmp maybe-clean-stage3-gmp
maybe-all-stage3-gmp:
maybe-clean-stage3-gmp:


.PHONY: all-stage4-gmp maybe-all-stage4-gmp
.PHONY: clean-stage4-gmp maybe-clean-stage4-gmp
maybe-all-stage4-gmp:
maybe-clean-stage4-gmp:


.PHONY: all-stageprofile-gmp maybe-all-stageprofile-gmp
.PHONY: clean-stageprofile-gmp maybe-clean-stageprofile-gmp
maybe-all-stageprofile-gmp:
maybe-clean-stageprofile-gmp:


.PHONY: all-stagefeedback-gmp maybe-all-stagefeedback-gmp
.PHONY: clean-stagefeedback-gmp maybe-clean-stagefeedback-gmp
maybe-all-stagefeedback-gmp:
maybe-clean-stagefeedback-gmp:





.PHONY: check-gmp maybe-check-gmp
maybe-check-gmp:

.PHONY: install-gmp maybe-install-gmp
maybe-install-gmp:

.PHONY: install-strip-gmp maybe-install-strip-gmp
maybe-install-strip-gmp:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-gmp info-gmp
maybe-info-gmp:

.PHONY: maybe-dvi-gmp dvi-gmp
maybe-dvi-gmp:

.PHONY: maybe-pdf-gmp pdf-gmp
maybe-pdf-gmp:

.PHONY: maybe-html-gmp html-gmp
maybe-html-gmp:

.PHONY: maybe-TAGS-gmp TAGS-gmp
maybe-TAGS-gmp:

.PHONY: maybe-install-info-gmp install-info-gmp
maybe-install-info-gmp:

.PHONY: maybe-install-pdf-gmp install-pdf-gmp
maybe-install-pdf-gmp:

.PHONY: maybe-install-html-gmp install-html-gmp
maybe-install-html-gmp:

.PHONY: maybe-installcheck-gmp installcheck-gmp
maybe-installcheck-gmp:

.PHONY: maybe-mostlyclean-gmp mostlyclean-gmp
maybe-mostlyclean-gmp:

.PHONY: maybe-clean-gmp clean-gmp
maybe-clean-gmp:

.PHONY: maybe-distclean-gmp distclean-gmp
maybe-distclean-gmp:

.PHONY: maybe-maintainer-clean-gmp maintainer-clean-gmp
maybe-maintainer-clean-gmp:



.PHONY: configure-mpfr maybe-configure-mpfr
maybe-configure-mpfr:



.PHONY: configure-stage1-mpfr maybe-configure-stage1-mpfr
maybe-configure-stage1-mpfr:

.PHONY: configure-stage2-mpfr maybe-configure-stage2-mpfr
maybe-configure-stage2-mpfr:

.PHONY: configure-stage3-mpfr maybe-configure-stage3-mpfr
maybe-configure-stage3-mpfr:

.PHONY: configure-stage4-mpfr maybe-configure-stage4-mpfr
maybe-configure-stage4-mpfr:

.PHONY: configure-stageprofile-mpfr maybe-configure-stageprofile-mpfr
maybe-configure-stageprofile-mpfr:

.PHONY: configure-stagefeedback-mpfr maybe-configure-stagefeedback-mpfr
maybe-configure-stagefeedback-mpfr:





.PHONY: all-mpfr maybe-all-mpfr
maybe-all-mpfr:



.PHONY: all-stage1-mpfr maybe-all-stage1-mpfr
.PHONY: clean-stage1-mpfr maybe-clean-stage1-mpfr
maybe-all-stage1-mpfr:
maybe-clean-stage1-mpfr:


.PHONY: all-stage2-mpfr maybe-all-stage2-mpfr
.PHONY: clean-stage2-mpfr maybe-clean-stage2-mpfr
maybe-all-stage2-mpfr:
maybe-clean-stage2-mpfr:


.PHONY: all-stage3-mpfr maybe-all-stage3-mpfr
.PHONY: clean-stage3-mpfr maybe-clean-stage3-mpfr
maybe-all-stage3-mpfr:
maybe-clean-stage3-mpfr:


.PHONY: all-stage4-mpfr maybe-all-stage4-mpfr
.PHONY: clean-stage4-mpfr maybe-clean-stage4-mpfr
maybe-all-stage4-mpfr:
maybe-clean-stage4-mpfr:


.PHONY: all-stageprofile-mpfr maybe-all-stageprofile-mpfr
.PHONY: clean-stageprofile-mpfr maybe-clean-stageprofile-mpfr
maybe-all-stageprofile-mpfr:
maybe-clean-stageprofile-mpfr:


.PHONY: all-stagefeedback-mpfr maybe-all-stagefeedback-mpfr
.PHONY: clean-stagefeedback-mpfr maybe-clean-stagefeedback-mpfr
maybe-all-stagefeedback-mpfr:
maybe-clean-stagefeedback-mpfr:





.PHONY: check-mpfr maybe-check-mpfr
maybe-check-mpfr:

.PHONY: install-mpfr maybe-install-mpfr
maybe-install-mpfr:

.PHONY: install-strip-mpfr maybe-install-strip-mpfr
maybe-install-strip-mpfr:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-mpfr info-mpfr
maybe-info-mpfr:

.PHONY: maybe-dvi-mpfr dvi-mpfr
maybe-dvi-mpfr:

.PHONY: maybe-pdf-mpfr pdf-mpfr
maybe-pdf-mpfr:

.PHONY: maybe-html-mpfr html-mpfr
maybe-html-mpfr:

.PHONY: maybe-TAGS-mpfr TAGS-mpfr
maybe-TAGS-mpfr:

.PHONY: maybe-install-info-mpfr install-info-mpfr
maybe-install-info-mpfr:

.PHONY: maybe-install-pdf-mpfr install-pdf-mpfr
maybe-install-pdf-mpfr:

.PHONY: maybe-install-html-mpfr install-html-mpfr
maybe-install-html-mpfr:

.PHONY: maybe-installcheck-mpfr installcheck-mpfr
maybe-installcheck-mpfr:

.PHONY: maybe-mostlyclean-mpfr mostlyclean-mpfr
maybe-mostlyclean-mpfr:

.PHONY: maybe-clean-mpfr clean-mpfr
maybe-clean-mpfr:

.PHONY: maybe-distclean-mpfr distclean-mpfr
maybe-distclean-mpfr:

.PHONY: maybe-maintainer-clean-mpfr maintainer-clean-mpfr
maybe-maintainer-clean-mpfr:



.PHONY: configure-mpc maybe-configure-mpc
maybe-configure-mpc:



.PHONY: configure-stage1-mpc maybe-configure-stage1-mpc
maybe-configure-stage1-mpc:

.PHONY: configure-stage2-mpc maybe-configure-stage2-mpc
maybe-configure-stage2-mpc:

.PHONY: configure-stage3-mpc maybe-configure-stage3-mpc
maybe-configure-stage3-mpc:

.PHONY: configure-stage4-mpc maybe-configure-stage4-mpc
maybe-configure-stage4-mpc:

.PHONY: configure-stageprofile-mpc maybe-configure-stageprofile-mpc
maybe-configure-stageprofile-mpc:

.PHONY: configure-stagefeedback-mpc maybe-configure-stagefeedback-mpc
maybe-configure-stagefeedback-mpc:





.PHONY: all-mpc maybe-all-mpc
maybe-all-mpc:



.PHONY: all-stage1-mpc maybe-all-stage1-mpc
.PHONY: clean-stage1-mpc maybe-clean-stage1-mpc
maybe-all-stage1-mpc:
maybe-clean-stage1-mpc:


.PHONY: all-stage2-mpc maybe-all-stage2-mpc
.PHONY: clean-stage2-mpc maybe-clean-stage2-mpc
maybe-all-stage2-mpc:
maybe-clean-stage2-mpc:


.PHONY: all-stage3-mpc maybe-all-stage3-mpc
.PHONY: clean-stage3-mpc maybe-clean-stage3-mpc
maybe-all-stage3-mpc:
maybe-clean-stage3-mpc:


.PHONY: all-stage4-mpc maybe-all-stage4-mpc
.PHONY: clean-stage4-mpc maybe-clean-stage4-mpc
maybe-all-stage4-mpc:
maybe-clean-stage4-mpc:


.PHONY: all-stageprofile-mpc maybe-all-stageprofile-mpc
.PHONY: clean-stageprofile-mpc maybe-clean-stageprofile-mpc
maybe-all-stageprofile-mpc:
maybe-clean-stageprofile-mpc:


.PHONY: all-stagefeedback-mpc maybe-all-stagefeedback-mpc
.PHONY: clean-stagefeedback-mpc maybe-clean-stagefeedback-mpc
maybe-all-stagefeedback-mpc:
maybe-clean-stagefeedback-mpc:





.PHONY: check-mpc maybe-check-mpc
maybe-check-mpc:

.PHONY: install-mpc maybe-install-mpc
maybe-install-mpc:

.PHONY: install-strip-mpc maybe-install-strip-mpc
maybe-install-strip-mpc:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-mpc info-mpc
maybe-info-mpc:

.PHONY: maybe-dvi-mpc dvi-mpc
maybe-dvi-mpc:

.PHONY: maybe-pdf-mpc pdf-mpc
maybe-pdf-mpc:

.PHONY: maybe-html-mpc html-mpc
maybe-html-mpc:

.PHONY: maybe-TAGS-mpc TAGS-mpc
maybe-TAGS-mpc:

.PHONY: maybe-install-info-mpc install-info-mpc
maybe-install-info-mpc:

.PHONY: maybe-install-pdf-mpc install-pdf-mpc
maybe-install-pdf-mpc:

.PHONY: maybe-install-html-mpc install-html-mpc
maybe-install-html-mpc:

.PHONY: maybe-installcheck-mpc installcheck-mpc
maybe-installcheck-mpc:

.PHONY: maybe-mostlyclean-mpc mostlyclean-mpc
maybe-mostlyclean-mpc:

.PHONY: maybe-clean-mpc clean-mpc
maybe-clean-mpc:

.PHONY: maybe-distclean-mpc distclean-mpc
maybe-distclean-mpc:

.PHONY: maybe-maintainer-clean-mpc maintainer-clean-mpc
maybe-maintainer-clean-mpc:



.PHONY: configure-ppl maybe-configure-ppl
maybe-configure-ppl:



.PHONY: configure-stage1-ppl maybe-configure-stage1-ppl
maybe-configure-stage1-ppl:

.PHONY: configure-stage2-ppl maybe-configure-stage2-ppl
maybe-configure-stage2-ppl:

.PHONY: configure-stage3-ppl maybe-configure-stage3-ppl
maybe-configure-stage3-ppl:

.PHONY: configure-stage4-ppl maybe-configure-stage4-ppl
maybe-configure-stage4-ppl:

.PHONY: configure-stageprofile-ppl maybe-configure-stageprofile-ppl
maybe-configure-stageprofile-ppl:

.PHONY: configure-stagefeedback-ppl maybe-configure-stagefeedback-ppl
maybe-configure-stagefeedback-ppl:





.PHONY: all-ppl maybe-all-ppl
maybe-all-ppl:



.PHONY: all-stage1-ppl maybe-all-stage1-ppl
.PHONY: clean-stage1-ppl maybe-clean-stage1-ppl
maybe-all-stage1-ppl:
maybe-clean-stage1-ppl:


.PHONY: all-stage2-ppl maybe-all-stage2-ppl
.PHONY: clean-stage2-ppl maybe-clean-stage2-ppl
maybe-all-stage2-ppl:
maybe-clean-stage2-ppl:


.PHONY: all-stage3-ppl maybe-all-stage3-ppl
.PHONY: clean-stage3-ppl maybe-clean-stage3-ppl
maybe-all-stage3-ppl:
maybe-clean-stage3-ppl:


.PHONY: all-stage4-ppl maybe-all-stage4-ppl
.PHONY: clean-stage4-ppl maybe-clean-stage4-ppl
maybe-all-stage4-ppl:
maybe-clean-stage4-ppl:


.PHONY: all-stageprofile-ppl maybe-all-stageprofile-ppl
.PHONY: clean-stageprofile-ppl maybe-clean-stageprofile-ppl
maybe-all-stageprofile-ppl:
maybe-clean-stageprofile-ppl:


.PHONY: all-stagefeedback-ppl maybe-all-stagefeedback-ppl
.PHONY: clean-stagefeedback-ppl maybe-clean-stagefeedback-ppl
maybe-all-stagefeedback-ppl:
maybe-clean-stagefeedback-ppl:





.PHONY: check-ppl maybe-check-ppl
maybe-check-ppl:

.PHONY: install-ppl maybe-install-ppl
maybe-install-ppl:

.PHONY: install-strip-ppl maybe-install-strip-ppl
maybe-install-strip-ppl:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-ppl info-ppl
maybe-info-ppl:

.PHONY: maybe-dvi-ppl dvi-ppl
maybe-dvi-ppl:

.PHONY: maybe-pdf-ppl pdf-ppl
maybe-pdf-ppl:

.PHONY: maybe-html-ppl html-ppl
maybe-html-ppl:

.PHONY: maybe-TAGS-ppl TAGS-ppl
maybe-TAGS-ppl:

.PHONY: maybe-install-info-ppl install-info-ppl
maybe-install-info-ppl:

.PHONY: maybe-install-pdf-ppl install-pdf-ppl
maybe-install-pdf-ppl:

.PHONY: maybe-install-html-ppl install-html-ppl
maybe-install-html-ppl:

.PHONY: maybe-installcheck-ppl installcheck-ppl
maybe-installcheck-ppl:

.PHONY: maybe-mostlyclean-ppl mostlyclean-ppl
maybe-mostlyclean-ppl:

.PHONY: maybe-clean-ppl clean-ppl
maybe-clean-ppl:

.PHONY: maybe-distclean-ppl distclean-ppl
maybe-distclean-ppl:

.PHONY: maybe-maintainer-clean-ppl maintainer-clean-ppl
maybe-maintainer-clean-ppl:



.PHONY: configure-cloog maybe-configure-cloog
maybe-configure-cloog:



.PHONY: configure-stage1-cloog maybe-configure-stage1-cloog
maybe-configure-stage1-cloog:

.PHONY: configure-stage2-cloog maybe-configure-stage2-cloog
maybe-configure-stage2-cloog:

.PHONY: configure-stage3-cloog maybe-configure-stage3-cloog
maybe-configure-stage3-cloog:

.PHONY: configure-stage4-cloog maybe-configure-stage4-cloog
maybe-configure-stage4-cloog:

.PHONY: configure-stageprofile-cloog maybe-configure-stageprofile-cloog
maybe-configure-stageprofile-cloog:

.PHONY: configure-stagefeedback-cloog maybe-configure-stagefeedback-cloog
maybe-configure-stagefeedback-cloog:





.PHONY: all-cloog maybe-all-cloog
maybe-all-cloog:



.PHONY: all-stage1-cloog maybe-all-stage1-cloog
.PHONY: clean-stage1-cloog maybe-clean-stage1-cloog
maybe-all-stage1-cloog:
maybe-clean-stage1-cloog:


.PHONY: all-stage2-cloog maybe-all-stage2-cloog
.PHONY: clean-stage2-cloog maybe-clean-stage2-cloog
maybe-all-stage2-cloog:
maybe-clean-stage2-cloog:


.PHONY: all-stage3-cloog maybe-all-stage3-cloog
.PHONY: clean-stage3-cloog maybe-clean-stage3-cloog
maybe-all-stage3-cloog:
maybe-clean-stage3-cloog:


.PHONY: all-stage4-cloog maybe-all-stage4-cloog
.PHONY: clean-stage4-cloog maybe-clean-stage4-cloog
maybe-all-stage4-cloog:
maybe-clean-stage4-cloog:


.PHONY: all-stageprofile-cloog maybe-all-stageprofile-cloog
.PHONY: clean-stageprofile-cloog maybe-clean-stageprofile-cloog
maybe-all-stageprofile-cloog:
maybe-clean-stageprofile-cloog:


.PHONY: all-stagefeedback-cloog maybe-all-stagefeedback-cloog
.PHONY: clean-stagefeedback-cloog maybe-clean-stagefeedback-cloog
maybe-all-stagefeedback-cloog:
maybe-clean-stagefeedback-cloog:





.PHONY: check-cloog maybe-check-cloog
maybe-check-cloog:

.PHONY: install-cloog maybe-install-cloog
maybe-install-cloog:

.PHONY: install-strip-cloog maybe-install-strip-cloog
maybe-install-strip-cloog:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-cloog info-cloog
maybe-info-cloog:

.PHONY: maybe-dvi-cloog dvi-cloog
maybe-dvi-cloog:

.PHONY: maybe-pdf-cloog pdf-cloog
maybe-pdf-cloog:

.PHONY: maybe-html-cloog html-cloog
maybe-html-cloog:

.PHONY: maybe-TAGS-cloog TAGS-cloog
maybe-TAGS-cloog:

.PHONY: maybe-install-info-cloog install-info-cloog
maybe-install-info-cloog:

.PHONY: maybe-install-pdf-cloog install-pdf-cloog
maybe-install-pdf-cloog:

.PHONY: maybe-install-html-cloog install-html-cloog
maybe-install-html-cloog:

.PHONY: maybe-installcheck-cloog installcheck-cloog
maybe-installcheck-cloog:

.PHONY: maybe-mostlyclean-cloog mostlyclean-cloog
maybe-mostlyclean-cloog:

.PHONY: maybe-clean-cloog clean-cloog
maybe-clean-cloog:

.PHONY: maybe-distclean-cloog distclean-cloog
maybe-distclean-cloog:

.PHONY: maybe-maintainer-clean-cloog maintainer-clean-cloog
maybe-maintainer-clean-cloog:



.PHONY: configure-libelf maybe-configure-libelf
maybe-configure-libelf:



.PHONY: configure-stage1-libelf maybe-configure-stage1-libelf
maybe-configure-stage1-libelf:

.PHONY: configure-stage2-libelf maybe-configure-stage2-libelf
maybe-configure-stage2-libelf:

.PHONY: configure-stage3-libelf maybe-configure-stage3-libelf
maybe-configure-stage3-libelf:

.PHONY: configure-stage4-libelf maybe-configure-stage4-libelf
maybe-configure-stage4-libelf:

.PHONY: configure-stageprofile-libelf maybe-configure-stageprofile-libelf
maybe-configure-stageprofile-libelf:

.PHONY: configure-stagefeedback-libelf maybe-configure-stagefeedback-libelf
maybe-configure-stagefeedback-libelf:





.PHONY: all-libelf maybe-all-libelf
maybe-all-libelf:



.PHONY: all-stage1-libelf maybe-all-stage1-libelf
.PHONY: clean-stage1-libelf maybe-clean-stage1-libelf
maybe-all-stage1-libelf:
maybe-clean-stage1-libelf:


.PHONY: all-stage2-libelf maybe-all-stage2-libelf
.PHONY: clean-stage2-libelf maybe-clean-stage2-libelf
maybe-all-stage2-libelf:
maybe-clean-stage2-libelf:


.PHONY: all-stage3-libelf maybe-all-stage3-libelf
.PHONY: clean-stage3-libelf maybe-clean-stage3-libelf
maybe-all-stage3-libelf:
maybe-clean-stage3-libelf:


.PHONY: all-stage4-libelf maybe-all-stage4-libelf
.PHONY: clean-stage4-libelf maybe-clean-stage4-libelf
maybe-all-stage4-libelf:
maybe-clean-stage4-libelf:


.PHONY: all-stageprofile-libelf maybe-all-stageprofile-libelf
.PHONY: clean-stageprofile-libelf maybe-clean-stageprofile-libelf
maybe-all-stageprofile-libelf:
maybe-clean-stageprofile-libelf:


.PHONY: all-stagefeedback-libelf maybe-all-stagefeedback-libelf
.PHONY: clean-stagefeedback-libelf maybe-clean-stagefeedback-libelf
maybe-all-stagefeedback-libelf:
maybe-clean-stagefeedback-libelf:





.PHONY: check-libelf maybe-check-libelf
maybe-check-libelf:

.PHONY: install-libelf maybe-install-libelf
maybe-install-libelf:

.PHONY: install-strip-libelf maybe-install-strip-libelf
maybe-install-strip-libelf:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-libelf info-libelf
maybe-info-libelf:

.PHONY: maybe-dvi-libelf dvi-libelf
maybe-dvi-libelf:

.PHONY: maybe-pdf-libelf pdf-libelf
maybe-pdf-libelf:

.PHONY: maybe-html-libelf html-libelf
maybe-html-libelf:

.PHONY: maybe-TAGS-libelf TAGS-libelf
maybe-TAGS-libelf:

.PHONY: maybe-install-info-libelf install-info-libelf
maybe-install-info-libelf:

.PHONY: maybe-install-pdf-libelf install-pdf-libelf
maybe-install-pdf-libelf:

.PHONY: maybe-install-html-libelf install-html-libelf
maybe-install-html-libelf:

.PHONY: maybe-installcheck-libelf installcheck-libelf
maybe-installcheck-libelf:

.PHONY: maybe-mostlyclean-libelf mostlyclean-libelf
maybe-mostlyclean-libelf:

.PHONY: maybe-clean-libelf clean-libelf
maybe-clean-libelf:

.PHONY: maybe-distclean-libelf distclean-libelf
maybe-distclean-libelf:

.PHONY: maybe-maintainer-clean-libelf maintainer-clean-libelf
maybe-maintainer-clean-libelf:



.PHONY: configure-gold maybe-configure-gold
maybe-configure-gold:



.PHONY: configure-stage1-gold maybe-configure-stage1-gold
maybe-configure-stage1-gold:

.PHONY: configure-stage2-gold maybe-configure-stage2-gold
maybe-configure-stage2-gold:

.PHONY: configure-stage3-gold maybe-configure-stage3-gold
maybe-configure-stage3-gold:

.PHONY: configure-stage4-gold maybe-configure-stage4-gold
maybe-configure-stage4-gold:

.PHONY: configure-stageprofile-gold maybe-configure-stageprofile-gold
maybe-configure-stageprofile-gold:

.PHONY: configure-stagefeedback-gold maybe-configure-stagefeedback-gold
maybe-configure-stagefeedback-gold:





.PHONY: all-gold maybe-all-gold
maybe-all-gold:



.PHONY: all-stage1-gold maybe-all-stage1-gold
.PHONY: clean-stage1-gold maybe-clean-stage1-gold
maybe-all-stage1-gold:
maybe-clean-stage1-gold:


.PHONY: all-stage2-gold maybe-all-stage2-gold
.PHONY: clean-stage2-gold maybe-clean-stage2-gold
maybe-all-stage2-gold:
maybe-clean-stage2-gold:


.PHONY: all-stage3-gold maybe-all-stage3-gold
.PHONY: clean-stage3-gold maybe-clean-stage3-gold
maybe-all-stage3-gold:
maybe-clean-stage3-gold:


.PHONY: all-stage4-gold maybe-all-stage4-gold
.PHONY: clean-stage4-gold maybe-clean-stage4-gold
maybe-all-stage4-gold:
maybe-clean-stage4-gold:


.PHONY: all-stageprofile-gold maybe-all-stageprofile-gold
.PHONY: clean-stageprofile-gold maybe-clean-stageprofile-gold
maybe-all-stageprofile-gold:
maybe-clean-stageprofile-gold:


.PHONY: all-stagefeedback-gold maybe-all-stagefeedback-gold
.PHONY: clean-stagefeedback-gold maybe-clean-stagefeedback-gold
maybe-all-stagefeedback-gold:
maybe-clean-stagefeedback-gold:





.PHONY: check-gold maybe-check-gold
maybe-check-gold:

.PHONY: install-gold maybe-install-gold
maybe-install-gold:

.PHONY: install-strip-gold maybe-install-strip-gold
maybe-install-strip-gold:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-gold info-gold
maybe-info-gold:

.PHONY: maybe-dvi-gold dvi-gold
maybe-dvi-gold:

.PHONY: maybe-pdf-gold pdf-gold
maybe-pdf-gold:

.PHONY: maybe-html-gold html-gold
maybe-html-gold:

.PHONY: maybe-TAGS-gold TAGS-gold
maybe-TAGS-gold:

.PHONY: maybe-install-info-gold install-info-gold
maybe-install-info-gold:

.PHONY: maybe-install-pdf-gold install-pdf-gold
maybe-install-pdf-gold:

.PHONY: maybe-install-html-gold install-html-gold
maybe-install-html-gold:

.PHONY: maybe-installcheck-gold installcheck-gold
maybe-installcheck-gold:

.PHONY: maybe-mostlyclean-gold mostlyclean-gold
maybe-mostlyclean-gold:

.PHONY: maybe-clean-gold clean-gold
maybe-clean-gold:

.PHONY: maybe-distclean-gold distclean-gold
maybe-distclean-gold:

.PHONY: maybe-maintainer-clean-gold maintainer-clean-gold
maybe-maintainer-clean-gold:



.PHONY: configure-gprof maybe-configure-gprof
maybe-configure-gprof:





.PHONY: all-gprof maybe-all-gprof
maybe-all-gprof:




.PHONY: check-gprof maybe-check-gprof
maybe-check-gprof:

.PHONY: install-gprof maybe-install-gprof
maybe-install-gprof:

.PHONY: install-strip-gprof maybe-install-strip-gprof
maybe-install-strip-gprof:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-gprof info-gprof
maybe-info-gprof:

.PHONY: maybe-dvi-gprof dvi-gprof
maybe-dvi-gprof:

.PHONY: maybe-pdf-gprof pdf-gprof
maybe-pdf-gprof:

.PHONY: maybe-html-gprof html-gprof
maybe-html-gprof:

.PHONY: maybe-TAGS-gprof TAGS-gprof
maybe-TAGS-gprof:

.PHONY: maybe-install-info-gprof install-info-gprof
maybe-install-info-gprof:

.PHONY: maybe-install-pdf-gprof install-pdf-gprof
maybe-install-pdf-gprof:

.PHONY: maybe-install-html-gprof install-html-gprof
maybe-install-html-gprof:

.PHONY: maybe-installcheck-gprof installcheck-gprof
maybe-installcheck-gprof:

.PHONY: maybe-mostlyclean-gprof mostlyclean-gprof
maybe-mostlyclean-gprof:

.PHONY: maybe-clean-gprof clean-gprof
maybe-clean-gprof:

.PHONY: maybe-distclean-gprof distclean-gprof
maybe-distclean-gprof:

.PHONY: maybe-maintainer-clean-gprof maintainer-clean-gprof
maybe-maintainer-clean-gprof:



.PHONY: configure-intl maybe-configure-intl
maybe-configure-intl:
maybe-configure-intl: configure-intl
configure-intl: 
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
	$(HOST_EXPORTS)  \
	echo Configuring in $(HOST_SUBDIR)/intl; \
	cd "$(HOST_SUBDIR)/intl" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(HOST_SUBDIR)/intl/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/intl"; \
	libsrcdir="$$s/intl"; \
	$(SHELL) $${libsrcdir}/configure \
	  $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
	  --target=${target_alias} $${srcdiroption}  \
	  || exit 1



.PHONY: configure-stage1-intl maybe-configure-stage1-intl
maybe-configure-stage1-intl:

.PHONY: configure-stage2-intl maybe-configure-stage2-intl
maybe-configure-stage2-intl:

.PHONY: configure-stage3-intl maybe-configure-stage3-intl
maybe-configure-stage3-intl:

.PHONY: configure-stage4-intl maybe-configure-stage4-intl
maybe-configure-stage4-intl:

.PHONY: configure-stageprofile-intl maybe-configure-stageprofile-intl
maybe-configure-stageprofile-intl:

.PHONY: configure-stagefeedback-intl maybe-configure-stagefeedback-intl
maybe-configure-stagefeedback-intl:





.PHONY: all-intl maybe-all-intl
maybe-all-intl:
TARGET-intl=all
maybe-all-intl: all-intl
all-intl: configure-intl
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS)  \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)  \
		$(TARGET-intl))



.PHONY: all-stage1-intl maybe-all-stage1-intl
.PHONY: clean-stage1-intl maybe-clean-stage1-intl
maybe-all-stage1-intl:
maybe-clean-stage1-intl:


.PHONY: all-stage2-intl maybe-all-stage2-intl
.PHONY: clean-stage2-intl maybe-clean-stage2-intl
maybe-all-stage2-intl:
maybe-clean-stage2-intl:


.PHONY: all-stage3-intl maybe-all-stage3-intl
.PHONY: clean-stage3-intl maybe-clean-stage3-intl
maybe-all-stage3-intl:
maybe-clean-stage3-intl:


.PHONY: all-stage4-intl maybe-all-stage4-intl
.PHONY: clean-stage4-intl maybe-clean-stage4-intl
maybe-all-stage4-intl:
maybe-clean-stage4-intl:


.PHONY: all-stageprofile-intl maybe-all-stageprofile-intl
.PHONY: clean-stageprofile-intl maybe-clean-stageprofile-intl
maybe-all-stageprofile-intl:
maybe-clean-stageprofile-intl:


.PHONY: all-stagefeedback-intl maybe-all-stagefeedback-intl
.PHONY: clean-stagefeedback-intl maybe-clean-stagefeedback-intl
maybe-all-stagefeedback-intl:
maybe-clean-stagefeedback-intl:





.PHONY: check-intl maybe-check-intl
maybe-check-intl:
maybe-check-intl: check-intl

check-intl:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(FLAGS_TO_PASS)  check)


.PHONY: install-intl maybe-install-intl
maybe-install-intl:
maybe-install-intl: install-intl

install-intl: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(FLAGS_TO_PASS)  install)


.PHONY: install-strip-intl maybe-install-strip-intl
maybe-install-strip-intl:
maybe-install-strip-intl: install-strip-intl

install-strip-intl: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(FLAGS_TO_PASS)  install-strip)


# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-intl info-intl
maybe-info-intl:
maybe-info-intl: info-intl

info-intl: \
    configure-intl 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing info in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          info) \
	  || exit 1


.PHONY: maybe-dvi-intl dvi-intl
maybe-dvi-intl:
maybe-dvi-intl: dvi-intl

dvi-intl: \
    configure-intl 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing dvi in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          dvi) \
	  || exit 1


.PHONY: maybe-pdf-intl pdf-intl
maybe-pdf-intl:
maybe-pdf-intl: pdf-intl

pdf-intl: \
    configure-intl 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing pdf in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          pdf) \
	  || exit 1


.PHONY: maybe-html-intl html-intl
maybe-html-intl:
maybe-html-intl: html-intl

html-intl: \
    configure-intl 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing html in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          html) \
	  || exit 1


.PHONY: maybe-TAGS-intl TAGS-intl
maybe-TAGS-intl:
maybe-TAGS-intl: TAGS-intl

TAGS-intl: \
    configure-intl 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing TAGS in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          TAGS) \
	  || exit 1


.PHONY: maybe-install-info-intl install-info-intl
maybe-install-info-intl:
maybe-install-info-intl: install-info-intl

install-info-intl: \
    configure-intl \
    info-intl 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-info in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-info) \
	  || exit 1


.PHONY: maybe-install-pdf-intl install-pdf-intl
maybe-install-pdf-intl:
maybe-install-pdf-intl: install-pdf-intl

install-pdf-intl: \
    configure-intl \
    pdf-intl 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-pdf in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-pdf) \
	  || exit 1


.PHONY: maybe-install-html-intl install-html-intl
maybe-install-html-intl:
maybe-install-html-intl: install-html-intl

install-html-intl: \
    configure-intl \
    html-intl 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-html in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-html) \
	  || exit 1


.PHONY: maybe-installcheck-intl installcheck-intl
maybe-installcheck-intl:
maybe-installcheck-intl: installcheck-intl

installcheck-intl: \
    configure-intl 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing installcheck in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          installcheck) \
	  || exit 1


.PHONY: maybe-mostlyclean-intl mostlyclean-intl
maybe-mostlyclean-intl:
maybe-mostlyclean-intl: mostlyclean-intl

mostlyclean-intl: 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing mostlyclean in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          mostlyclean) \
	  || exit 1


.PHONY: maybe-clean-intl clean-intl
maybe-clean-intl:
maybe-clean-intl: clean-intl

clean-intl: 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing clean in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          clean) \
	  || exit 1


.PHONY: maybe-distclean-intl distclean-intl
maybe-distclean-intl:
maybe-distclean-intl: distclean-intl

distclean-intl: 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing distclean in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          distclean) \
	  || exit 1


.PHONY: maybe-maintainer-clean-intl maintainer-clean-intl
maybe-maintainer-clean-intl:
maybe-maintainer-clean-intl: maintainer-clean-intl

maintainer-clean-intl: 
	@[ -f ./intl/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing maintainer-clean in intl" ; \
	(cd $(HOST_SUBDIR)/intl && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          maintainer-clean) \
	  || exit 1




.PHONY: configure-tcl maybe-configure-tcl
maybe-configure-tcl:





.PHONY: all-tcl maybe-all-tcl
maybe-all-tcl:




.PHONY: check-tcl maybe-check-tcl
maybe-check-tcl:

.PHONY: install-tcl maybe-install-tcl
maybe-install-tcl:

.PHONY: install-strip-tcl maybe-install-strip-tcl
maybe-install-strip-tcl:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-tcl info-tcl
maybe-info-tcl:

.PHONY: maybe-dvi-tcl dvi-tcl
maybe-dvi-tcl:

.PHONY: maybe-pdf-tcl pdf-tcl
maybe-pdf-tcl:

.PHONY: maybe-html-tcl html-tcl
maybe-html-tcl:

.PHONY: maybe-TAGS-tcl TAGS-tcl
maybe-TAGS-tcl:

.PHONY: maybe-install-info-tcl install-info-tcl
maybe-install-info-tcl:

.PHONY: maybe-install-pdf-tcl install-pdf-tcl
maybe-install-pdf-tcl:

.PHONY: maybe-install-html-tcl install-html-tcl
maybe-install-html-tcl:

.PHONY: maybe-installcheck-tcl installcheck-tcl
maybe-installcheck-tcl:

.PHONY: maybe-mostlyclean-tcl mostlyclean-tcl
maybe-mostlyclean-tcl:

.PHONY: maybe-clean-tcl clean-tcl
maybe-clean-tcl:

.PHONY: maybe-distclean-tcl distclean-tcl
maybe-distclean-tcl:

.PHONY: maybe-maintainer-clean-tcl maintainer-clean-tcl
maybe-maintainer-clean-tcl:



.PHONY: configure-itcl maybe-configure-itcl
maybe-configure-itcl:





.PHONY: all-itcl maybe-all-itcl
maybe-all-itcl:




.PHONY: check-itcl maybe-check-itcl
maybe-check-itcl:

.PHONY: install-itcl maybe-install-itcl
maybe-install-itcl:

.PHONY: install-strip-itcl maybe-install-strip-itcl
maybe-install-strip-itcl:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-itcl info-itcl
maybe-info-itcl:

.PHONY: maybe-dvi-itcl dvi-itcl
maybe-dvi-itcl:

.PHONY: maybe-pdf-itcl pdf-itcl
maybe-pdf-itcl:

.PHONY: maybe-html-itcl html-itcl
maybe-html-itcl:

.PHONY: maybe-TAGS-itcl TAGS-itcl
maybe-TAGS-itcl:

.PHONY: maybe-install-info-itcl install-info-itcl
maybe-install-info-itcl:

.PHONY: maybe-install-pdf-itcl install-pdf-itcl
maybe-install-pdf-itcl:

.PHONY: maybe-install-html-itcl install-html-itcl
maybe-install-html-itcl:

.PHONY: maybe-installcheck-itcl installcheck-itcl
maybe-installcheck-itcl:

.PHONY: maybe-mostlyclean-itcl mostlyclean-itcl
maybe-mostlyclean-itcl:

.PHONY: maybe-clean-itcl clean-itcl
maybe-clean-itcl:

.PHONY: maybe-distclean-itcl distclean-itcl
maybe-distclean-itcl:

.PHONY: maybe-maintainer-clean-itcl maintainer-clean-itcl
maybe-maintainer-clean-itcl:



.PHONY: configure-ld maybe-configure-ld
maybe-configure-ld:



.PHONY: configure-stage1-ld maybe-configure-stage1-ld
maybe-configure-stage1-ld:

.PHONY: configure-stage2-ld maybe-configure-stage2-ld
maybe-configure-stage2-ld:

.PHONY: configure-stage3-ld maybe-configure-stage3-ld
maybe-configure-stage3-ld:

.PHONY: configure-stage4-ld maybe-configure-stage4-ld
maybe-configure-stage4-ld:

.PHONY: configure-stageprofile-ld maybe-configure-stageprofile-ld
maybe-configure-stageprofile-ld:

.PHONY: configure-stagefeedback-ld maybe-configure-stagefeedback-ld
maybe-configure-stagefeedback-ld:





.PHONY: all-ld maybe-all-ld
maybe-all-ld:



.PHONY: all-stage1-ld maybe-all-stage1-ld
.PHONY: clean-stage1-ld maybe-clean-stage1-ld
maybe-all-stage1-ld:
maybe-clean-stage1-ld:


.PHONY: all-stage2-ld maybe-all-stage2-ld
.PHONY: clean-stage2-ld maybe-clean-stage2-ld
maybe-all-stage2-ld:
maybe-clean-stage2-ld:


.PHONY: all-stage3-ld maybe-all-stage3-ld
.PHONY: clean-stage3-ld maybe-clean-stage3-ld
maybe-all-stage3-ld:
maybe-clean-stage3-ld:


.PHONY: all-stage4-ld maybe-all-stage4-ld
.PHONY: clean-stage4-ld maybe-clean-stage4-ld
maybe-all-stage4-ld:
maybe-clean-stage4-ld:


.PHONY: all-stageprofile-ld maybe-all-stageprofile-ld
.PHONY: clean-stageprofile-ld maybe-clean-stageprofile-ld
maybe-all-stageprofile-ld:
maybe-clean-stageprofile-ld:


.PHONY: all-stagefeedback-ld maybe-all-stagefeedback-ld
.PHONY: clean-stagefeedback-ld maybe-clean-stagefeedback-ld
maybe-all-stagefeedback-ld:
maybe-clean-stagefeedback-ld:





.PHONY: check-ld maybe-check-ld
maybe-check-ld:

.PHONY: install-ld maybe-install-ld
maybe-install-ld:

.PHONY: install-strip-ld maybe-install-strip-ld
maybe-install-strip-ld:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-ld info-ld
maybe-info-ld:

.PHONY: maybe-dvi-ld dvi-ld
maybe-dvi-ld:

.PHONY: maybe-pdf-ld pdf-ld
maybe-pdf-ld:

.PHONY: maybe-html-ld html-ld
maybe-html-ld:

.PHONY: maybe-TAGS-ld TAGS-ld
maybe-TAGS-ld:

.PHONY: maybe-install-info-ld install-info-ld
maybe-install-info-ld:

.PHONY: maybe-install-pdf-ld install-pdf-ld
maybe-install-pdf-ld:

.PHONY: maybe-install-html-ld install-html-ld
maybe-install-html-ld:

.PHONY: maybe-installcheck-ld installcheck-ld
maybe-installcheck-ld:

.PHONY: maybe-mostlyclean-ld mostlyclean-ld
maybe-mostlyclean-ld:

.PHONY: maybe-clean-ld clean-ld
maybe-clean-ld:

.PHONY: maybe-distclean-ld distclean-ld
maybe-distclean-ld:

.PHONY: maybe-maintainer-clean-ld maintainer-clean-ld
maybe-maintainer-clean-ld:



.PHONY: configure-libcpp maybe-configure-libcpp
maybe-configure-libcpp:
maybe-configure-libcpp: configure-libcpp
configure-libcpp: 
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
	$(HOST_EXPORTS)  \
	echo Configuring in $(HOST_SUBDIR)/libcpp; \
	cd "$(HOST_SUBDIR)/libcpp" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(HOST_SUBDIR)/libcpp/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/libcpp"; \
	libsrcdir="$$s/libcpp"; \
	$(SHELL) $${libsrcdir}/configure \
	  $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
	  --target=${target_alias} $${srcdiroption}  \
	  || exit 1



.PHONY: configure-stage1-libcpp maybe-configure-stage1-libcpp
maybe-configure-stage1-libcpp:

.PHONY: configure-stage2-libcpp maybe-configure-stage2-libcpp
maybe-configure-stage2-libcpp:

.PHONY: configure-stage3-libcpp maybe-configure-stage3-libcpp
maybe-configure-stage3-libcpp:

.PHONY: configure-stage4-libcpp maybe-configure-stage4-libcpp
maybe-configure-stage4-libcpp:

.PHONY: configure-stageprofile-libcpp maybe-configure-stageprofile-libcpp
maybe-configure-stageprofile-libcpp:

.PHONY: configure-stagefeedback-libcpp maybe-configure-stagefeedback-libcpp
maybe-configure-stagefeedback-libcpp:





.PHONY: all-libcpp maybe-all-libcpp
maybe-all-libcpp:
TARGET-libcpp=all
maybe-all-libcpp: all-libcpp
all-libcpp: configure-libcpp
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS)  \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)  \
		$(TARGET-libcpp))



.PHONY: all-stage1-libcpp maybe-all-stage1-libcpp
.PHONY: clean-stage1-libcpp maybe-clean-stage1-libcpp
maybe-all-stage1-libcpp:
maybe-clean-stage1-libcpp:


.PHONY: all-stage2-libcpp maybe-all-stage2-libcpp
.PHONY: clean-stage2-libcpp maybe-clean-stage2-libcpp
maybe-all-stage2-libcpp:
maybe-clean-stage2-libcpp:


.PHONY: all-stage3-libcpp maybe-all-stage3-libcpp
.PHONY: clean-stage3-libcpp maybe-clean-stage3-libcpp
maybe-all-stage3-libcpp:
maybe-clean-stage3-libcpp:


.PHONY: all-stage4-libcpp maybe-all-stage4-libcpp
.PHONY: clean-stage4-libcpp maybe-clean-stage4-libcpp
maybe-all-stage4-libcpp:
maybe-clean-stage4-libcpp:


.PHONY: all-stageprofile-libcpp maybe-all-stageprofile-libcpp
.PHONY: clean-stageprofile-libcpp maybe-clean-stageprofile-libcpp
maybe-all-stageprofile-libcpp:
maybe-clean-stageprofile-libcpp:


.PHONY: all-stagefeedback-libcpp maybe-all-stagefeedback-libcpp
.PHONY: clean-stagefeedback-libcpp maybe-clean-stagefeedback-libcpp
maybe-all-stagefeedback-libcpp:
maybe-clean-stagefeedback-libcpp:





.PHONY: check-libcpp maybe-check-libcpp
maybe-check-libcpp:
maybe-check-libcpp: check-libcpp

check-libcpp:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(FLAGS_TO_PASS)  check)


.PHONY: install-libcpp maybe-install-libcpp
maybe-install-libcpp:
maybe-install-libcpp: install-libcpp

install-libcpp: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(FLAGS_TO_PASS)  install)


.PHONY: install-strip-libcpp maybe-install-strip-libcpp
maybe-install-strip-libcpp:
maybe-install-strip-libcpp: install-strip-libcpp

install-strip-libcpp: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(FLAGS_TO_PASS)  install-strip)


# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-libcpp info-libcpp
maybe-info-libcpp:
maybe-info-libcpp: info-libcpp

info-libcpp: \
    configure-libcpp 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing info in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          info) \
	  || exit 1


.PHONY: maybe-dvi-libcpp dvi-libcpp
maybe-dvi-libcpp:
maybe-dvi-libcpp: dvi-libcpp

dvi-libcpp: \
    configure-libcpp 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing dvi in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          dvi) \
	  || exit 1


.PHONY: maybe-pdf-libcpp pdf-libcpp
maybe-pdf-libcpp:
maybe-pdf-libcpp: pdf-libcpp

pdf-libcpp: \
    configure-libcpp 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing pdf in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          pdf) \
	  || exit 1


.PHONY: maybe-html-libcpp html-libcpp
maybe-html-libcpp:
maybe-html-libcpp: html-libcpp

html-libcpp: \
    configure-libcpp 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing html in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          html) \
	  || exit 1


.PHONY: maybe-TAGS-libcpp TAGS-libcpp
maybe-TAGS-libcpp:
maybe-TAGS-libcpp: TAGS-libcpp

TAGS-libcpp: \
    configure-libcpp 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing TAGS in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          TAGS) \
	  || exit 1


.PHONY: maybe-install-info-libcpp install-info-libcpp
maybe-install-info-libcpp:
maybe-install-info-libcpp: install-info-libcpp

install-info-libcpp: \
    configure-libcpp \
    info-libcpp 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-info in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-info) \
	  || exit 1


.PHONY: maybe-install-pdf-libcpp install-pdf-libcpp
maybe-install-pdf-libcpp:
maybe-install-pdf-libcpp: install-pdf-libcpp

install-pdf-libcpp: \
    configure-libcpp \
    pdf-libcpp 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-pdf in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-pdf) \
	  || exit 1


.PHONY: maybe-install-html-libcpp install-html-libcpp
maybe-install-html-libcpp:
maybe-install-html-libcpp: install-html-libcpp

install-html-libcpp: \
    configure-libcpp \
    html-libcpp 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-html in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-html) \
	  || exit 1


.PHONY: maybe-installcheck-libcpp installcheck-libcpp
maybe-installcheck-libcpp:
maybe-installcheck-libcpp: installcheck-libcpp

installcheck-libcpp: \
    configure-libcpp 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing installcheck in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          installcheck) \
	  || exit 1


.PHONY: maybe-mostlyclean-libcpp mostlyclean-libcpp
maybe-mostlyclean-libcpp:
maybe-mostlyclean-libcpp: mostlyclean-libcpp

mostlyclean-libcpp: 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing mostlyclean in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          mostlyclean) \
	  || exit 1


.PHONY: maybe-clean-libcpp clean-libcpp
maybe-clean-libcpp:
maybe-clean-libcpp: clean-libcpp

clean-libcpp: 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing clean in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          clean) \
	  || exit 1


.PHONY: maybe-distclean-libcpp distclean-libcpp
maybe-distclean-libcpp:
maybe-distclean-libcpp: distclean-libcpp

distclean-libcpp: 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing distclean in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          distclean) \
	  || exit 1


.PHONY: maybe-maintainer-clean-libcpp maintainer-clean-libcpp
maybe-maintainer-clean-libcpp:
maybe-maintainer-clean-libcpp: maintainer-clean-libcpp

maintainer-clean-libcpp: 
	@[ -f ./libcpp/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing maintainer-clean in libcpp" ; \
	(cd $(HOST_SUBDIR)/libcpp && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          maintainer-clean) \
	  || exit 1




.PHONY: configure-libdecnumber maybe-configure-libdecnumber
maybe-configure-libdecnumber:
maybe-configure-libdecnumber: configure-libdecnumber
configure-libdecnumber: 
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
	$(HOST_EXPORTS)  \
	echo Configuring in $(HOST_SUBDIR)/libdecnumber; \
	cd "$(HOST_SUBDIR)/libdecnumber" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(HOST_SUBDIR)/libdecnumber/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/libdecnumber"; \
	libsrcdir="$$s/libdecnumber"; \
	$(SHELL) $${libsrcdir}/configure \
	  $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
	  --target=${target_alias} $${srcdiroption}  \
	  || exit 1



.PHONY: configure-stage1-libdecnumber maybe-configure-stage1-libdecnumber
maybe-configure-stage1-libdecnumber:

.PHONY: configure-stage2-libdecnumber maybe-configure-stage2-libdecnumber
maybe-configure-stage2-libdecnumber:

.PHONY: configure-stage3-libdecnumber maybe-configure-stage3-libdecnumber
maybe-configure-stage3-libdecnumber:

.PHONY: configure-stage4-libdecnumber maybe-configure-stage4-libdecnumber
maybe-configure-stage4-libdecnumber:

.PHONY: configure-stageprofile-libdecnumber maybe-configure-stageprofile-libdecnumber
maybe-configure-stageprofile-libdecnumber:

.PHONY: configure-stagefeedback-libdecnumber maybe-configure-stagefeedback-libdecnumber
maybe-configure-stagefeedback-libdecnumber:





.PHONY: all-libdecnumber maybe-all-libdecnumber
maybe-all-libdecnumber:
TARGET-libdecnumber=all
maybe-all-libdecnumber: all-libdecnumber
all-libdecnumber: configure-libdecnumber
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS)  \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)  \
		$(TARGET-libdecnumber))



.PHONY: all-stage1-libdecnumber maybe-all-stage1-libdecnumber
.PHONY: clean-stage1-libdecnumber maybe-clean-stage1-libdecnumber
maybe-all-stage1-libdecnumber:
maybe-clean-stage1-libdecnumber:


.PHONY: all-stage2-libdecnumber maybe-all-stage2-libdecnumber
.PHONY: clean-stage2-libdecnumber maybe-clean-stage2-libdecnumber
maybe-all-stage2-libdecnumber:
maybe-clean-stage2-libdecnumber:


.PHONY: all-stage3-libdecnumber maybe-all-stage3-libdecnumber
.PHONY: clean-stage3-libdecnumber maybe-clean-stage3-libdecnumber
maybe-all-stage3-libdecnumber:
maybe-clean-stage3-libdecnumber:


.PHONY: all-stage4-libdecnumber maybe-all-stage4-libdecnumber
.PHONY: clean-stage4-libdecnumber maybe-clean-stage4-libdecnumber
maybe-all-stage4-libdecnumber:
maybe-clean-stage4-libdecnumber:


.PHONY: all-stageprofile-libdecnumber maybe-all-stageprofile-libdecnumber
.PHONY: clean-stageprofile-libdecnumber maybe-clean-stageprofile-libdecnumber
maybe-all-stageprofile-libdecnumber:
maybe-clean-stageprofile-libdecnumber:


.PHONY: all-stagefeedback-libdecnumber maybe-all-stagefeedback-libdecnumber
.PHONY: clean-stagefeedback-libdecnumber maybe-clean-stagefeedback-libdecnumber
maybe-all-stagefeedback-libdecnumber:
maybe-clean-stagefeedback-libdecnumber:





.PHONY: check-libdecnumber maybe-check-libdecnumber
maybe-check-libdecnumber:
maybe-check-libdecnumber: check-libdecnumber

check-libdecnumber:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(FLAGS_TO_PASS)  check)


.PHONY: install-libdecnumber maybe-install-libdecnumber
maybe-install-libdecnumber:
maybe-install-libdecnumber: install-libdecnumber

install-libdecnumber: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(FLAGS_TO_PASS)  install)


.PHONY: install-strip-libdecnumber maybe-install-strip-libdecnumber
maybe-install-strip-libdecnumber:
maybe-install-strip-libdecnumber: install-strip-libdecnumber

install-strip-libdecnumber: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(FLAGS_TO_PASS)  install-strip)


# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-libdecnumber info-libdecnumber
maybe-info-libdecnumber:
maybe-info-libdecnumber: info-libdecnumber

info-libdecnumber: \
    configure-libdecnumber 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing info in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          info) \
	  || exit 1


.PHONY: maybe-dvi-libdecnumber dvi-libdecnumber
maybe-dvi-libdecnumber:
maybe-dvi-libdecnumber: dvi-libdecnumber

dvi-libdecnumber: \
    configure-libdecnumber 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing dvi in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          dvi) \
	  || exit 1


.PHONY: maybe-pdf-libdecnumber pdf-libdecnumber
maybe-pdf-libdecnumber:
maybe-pdf-libdecnumber: pdf-libdecnumber

pdf-libdecnumber: \
    configure-libdecnumber 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing pdf in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          pdf) \
	  || exit 1


.PHONY: maybe-html-libdecnumber html-libdecnumber
maybe-html-libdecnumber:
maybe-html-libdecnumber: html-libdecnumber

html-libdecnumber: \
    configure-libdecnumber 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing html in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          html) \
	  || exit 1


.PHONY: maybe-TAGS-libdecnumber TAGS-libdecnumber
maybe-TAGS-libdecnumber:
maybe-TAGS-libdecnumber: TAGS-libdecnumber

TAGS-libdecnumber: \
    configure-libdecnumber 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing TAGS in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          TAGS) \
	  || exit 1


.PHONY: maybe-install-info-libdecnumber install-info-libdecnumber
maybe-install-info-libdecnumber:
maybe-install-info-libdecnumber: install-info-libdecnumber

install-info-libdecnumber: \
    configure-libdecnumber \
    info-libdecnumber 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-info in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-info) \
	  || exit 1


.PHONY: maybe-install-pdf-libdecnumber install-pdf-libdecnumber
maybe-install-pdf-libdecnumber:
maybe-install-pdf-libdecnumber: install-pdf-libdecnumber

install-pdf-libdecnumber: \
    configure-libdecnumber \
    pdf-libdecnumber 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-pdf in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-pdf) \
	  || exit 1


.PHONY: maybe-install-html-libdecnumber install-html-libdecnumber
maybe-install-html-libdecnumber:
maybe-install-html-libdecnumber: install-html-libdecnumber

install-html-libdecnumber: \
    configure-libdecnumber \
    html-libdecnumber 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-html in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-html) \
	  || exit 1


.PHONY: maybe-installcheck-libdecnumber installcheck-libdecnumber
maybe-installcheck-libdecnumber:
maybe-installcheck-libdecnumber: installcheck-libdecnumber

installcheck-libdecnumber: \
    configure-libdecnumber 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing installcheck in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          installcheck) \
	  || exit 1


.PHONY: maybe-mostlyclean-libdecnumber mostlyclean-libdecnumber
maybe-mostlyclean-libdecnumber:
maybe-mostlyclean-libdecnumber: mostlyclean-libdecnumber

mostlyclean-libdecnumber: 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing mostlyclean in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          mostlyclean) \
	  || exit 1


.PHONY: maybe-clean-libdecnumber clean-libdecnumber
maybe-clean-libdecnumber:
maybe-clean-libdecnumber: clean-libdecnumber

clean-libdecnumber: 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing clean in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          clean) \
	  || exit 1


.PHONY: maybe-distclean-libdecnumber distclean-libdecnumber
maybe-distclean-libdecnumber:
maybe-distclean-libdecnumber: distclean-libdecnumber

distclean-libdecnumber: 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing distclean in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          distclean) \
	  || exit 1


.PHONY: maybe-maintainer-clean-libdecnumber maintainer-clean-libdecnumber
maybe-maintainer-clean-libdecnumber:
maybe-maintainer-clean-libdecnumber: maintainer-clean-libdecnumber

maintainer-clean-libdecnumber: 
	@[ -f ./libdecnumber/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing maintainer-clean in libdecnumber" ; \
	(cd $(HOST_SUBDIR)/libdecnumber && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          maintainer-clean) \
	  || exit 1




.PHONY: configure-libgui maybe-configure-libgui
maybe-configure-libgui:





.PHONY: all-libgui maybe-all-libgui
maybe-all-libgui:




.PHONY: check-libgui maybe-check-libgui
maybe-check-libgui:

.PHONY: install-libgui maybe-install-libgui
maybe-install-libgui:

.PHONY: install-strip-libgui maybe-install-strip-libgui
maybe-install-strip-libgui:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-libgui info-libgui
maybe-info-libgui:

.PHONY: maybe-dvi-libgui dvi-libgui
maybe-dvi-libgui:

.PHONY: maybe-pdf-libgui pdf-libgui
maybe-pdf-libgui:

.PHONY: maybe-html-libgui html-libgui
maybe-html-libgui:

.PHONY: maybe-TAGS-libgui TAGS-libgui
maybe-TAGS-libgui:

.PHONY: maybe-install-info-libgui install-info-libgui
maybe-install-info-libgui:

.PHONY: maybe-install-pdf-libgui install-pdf-libgui
maybe-install-pdf-libgui:

.PHONY: maybe-install-html-libgui install-html-libgui
maybe-install-html-libgui:

.PHONY: maybe-installcheck-libgui installcheck-libgui
maybe-installcheck-libgui:

.PHONY: maybe-mostlyclean-libgui mostlyclean-libgui
maybe-mostlyclean-libgui:

.PHONY: maybe-clean-libgui clean-libgui
maybe-clean-libgui:

.PHONY: maybe-distclean-libgui distclean-libgui
maybe-distclean-libgui:

.PHONY: maybe-maintainer-clean-libgui maintainer-clean-libgui
maybe-maintainer-clean-libgui:



.PHONY: configure-libiberty maybe-configure-libiberty
maybe-configure-libiberty:
maybe-configure-libiberty: configure-libiberty
configure-libiberty: 
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
	$(HOST_EXPORTS)  \
	echo Configuring in $(HOST_SUBDIR)/libiberty; \
	cd "$(HOST_SUBDIR)/libiberty" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(HOST_SUBDIR)/libiberty/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/libiberty"; \
	libsrcdir="$$s/libiberty"; \
	$(SHELL) $${libsrcdir}/configure \
	  $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
	  --target=${target_alias} $${srcdiroption} --enable-shared \
	  || exit 1



.PHONY: configure-stage1-libiberty maybe-configure-stage1-libiberty
maybe-configure-stage1-libiberty:

.PHONY: configure-stage2-libiberty maybe-configure-stage2-libiberty
maybe-configure-stage2-libiberty:

.PHONY: configure-stage3-libiberty maybe-configure-stage3-libiberty
maybe-configure-stage3-libiberty:

.PHONY: configure-stage4-libiberty maybe-configure-stage4-libiberty
maybe-configure-stage4-libiberty:

.PHONY: configure-stageprofile-libiberty maybe-configure-stageprofile-libiberty
maybe-configure-stageprofile-libiberty:

.PHONY: configure-stagefeedback-libiberty maybe-configure-stagefeedback-libiberty
maybe-configure-stagefeedback-libiberty:





.PHONY: all-libiberty maybe-all-libiberty
maybe-all-libiberty:
TARGET-libiberty=all
maybe-all-libiberty: all-libiberty
all-libiberty: configure-libiberty
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS)  \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)  \
		$(TARGET-libiberty))



.PHONY: all-stage1-libiberty maybe-all-stage1-libiberty
.PHONY: clean-stage1-libiberty maybe-clean-stage1-libiberty
maybe-all-stage1-libiberty:
maybe-clean-stage1-libiberty:


.PHONY: all-stage2-libiberty maybe-all-stage2-libiberty
.PHONY: clean-stage2-libiberty maybe-clean-stage2-libiberty
maybe-all-stage2-libiberty:
maybe-clean-stage2-libiberty:


.PHONY: all-stage3-libiberty maybe-all-stage3-libiberty
.PHONY: clean-stage3-libiberty maybe-clean-stage3-libiberty
maybe-all-stage3-libiberty:
maybe-clean-stage3-libiberty:


.PHONY: all-stage4-libiberty maybe-all-stage4-libiberty
.PHONY: clean-stage4-libiberty maybe-clean-stage4-libiberty
maybe-all-stage4-libiberty:
maybe-clean-stage4-libiberty:


.PHONY: all-stageprofile-libiberty maybe-all-stageprofile-libiberty
.PHONY: clean-stageprofile-libiberty maybe-clean-stageprofile-libiberty
maybe-all-stageprofile-libiberty:
maybe-clean-stageprofile-libiberty:


.PHONY: all-stagefeedback-libiberty maybe-all-stagefeedback-libiberty
.PHONY: clean-stagefeedback-libiberty maybe-clean-stagefeedback-libiberty
maybe-all-stagefeedback-libiberty:
maybe-clean-stagefeedback-libiberty:





.PHONY: check-libiberty maybe-check-libiberty
maybe-check-libiberty:
maybe-check-libiberty: check-libiberty

check-libiberty:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(FLAGS_TO_PASS)  check)


.PHONY: install-libiberty maybe-install-libiberty
maybe-install-libiberty:
maybe-install-libiberty: install-libiberty

install-libiberty: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(FLAGS_TO_PASS)  install)


.PHONY: install-strip-libiberty maybe-install-strip-libiberty
maybe-install-strip-libiberty:
maybe-install-strip-libiberty: install-strip-libiberty

install-strip-libiberty: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(FLAGS_TO_PASS)  install-strip)


# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-libiberty info-libiberty
maybe-info-libiberty:
maybe-info-libiberty: info-libiberty

info-libiberty: \
    configure-libiberty 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing info in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          info) \
	  || exit 1


.PHONY: maybe-dvi-libiberty dvi-libiberty
maybe-dvi-libiberty:
maybe-dvi-libiberty: dvi-libiberty

dvi-libiberty: \
    configure-libiberty 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing dvi in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          dvi) \
	  || exit 1


.PHONY: maybe-pdf-libiberty pdf-libiberty
maybe-pdf-libiberty:
maybe-pdf-libiberty: pdf-libiberty

pdf-libiberty: \
    configure-libiberty 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing pdf in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          pdf) \
	  || exit 1


.PHONY: maybe-html-libiberty html-libiberty
maybe-html-libiberty:
maybe-html-libiberty: html-libiberty

html-libiberty: \
    configure-libiberty 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing html in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          html) \
	  || exit 1


.PHONY: maybe-TAGS-libiberty TAGS-libiberty
maybe-TAGS-libiberty:
maybe-TAGS-libiberty: TAGS-libiberty

TAGS-libiberty: \
    configure-libiberty 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing TAGS in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          TAGS) \
	  || exit 1


.PHONY: maybe-install-info-libiberty install-info-libiberty
maybe-install-info-libiberty:
maybe-install-info-libiberty: install-info-libiberty

install-info-libiberty: \
    configure-libiberty \
    info-libiberty 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-info in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-info) \
	  || exit 1


.PHONY: maybe-install-pdf-libiberty install-pdf-libiberty
maybe-install-pdf-libiberty:
maybe-install-pdf-libiberty: install-pdf-libiberty

install-pdf-libiberty: \
    configure-libiberty \
    pdf-libiberty 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-pdf in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-pdf) \
	  || exit 1


.PHONY: maybe-install-html-libiberty install-html-libiberty
maybe-install-html-libiberty:
maybe-install-html-libiberty: install-html-libiberty

install-html-libiberty: \
    configure-libiberty \
    html-libiberty 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-html in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-html) \
	  || exit 1


.PHONY: maybe-installcheck-libiberty installcheck-libiberty
maybe-installcheck-libiberty:
maybe-installcheck-libiberty: installcheck-libiberty

installcheck-libiberty: \
    configure-libiberty 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing installcheck in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          installcheck) \
	  || exit 1


.PHONY: maybe-mostlyclean-libiberty mostlyclean-libiberty
maybe-mostlyclean-libiberty:
maybe-mostlyclean-libiberty: mostlyclean-libiberty

mostlyclean-libiberty: 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing mostlyclean in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          mostlyclean) \
	  || exit 1


.PHONY: maybe-clean-libiberty clean-libiberty
maybe-clean-libiberty:
maybe-clean-libiberty: clean-libiberty

clean-libiberty: 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing clean in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          clean) \
	  || exit 1


.PHONY: maybe-distclean-libiberty distclean-libiberty
maybe-distclean-libiberty:
maybe-distclean-libiberty: distclean-libiberty

distclean-libiberty: 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing distclean in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          distclean) \
	  || exit 1


.PHONY: maybe-maintainer-clean-libiberty maintainer-clean-libiberty
maybe-maintainer-clean-libiberty:
maybe-maintainer-clean-libiberty: maintainer-clean-libiberty

maintainer-clean-libiberty: 
	@[ -f ./libiberty/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing maintainer-clean in libiberty" ; \
	(cd $(HOST_SUBDIR)/libiberty && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          maintainer-clean) \
	  || exit 1




.PHONY: configure-libiconv maybe-configure-libiconv
maybe-configure-libiconv:





.PHONY: all-libiconv maybe-all-libiconv
maybe-all-libiconv:




.PHONY: check-libiconv maybe-check-libiconv
maybe-check-libiconv:

.PHONY: install-libiconv maybe-install-libiconv
maybe-install-libiconv:

.PHONY: install-strip-libiconv maybe-install-strip-libiconv
maybe-install-strip-libiconv:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-libiconv info-libiconv
maybe-info-libiconv:

.PHONY: maybe-dvi-libiconv dvi-libiconv
maybe-dvi-libiconv:

.PHONY: maybe-pdf-libiconv pdf-libiconv
maybe-pdf-libiconv:

.PHONY: maybe-html-libiconv html-libiconv
maybe-html-libiconv:

.PHONY: maybe-TAGS-libiconv TAGS-libiconv
maybe-TAGS-libiconv:

.PHONY: maybe-install-info-libiconv install-info-libiconv
maybe-install-info-libiconv:

.PHONY: maybe-install-pdf-libiconv install-pdf-libiconv
maybe-install-pdf-libiconv:

.PHONY: maybe-install-html-libiconv install-html-libiconv
maybe-install-html-libiconv:

.PHONY: maybe-installcheck-libiconv installcheck-libiconv
maybe-installcheck-libiconv:

.PHONY: maybe-mostlyclean-libiconv mostlyclean-libiconv
maybe-mostlyclean-libiconv:

.PHONY: maybe-clean-libiconv clean-libiconv
maybe-clean-libiconv:

.PHONY: maybe-distclean-libiconv distclean-libiconv
maybe-distclean-libiconv:

.PHONY: maybe-maintainer-clean-libiconv maintainer-clean-libiconv
maybe-maintainer-clean-libiconv:



.PHONY: configure-m4 maybe-configure-m4
maybe-configure-m4:





.PHONY: all-m4 maybe-all-m4
maybe-all-m4:




.PHONY: check-m4 maybe-check-m4
maybe-check-m4:

.PHONY: install-m4 maybe-install-m4
maybe-install-m4:

.PHONY: install-strip-m4 maybe-install-strip-m4
maybe-install-strip-m4:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-m4 info-m4
maybe-info-m4:

.PHONY: maybe-dvi-m4 dvi-m4
maybe-dvi-m4:

.PHONY: maybe-pdf-m4 pdf-m4
maybe-pdf-m4:

.PHONY: maybe-html-m4 html-m4
maybe-html-m4:

.PHONY: maybe-TAGS-m4 TAGS-m4
maybe-TAGS-m4:

.PHONY: maybe-install-info-m4 install-info-m4
maybe-install-info-m4:

.PHONY: maybe-install-pdf-m4 install-pdf-m4
maybe-install-pdf-m4:

.PHONY: maybe-install-html-m4 install-html-m4
maybe-install-html-m4:

.PHONY: maybe-installcheck-m4 installcheck-m4
maybe-installcheck-m4:

.PHONY: maybe-mostlyclean-m4 mostlyclean-m4
maybe-mostlyclean-m4:

.PHONY: maybe-clean-m4 clean-m4
maybe-clean-m4:

.PHONY: maybe-distclean-m4 distclean-m4
maybe-distclean-m4:

.PHONY: maybe-maintainer-clean-m4 maintainer-clean-m4
maybe-maintainer-clean-m4:



.PHONY: configure-readline maybe-configure-readline
maybe-configure-readline:





.PHONY: all-readline maybe-all-readline
maybe-all-readline:




.PHONY: check-readline maybe-check-readline
maybe-check-readline:

.PHONY: install-readline maybe-install-readline
maybe-install-readline:

.PHONY: install-strip-readline maybe-install-strip-readline
maybe-install-strip-readline:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-readline info-readline
maybe-info-readline:

.PHONY: maybe-dvi-readline dvi-readline
maybe-dvi-readline:

.PHONY: maybe-pdf-readline pdf-readline
maybe-pdf-readline:

.PHONY: maybe-html-readline html-readline
maybe-html-readline:

.PHONY: maybe-TAGS-readline TAGS-readline
maybe-TAGS-readline:

.PHONY: maybe-install-info-readline install-info-readline
maybe-install-info-readline:

.PHONY: maybe-install-pdf-readline install-pdf-readline
maybe-install-pdf-readline:

.PHONY: maybe-install-html-readline install-html-readline
maybe-install-html-readline:

.PHONY: maybe-installcheck-readline installcheck-readline
maybe-installcheck-readline:

.PHONY: maybe-mostlyclean-readline mostlyclean-readline
maybe-mostlyclean-readline:

.PHONY: maybe-clean-readline clean-readline
maybe-clean-readline:

.PHONY: maybe-distclean-readline distclean-readline
maybe-distclean-readline:

.PHONY: maybe-maintainer-clean-readline maintainer-clean-readline
maybe-maintainer-clean-readline:



.PHONY: configure-sid maybe-configure-sid
maybe-configure-sid:





.PHONY: all-sid maybe-all-sid
maybe-all-sid:




.PHONY: check-sid maybe-check-sid
maybe-check-sid:

.PHONY: install-sid maybe-install-sid
maybe-install-sid:

.PHONY: install-strip-sid maybe-install-strip-sid
maybe-install-strip-sid:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-sid info-sid
maybe-info-sid:

.PHONY: maybe-dvi-sid dvi-sid
maybe-dvi-sid:

.PHONY: maybe-pdf-sid pdf-sid
maybe-pdf-sid:

.PHONY: maybe-html-sid html-sid
maybe-html-sid:

.PHONY: maybe-TAGS-sid TAGS-sid
maybe-TAGS-sid:

.PHONY: maybe-install-info-sid install-info-sid
maybe-install-info-sid:

.PHONY: maybe-install-pdf-sid install-pdf-sid
maybe-install-pdf-sid:

.PHONY: maybe-install-html-sid install-html-sid
maybe-install-html-sid:

.PHONY: maybe-installcheck-sid installcheck-sid
maybe-installcheck-sid:

.PHONY: maybe-mostlyclean-sid mostlyclean-sid
maybe-mostlyclean-sid:

.PHONY: maybe-clean-sid clean-sid
maybe-clean-sid:

.PHONY: maybe-distclean-sid distclean-sid
maybe-distclean-sid:

.PHONY: maybe-maintainer-clean-sid maintainer-clean-sid
maybe-maintainer-clean-sid:



.PHONY: configure-sim maybe-configure-sim
maybe-configure-sim:





.PHONY: all-sim maybe-all-sim
maybe-all-sim:




.PHONY: check-sim maybe-check-sim
maybe-check-sim:

.PHONY: install-sim maybe-install-sim
maybe-install-sim:

.PHONY: install-strip-sim maybe-install-strip-sim
maybe-install-strip-sim:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-sim info-sim
maybe-info-sim:

.PHONY: maybe-dvi-sim dvi-sim
maybe-dvi-sim:

.PHONY: maybe-pdf-sim pdf-sim
maybe-pdf-sim:

.PHONY: maybe-html-sim html-sim
maybe-html-sim:

.PHONY: maybe-TAGS-sim TAGS-sim
maybe-TAGS-sim:

.PHONY: maybe-install-info-sim install-info-sim
maybe-install-info-sim:

.PHONY: maybe-install-pdf-sim install-pdf-sim
maybe-install-pdf-sim:

.PHONY: maybe-install-html-sim install-html-sim
maybe-install-html-sim:

.PHONY: maybe-installcheck-sim installcheck-sim
maybe-installcheck-sim:

.PHONY: maybe-mostlyclean-sim mostlyclean-sim
maybe-mostlyclean-sim:

.PHONY: maybe-clean-sim clean-sim
maybe-clean-sim:

.PHONY: maybe-distclean-sim distclean-sim
maybe-distclean-sim:

.PHONY: maybe-maintainer-clean-sim maintainer-clean-sim
maybe-maintainer-clean-sim:



.PHONY: configure-texinfo maybe-configure-texinfo
maybe-configure-texinfo:





.PHONY: all-texinfo maybe-all-texinfo
maybe-all-texinfo:




.PHONY: check-texinfo maybe-check-texinfo
maybe-check-texinfo:

.PHONY: install-texinfo maybe-install-texinfo
maybe-install-texinfo:

.PHONY: install-strip-texinfo maybe-install-strip-texinfo
maybe-install-strip-texinfo:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-texinfo info-texinfo
maybe-info-texinfo:

.PHONY: maybe-dvi-texinfo dvi-texinfo
maybe-dvi-texinfo:

.PHONY: maybe-pdf-texinfo pdf-texinfo
maybe-pdf-texinfo:

.PHONY: maybe-html-texinfo html-texinfo
maybe-html-texinfo:

.PHONY: maybe-TAGS-texinfo TAGS-texinfo
maybe-TAGS-texinfo:

.PHONY: maybe-install-info-texinfo install-info-texinfo
maybe-install-info-texinfo:

.PHONY: maybe-install-pdf-texinfo install-pdf-texinfo
maybe-install-pdf-texinfo:

.PHONY: maybe-install-html-texinfo install-html-texinfo
maybe-install-html-texinfo:

.PHONY: maybe-installcheck-texinfo installcheck-texinfo
maybe-installcheck-texinfo:

.PHONY: maybe-mostlyclean-texinfo mostlyclean-texinfo
maybe-mostlyclean-texinfo:

.PHONY: maybe-clean-texinfo clean-texinfo
maybe-clean-texinfo:

.PHONY: maybe-distclean-texinfo distclean-texinfo
maybe-distclean-texinfo:

.PHONY: maybe-maintainer-clean-texinfo maintainer-clean-texinfo
maybe-maintainer-clean-texinfo:



.PHONY: configure-zlib maybe-configure-zlib
maybe-configure-zlib:
maybe-configure-zlib: configure-zlib
configure-zlib: 
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
	$(HOST_EXPORTS)  \
	echo Configuring in $(HOST_SUBDIR)/zlib; \
	cd "$(HOST_SUBDIR)/zlib" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(HOST_SUBDIR)/zlib/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/zlib"; \
	libsrcdir="$$s/zlib"; \
	$(SHELL) $${libsrcdir}/configure \
	  $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
	  --target=${target_alias} $${srcdiroption}  \
	  || exit 1



.PHONY: configure-stage1-zlib maybe-configure-stage1-zlib
maybe-configure-stage1-zlib:

.PHONY: configure-stage2-zlib maybe-configure-stage2-zlib
maybe-configure-stage2-zlib:

.PHONY: configure-stage3-zlib maybe-configure-stage3-zlib
maybe-configure-stage3-zlib:

.PHONY: configure-stage4-zlib maybe-configure-stage4-zlib
maybe-configure-stage4-zlib:

.PHONY: configure-stageprofile-zlib maybe-configure-stageprofile-zlib
maybe-configure-stageprofile-zlib:

.PHONY: configure-stagefeedback-zlib maybe-configure-stagefeedback-zlib
maybe-configure-stagefeedback-zlib:





.PHONY: all-zlib maybe-all-zlib
maybe-all-zlib:
TARGET-zlib=all
maybe-all-zlib: all-zlib
all-zlib: configure-zlib
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS)  \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)  \
		$(TARGET-zlib))



.PHONY: all-stage1-zlib maybe-all-stage1-zlib
.PHONY: clean-stage1-zlib maybe-clean-stage1-zlib
maybe-all-stage1-zlib:
maybe-clean-stage1-zlib:


.PHONY: all-stage2-zlib maybe-all-stage2-zlib
.PHONY: clean-stage2-zlib maybe-clean-stage2-zlib
maybe-all-stage2-zlib:
maybe-clean-stage2-zlib:


.PHONY: all-stage3-zlib maybe-all-stage3-zlib
.PHONY: clean-stage3-zlib maybe-clean-stage3-zlib
maybe-all-stage3-zlib:
maybe-clean-stage3-zlib:


.PHONY: all-stage4-zlib maybe-all-stage4-zlib
.PHONY: clean-stage4-zlib maybe-clean-stage4-zlib
maybe-all-stage4-zlib:
maybe-clean-stage4-zlib:


.PHONY: all-stageprofile-zlib maybe-all-stageprofile-zlib
.PHONY: clean-stageprofile-zlib maybe-clean-stageprofile-zlib
maybe-all-stageprofile-zlib:
maybe-clean-stageprofile-zlib:


.PHONY: all-stagefeedback-zlib maybe-all-stagefeedback-zlib
.PHONY: clean-stagefeedback-zlib maybe-clean-stagefeedback-zlib
maybe-all-stagefeedback-zlib:
maybe-clean-stagefeedback-zlib:





.PHONY: check-zlib maybe-check-zlib
maybe-check-zlib:
maybe-check-zlib: check-zlib

check-zlib:


.PHONY: install-zlib maybe-install-zlib
maybe-install-zlib:
maybe-install-zlib: install-zlib

install-zlib:


.PHONY: install-strip-zlib maybe-install-strip-zlib
maybe-install-strip-zlib:
maybe-install-strip-zlib: install-strip-zlib

install-strip-zlib:


# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-zlib info-zlib
maybe-info-zlib:
maybe-info-zlib: info-zlib

info-zlib: \
    configure-zlib 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing info in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          info) \
	  || exit 1


.PHONY: maybe-dvi-zlib dvi-zlib
maybe-dvi-zlib:
maybe-dvi-zlib: dvi-zlib

dvi-zlib: \
    configure-zlib 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing dvi in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          dvi) \
	  || exit 1


.PHONY: maybe-pdf-zlib pdf-zlib
maybe-pdf-zlib:
maybe-pdf-zlib: pdf-zlib

pdf-zlib: \
    configure-zlib 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing pdf in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          pdf) \
	  || exit 1


.PHONY: maybe-html-zlib html-zlib
maybe-html-zlib:
maybe-html-zlib: html-zlib

html-zlib: \
    configure-zlib 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing html in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          html) \
	  || exit 1


.PHONY: maybe-TAGS-zlib TAGS-zlib
maybe-TAGS-zlib:
maybe-TAGS-zlib: TAGS-zlib

TAGS-zlib: \
    configure-zlib 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing TAGS in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          TAGS) \
	  || exit 1


.PHONY: maybe-install-info-zlib install-info-zlib
maybe-install-info-zlib:
maybe-install-info-zlib: install-info-zlib

install-info-zlib: \
    configure-zlib \
    info-zlib 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-info in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-info) \
	  || exit 1


.PHONY: maybe-install-pdf-zlib install-pdf-zlib
maybe-install-pdf-zlib:
maybe-install-pdf-zlib: install-pdf-zlib

install-pdf-zlib: \
    configure-zlib \
    pdf-zlib 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-pdf in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-pdf) \
	  || exit 1


.PHONY: maybe-install-html-zlib install-html-zlib
maybe-install-html-zlib:
maybe-install-html-zlib: install-html-zlib

install-html-zlib: \
    configure-zlib \
    html-zlib 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-html in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-html) \
	  || exit 1


.PHONY: maybe-installcheck-zlib installcheck-zlib
maybe-installcheck-zlib:
maybe-installcheck-zlib: installcheck-zlib

installcheck-zlib: \
    configure-zlib 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing installcheck in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          installcheck) \
	  || exit 1


.PHONY: maybe-mostlyclean-zlib mostlyclean-zlib
maybe-mostlyclean-zlib:
maybe-mostlyclean-zlib: mostlyclean-zlib

mostlyclean-zlib: 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing mostlyclean in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          mostlyclean) \
	  || exit 1


.PHONY: maybe-clean-zlib clean-zlib
maybe-clean-zlib:
maybe-clean-zlib: clean-zlib

clean-zlib: 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing clean in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          clean) \
	  || exit 1


.PHONY: maybe-distclean-zlib distclean-zlib
maybe-distclean-zlib:
maybe-distclean-zlib: distclean-zlib

distclean-zlib: 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing distclean in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          distclean) \
	  || exit 1


.PHONY: maybe-maintainer-clean-zlib maintainer-clean-zlib
maybe-maintainer-clean-zlib:
maybe-maintainer-clean-zlib: maintainer-clean-zlib

maintainer-clean-zlib: 
	@[ -f ./zlib/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing maintainer-clean in zlib" ; \
	(cd $(HOST_SUBDIR)/zlib && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          maintainer-clean) \
	  || exit 1




.PHONY: configure-gdb maybe-configure-gdb
maybe-configure-gdb:





.PHONY: all-gdb maybe-all-gdb
maybe-all-gdb:




.PHONY: check-gdb maybe-check-gdb
maybe-check-gdb:

.PHONY: install-gdb maybe-install-gdb
maybe-install-gdb:

.PHONY: install-strip-gdb maybe-install-strip-gdb
maybe-install-strip-gdb:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-gdb info-gdb
maybe-info-gdb:

.PHONY: maybe-dvi-gdb dvi-gdb
maybe-dvi-gdb:

.PHONY: maybe-pdf-gdb pdf-gdb
maybe-pdf-gdb:

.PHONY: maybe-html-gdb html-gdb
maybe-html-gdb:

.PHONY: maybe-TAGS-gdb TAGS-gdb
maybe-TAGS-gdb:

.PHONY: maybe-install-info-gdb install-info-gdb
maybe-install-info-gdb:

.PHONY: maybe-install-pdf-gdb install-pdf-gdb
maybe-install-pdf-gdb:

.PHONY: maybe-install-html-gdb install-html-gdb
maybe-install-html-gdb:

.PHONY: maybe-installcheck-gdb installcheck-gdb
maybe-installcheck-gdb:

.PHONY: maybe-mostlyclean-gdb mostlyclean-gdb
maybe-mostlyclean-gdb:

.PHONY: maybe-clean-gdb clean-gdb
maybe-clean-gdb:

.PHONY: maybe-distclean-gdb distclean-gdb
maybe-distclean-gdb:

.PHONY: maybe-maintainer-clean-gdb maintainer-clean-gdb
maybe-maintainer-clean-gdb:



.PHONY: configure-expect maybe-configure-expect
maybe-configure-expect:





.PHONY: all-expect maybe-all-expect
maybe-all-expect:




.PHONY: check-expect maybe-check-expect
maybe-check-expect:

.PHONY: install-expect maybe-install-expect
maybe-install-expect:

.PHONY: install-strip-expect maybe-install-strip-expect
maybe-install-strip-expect:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-expect info-expect
maybe-info-expect:

.PHONY: maybe-dvi-expect dvi-expect
maybe-dvi-expect:

.PHONY: maybe-pdf-expect pdf-expect
maybe-pdf-expect:

.PHONY: maybe-html-expect html-expect
maybe-html-expect:

.PHONY: maybe-TAGS-expect TAGS-expect
maybe-TAGS-expect:

.PHONY: maybe-install-info-expect install-info-expect
maybe-install-info-expect:

.PHONY: maybe-install-pdf-expect install-pdf-expect
maybe-install-pdf-expect:

.PHONY: maybe-install-html-expect install-html-expect
maybe-install-html-expect:

.PHONY: maybe-installcheck-expect installcheck-expect
maybe-installcheck-expect:

.PHONY: maybe-mostlyclean-expect mostlyclean-expect
maybe-mostlyclean-expect:

.PHONY: maybe-clean-expect clean-expect
maybe-clean-expect:

.PHONY: maybe-distclean-expect distclean-expect
maybe-distclean-expect:

.PHONY: maybe-maintainer-clean-expect maintainer-clean-expect
maybe-maintainer-clean-expect:



.PHONY: configure-guile maybe-configure-guile
maybe-configure-guile:





.PHONY: all-guile maybe-all-guile
maybe-all-guile:




.PHONY: check-guile maybe-check-guile
maybe-check-guile:

.PHONY: install-guile maybe-install-guile
maybe-install-guile:

.PHONY: install-strip-guile maybe-install-strip-guile
maybe-install-strip-guile:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-guile info-guile
maybe-info-guile:

.PHONY: maybe-dvi-guile dvi-guile
maybe-dvi-guile:

.PHONY: maybe-pdf-guile pdf-guile
maybe-pdf-guile:

.PHONY: maybe-html-guile html-guile
maybe-html-guile:

.PHONY: maybe-TAGS-guile TAGS-guile
maybe-TAGS-guile:

.PHONY: maybe-install-info-guile install-info-guile
maybe-install-info-guile:

.PHONY: maybe-install-pdf-guile install-pdf-guile
maybe-install-pdf-guile:

.PHONY: maybe-install-html-guile install-html-guile
maybe-install-html-guile:

.PHONY: maybe-installcheck-guile installcheck-guile
maybe-installcheck-guile:

.PHONY: maybe-mostlyclean-guile mostlyclean-guile
maybe-mostlyclean-guile:

.PHONY: maybe-clean-guile clean-guile
maybe-clean-guile:

.PHONY: maybe-distclean-guile distclean-guile
maybe-distclean-guile:

.PHONY: maybe-maintainer-clean-guile maintainer-clean-guile
maybe-maintainer-clean-guile:



.PHONY: configure-tk maybe-configure-tk
maybe-configure-tk:





.PHONY: all-tk maybe-all-tk
maybe-all-tk:




.PHONY: check-tk maybe-check-tk
maybe-check-tk:

.PHONY: install-tk maybe-install-tk
maybe-install-tk:

.PHONY: install-strip-tk maybe-install-strip-tk
maybe-install-strip-tk:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-tk info-tk
maybe-info-tk:

.PHONY: maybe-dvi-tk dvi-tk
maybe-dvi-tk:

.PHONY: maybe-pdf-tk pdf-tk
maybe-pdf-tk:

.PHONY: maybe-html-tk html-tk
maybe-html-tk:

.PHONY: maybe-TAGS-tk TAGS-tk
maybe-TAGS-tk:

.PHONY: maybe-install-info-tk install-info-tk
maybe-install-info-tk:

.PHONY: maybe-install-pdf-tk install-pdf-tk
maybe-install-pdf-tk:

.PHONY: maybe-install-html-tk install-html-tk
maybe-install-html-tk:

.PHONY: maybe-installcheck-tk installcheck-tk
maybe-installcheck-tk:

.PHONY: maybe-mostlyclean-tk mostlyclean-tk
maybe-mostlyclean-tk:

.PHONY: maybe-clean-tk clean-tk
maybe-clean-tk:

.PHONY: maybe-distclean-tk distclean-tk
maybe-distclean-tk:

.PHONY: maybe-maintainer-clean-tk maintainer-clean-tk
maybe-maintainer-clean-tk:



.PHONY: configure-libtermcap maybe-configure-libtermcap
maybe-configure-libtermcap:





.PHONY: all-libtermcap maybe-all-libtermcap
maybe-all-libtermcap:




.PHONY: check-libtermcap maybe-check-libtermcap
maybe-check-libtermcap:

.PHONY: install-libtermcap maybe-install-libtermcap
maybe-install-libtermcap:

.PHONY: install-strip-libtermcap maybe-install-strip-libtermcap
maybe-install-strip-libtermcap:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-libtermcap info-libtermcap
maybe-info-libtermcap:

.PHONY: maybe-dvi-libtermcap dvi-libtermcap
maybe-dvi-libtermcap:

.PHONY: maybe-pdf-libtermcap pdf-libtermcap
maybe-pdf-libtermcap:

.PHONY: maybe-html-libtermcap html-libtermcap
maybe-html-libtermcap:

.PHONY: maybe-TAGS-libtermcap TAGS-libtermcap
maybe-TAGS-libtermcap:

.PHONY: maybe-install-info-libtermcap install-info-libtermcap
maybe-install-info-libtermcap:

.PHONY: maybe-install-pdf-libtermcap install-pdf-libtermcap
maybe-install-pdf-libtermcap:

.PHONY: maybe-install-html-libtermcap install-html-libtermcap
maybe-install-html-libtermcap:

.PHONY: maybe-installcheck-libtermcap installcheck-libtermcap
maybe-installcheck-libtermcap:

.PHONY: maybe-mostlyclean-libtermcap mostlyclean-libtermcap
maybe-mostlyclean-libtermcap:

.PHONY: maybe-clean-libtermcap clean-libtermcap
maybe-clean-libtermcap:

.PHONY: maybe-distclean-libtermcap distclean-libtermcap
maybe-distclean-libtermcap:

.PHONY: maybe-maintainer-clean-libtermcap maintainer-clean-libtermcap
maybe-maintainer-clean-libtermcap:



.PHONY: configure-utils maybe-configure-utils
maybe-configure-utils:





.PHONY: all-utils maybe-all-utils
maybe-all-utils:




.PHONY: check-utils maybe-check-utils
maybe-check-utils:

.PHONY: install-utils maybe-install-utils
maybe-install-utils:

.PHONY: install-strip-utils maybe-install-strip-utils
maybe-install-strip-utils:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-utils info-utils
maybe-info-utils:

.PHONY: maybe-dvi-utils dvi-utils
maybe-dvi-utils:

.PHONY: maybe-pdf-utils pdf-utils
maybe-pdf-utils:

.PHONY: maybe-html-utils html-utils
maybe-html-utils:

.PHONY: maybe-TAGS-utils TAGS-utils
maybe-TAGS-utils:

.PHONY: maybe-install-info-utils install-info-utils
maybe-install-info-utils:

.PHONY: maybe-install-pdf-utils install-pdf-utils
maybe-install-pdf-utils:

.PHONY: maybe-install-html-utils install-html-utils
maybe-install-html-utils:

.PHONY: maybe-installcheck-utils installcheck-utils
maybe-installcheck-utils:

.PHONY: maybe-mostlyclean-utils mostlyclean-utils
maybe-mostlyclean-utils:

.PHONY: maybe-clean-utils clean-utils
maybe-clean-utils:

.PHONY: maybe-distclean-utils distclean-utils
maybe-distclean-utils:

.PHONY: maybe-maintainer-clean-utils maintainer-clean-utils
maybe-maintainer-clean-utils:



.PHONY: configure-gnattools maybe-configure-gnattools
maybe-configure-gnattools:





.PHONY: all-gnattools maybe-all-gnattools
maybe-all-gnattools:




.PHONY: check-gnattools maybe-check-gnattools
maybe-check-gnattools:

.PHONY: install-gnattools maybe-install-gnattools
maybe-install-gnattools:

.PHONY: install-strip-gnattools maybe-install-strip-gnattools
maybe-install-strip-gnattools:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-gnattools info-gnattools
maybe-info-gnattools:

.PHONY: maybe-dvi-gnattools dvi-gnattools
maybe-dvi-gnattools:

.PHONY: maybe-pdf-gnattools pdf-gnattools
maybe-pdf-gnattools:

.PHONY: maybe-html-gnattools html-gnattools
maybe-html-gnattools:

.PHONY: maybe-TAGS-gnattools TAGS-gnattools
maybe-TAGS-gnattools:

.PHONY: maybe-install-info-gnattools install-info-gnattools
maybe-install-info-gnattools:

.PHONY: maybe-install-pdf-gnattools install-pdf-gnattools
maybe-install-pdf-gnattools:

.PHONY: maybe-install-html-gnattools install-html-gnattools
maybe-install-html-gnattools:

.PHONY: maybe-installcheck-gnattools installcheck-gnattools
maybe-installcheck-gnattools:

.PHONY: maybe-mostlyclean-gnattools mostlyclean-gnattools
maybe-mostlyclean-gnattools:

.PHONY: maybe-clean-gnattools clean-gnattools
maybe-clean-gnattools:

.PHONY: maybe-distclean-gnattools distclean-gnattools
maybe-distclean-gnattools:

.PHONY: maybe-maintainer-clean-gnattools maintainer-clean-gnattools
maybe-maintainer-clean-gnattools:



.PHONY: configure-lto-plugin maybe-configure-lto-plugin
maybe-configure-lto-plugin:
maybe-configure-lto-plugin: configure-lto-plugin
configure-lto-plugin: 
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	test ! -f $(HOST_SUBDIR)/lto-plugin/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/lto-plugin ; \
	$(HOST_EXPORTS)  \
	echo Configuring in $(HOST_SUBDIR)/lto-plugin; \
	cd "$(HOST_SUBDIR)/lto-plugin" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(HOST_SUBDIR)/lto-plugin/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/lto-plugin"; \
	libsrcdir="$$s/lto-plugin"; \
	$(SHELL) $${libsrcdir}/configure \
	  $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
	  --target=${target_alias} $${srcdiroption} --enable-shared \
	  || exit 1



.PHONY: configure-stage1-lto-plugin maybe-configure-stage1-lto-plugin
maybe-configure-stage1-lto-plugin:

.PHONY: configure-stage2-lto-plugin maybe-configure-stage2-lto-plugin
maybe-configure-stage2-lto-plugin:

.PHONY: configure-stage3-lto-plugin maybe-configure-stage3-lto-plugin
maybe-configure-stage3-lto-plugin:

.PHONY: configure-stage4-lto-plugin maybe-configure-stage4-lto-plugin
maybe-configure-stage4-lto-plugin:

.PHONY: configure-stageprofile-lto-plugin maybe-configure-stageprofile-lto-plugin
maybe-configure-stageprofile-lto-plugin:

.PHONY: configure-stagefeedback-lto-plugin maybe-configure-stagefeedback-lto-plugin
maybe-configure-stagefeedback-lto-plugin:





.PHONY: all-lto-plugin maybe-all-lto-plugin
maybe-all-lto-plugin:
TARGET-lto-plugin=all
maybe-all-lto-plugin: all-lto-plugin
all-lto-plugin: configure-lto-plugin
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS)  \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)  \
		$(TARGET-lto-plugin))



.PHONY: all-stage1-lto-plugin maybe-all-stage1-lto-plugin
.PHONY: clean-stage1-lto-plugin maybe-clean-stage1-lto-plugin
maybe-all-stage1-lto-plugin:
maybe-clean-stage1-lto-plugin:


.PHONY: all-stage2-lto-plugin maybe-all-stage2-lto-plugin
.PHONY: clean-stage2-lto-plugin maybe-clean-stage2-lto-plugin
maybe-all-stage2-lto-plugin:
maybe-clean-stage2-lto-plugin:


.PHONY: all-stage3-lto-plugin maybe-all-stage3-lto-plugin
.PHONY: clean-stage3-lto-plugin maybe-clean-stage3-lto-plugin
maybe-all-stage3-lto-plugin:
maybe-clean-stage3-lto-plugin:


.PHONY: all-stage4-lto-plugin maybe-all-stage4-lto-plugin
.PHONY: clean-stage4-lto-plugin maybe-clean-stage4-lto-plugin
maybe-all-stage4-lto-plugin:
maybe-clean-stage4-lto-plugin:


.PHONY: all-stageprofile-lto-plugin maybe-all-stageprofile-lto-plugin
.PHONY: clean-stageprofile-lto-plugin maybe-clean-stageprofile-lto-plugin
maybe-all-stageprofile-lto-plugin:
maybe-clean-stageprofile-lto-plugin:


.PHONY: all-stagefeedback-lto-plugin maybe-all-stagefeedback-lto-plugin
.PHONY: clean-stagefeedback-lto-plugin maybe-clean-stagefeedback-lto-plugin
maybe-all-stagefeedback-lto-plugin:
maybe-clean-stagefeedback-lto-plugin:





.PHONY: check-lto-plugin maybe-check-lto-plugin
maybe-check-lto-plugin:
maybe-check-lto-plugin: check-lto-plugin

check-lto-plugin:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(FLAGS_TO_PASS)  check)


.PHONY: install-lto-plugin maybe-install-lto-plugin
maybe-install-lto-plugin:
maybe-install-lto-plugin: install-lto-plugin

install-lto-plugin: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(FLAGS_TO_PASS)  install)


.PHONY: install-strip-lto-plugin maybe-install-strip-lto-plugin
maybe-install-strip-lto-plugin:
maybe-install-strip-lto-plugin: install-strip-lto-plugin

install-strip-lto-plugin: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(FLAGS_TO_PASS)  install-strip)


# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-lto-plugin info-lto-plugin
maybe-info-lto-plugin:
maybe-info-lto-plugin: info-lto-plugin

info-lto-plugin: \
    configure-lto-plugin 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing info in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          info) \
	  || exit 1


.PHONY: maybe-dvi-lto-plugin dvi-lto-plugin
maybe-dvi-lto-plugin:
maybe-dvi-lto-plugin: dvi-lto-plugin

dvi-lto-plugin: \
    configure-lto-plugin 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing dvi in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          dvi) \
	  || exit 1


.PHONY: maybe-pdf-lto-plugin pdf-lto-plugin
maybe-pdf-lto-plugin:
maybe-pdf-lto-plugin: pdf-lto-plugin

pdf-lto-plugin: \
    configure-lto-plugin 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing pdf in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          pdf) \
	  || exit 1


.PHONY: maybe-html-lto-plugin html-lto-plugin
maybe-html-lto-plugin:
maybe-html-lto-plugin: html-lto-plugin

html-lto-plugin: \
    configure-lto-plugin 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing html in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          html) \
	  || exit 1


.PHONY: maybe-TAGS-lto-plugin TAGS-lto-plugin
maybe-TAGS-lto-plugin:
maybe-TAGS-lto-plugin: TAGS-lto-plugin

TAGS-lto-plugin: \
    configure-lto-plugin 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing TAGS in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          TAGS) \
	  || exit 1


.PHONY: maybe-install-info-lto-plugin install-info-lto-plugin
maybe-install-info-lto-plugin:
maybe-install-info-lto-plugin: install-info-lto-plugin

install-info-lto-plugin: \
    configure-lto-plugin \
    info-lto-plugin 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-info in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-info) \
	  || exit 1


.PHONY: maybe-install-pdf-lto-plugin install-pdf-lto-plugin
maybe-install-pdf-lto-plugin:
maybe-install-pdf-lto-plugin: install-pdf-lto-plugin

install-pdf-lto-plugin: \
    configure-lto-plugin \
    pdf-lto-plugin 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-pdf in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-pdf) \
	  || exit 1


.PHONY: maybe-install-html-lto-plugin install-html-lto-plugin
maybe-install-html-lto-plugin:
maybe-install-html-lto-plugin: install-html-lto-plugin

install-html-lto-plugin: \
    configure-lto-plugin \
    html-lto-plugin 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing install-html in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          install-html) \
	  || exit 1


.PHONY: maybe-installcheck-lto-plugin installcheck-lto-plugin
maybe-installcheck-lto-plugin:
maybe-installcheck-lto-plugin: installcheck-lto-plugin

installcheck-lto-plugin: \
    configure-lto-plugin 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing installcheck in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          installcheck) \
	  || exit 1


.PHONY: maybe-mostlyclean-lto-plugin mostlyclean-lto-plugin
maybe-mostlyclean-lto-plugin:
maybe-mostlyclean-lto-plugin: mostlyclean-lto-plugin

mostlyclean-lto-plugin: 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing mostlyclean in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          mostlyclean) \
	  || exit 1


.PHONY: maybe-clean-lto-plugin clean-lto-plugin
maybe-clean-lto-plugin:
maybe-clean-lto-plugin: clean-lto-plugin

clean-lto-plugin: 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing clean in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          clean) \
	  || exit 1


.PHONY: maybe-distclean-lto-plugin distclean-lto-plugin
maybe-distclean-lto-plugin:
maybe-distclean-lto-plugin: distclean-lto-plugin

distclean-lto-plugin: 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing distclean in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          distclean) \
	  || exit 1


.PHONY: maybe-maintainer-clean-lto-plugin maintainer-clean-lto-plugin
maybe-maintainer-clean-lto-plugin:
maybe-maintainer-clean-lto-plugin: maintainer-clean-lto-plugin

maintainer-clean-lto-plugin: 
	@[ -f ./lto-plugin/Makefile ] || exit 0; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	for flag in $(EXTRA_HOST_FLAGS) ; do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	echo "Doing maintainer-clean in lto-plugin" ; \
	(cd $(HOST_SUBDIR)/lto-plugin && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	          maintainer-clean) \
	  || exit 1




# ---------------------------------------
# Modules which run on the target machine
# ---------------------------------------




.PHONY: configure-target-libstdc++-v3 maybe-configure-target-libstdc++-v3
maybe-configure-target-libstdc++-v3:
maybe-configure-target-libstdc++-v3: configure-target-libstdc++-v3
configure-target-libstdc++-v3: 
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	echo "Checking multilib configuration for libstdc++-v3..."; \
	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
	$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
	if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
	  if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
	    rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
	  else \
	    rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
	    mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
	  fi; \
	else \
	  mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
	fi; \
	test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
	$(RAW_CXX_TARGET_EXPORTS)  \
	echo Configuring in $(TARGET_SUBDIR)/libstdc++-v3; \
	cd "$(TARGET_SUBDIR)/libstdc++-v3" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
	libsrcdir="$$s/libstdc++-v3"; \
	rm -f no-such-file || : ; \
	CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
	  $(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
	  --target=${target_alias} $${srcdiroption}  \
	  || exit 1



.PHONY: configure-stage1-target-libstdc++-v3 maybe-configure-stage1-target-libstdc++-v3
maybe-configure-stage1-target-libstdc++-v3:

.PHONY: configure-stage2-target-libstdc++-v3 maybe-configure-stage2-target-libstdc++-v3
maybe-configure-stage2-target-libstdc++-v3:

.PHONY: configure-stage3-target-libstdc++-v3 maybe-configure-stage3-target-libstdc++-v3
maybe-configure-stage3-target-libstdc++-v3:

.PHONY: configure-stage4-target-libstdc++-v3 maybe-configure-stage4-target-libstdc++-v3
maybe-configure-stage4-target-libstdc++-v3:

.PHONY: configure-stageprofile-target-libstdc++-v3 maybe-configure-stageprofile-target-libstdc++-v3
maybe-configure-stageprofile-target-libstdc++-v3:

.PHONY: configure-stagefeedback-target-libstdc++-v3 maybe-configure-stagefeedback-target-libstdc++-v3
maybe-configure-stagefeedback-target-libstdc++-v3:





.PHONY: all-target-libstdc++-v3 maybe-all-target-libstdc++-v3
maybe-all-target-libstdc++-v3:
TARGET-target-libstdc++-v3=all
maybe-all-target-libstdc++-v3: all-target-libstdc++-v3
all-target-libstdc++-v3: configure-target-libstdc++-v3
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS)  \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)'  \
		$(TARGET-target-libstdc++-v3))



.PHONY: all-stage1-target-libstdc++-v3 maybe-all-stage1-target-libstdc++-v3
.PHONY: clean-stage1-target-libstdc++-v3 maybe-clean-stage1-target-libstdc++-v3
maybe-all-stage1-target-libstdc++-v3:
maybe-clean-stage1-target-libstdc++-v3:


.PHONY: all-stage2-target-libstdc++-v3 maybe-all-stage2-target-libstdc++-v3
.PHONY: clean-stage2-target-libstdc++-v3 maybe-clean-stage2-target-libstdc++-v3
maybe-all-stage2-target-libstdc++-v3:
maybe-clean-stage2-target-libstdc++-v3:


.PHONY: all-stage3-target-libstdc++-v3 maybe-all-stage3-target-libstdc++-v3
.PHONY: clean-stage3-target-libstdc++-v3 maybe-clean-stage3-target-libstdc++-v3
maybe-all-stage3-target-libstdc++-v3:
maybe-clean-stage3-target-libstdc++-v3:


.PHONY: all-stage4-target-libstdc++-v3 maybe-all-stage4-target-libstdc++-v3
.PHONY: clean-stage4-target-libstdc++-v3 maybe-clean-stage4-target-libstdc++-v3
maybe-all-stage4-target-libstdc++-v3:
maybe-clean-stage4-target-libstdc++-v3:


.PHONY: all-stageprofile-target-libstdc++-v3 maybe-all-stageprofile-target-libstdc++-v3
.PHONY: clean-stageprofile-target-libstdc++-v3 maybe-clean-stageprofile-target-libstdc++-v3
maybe-all-stageprofile-target-libstdc++-v3:
maybe-clean-stageprofile-target-libstdc++-v3:


.PHONY: all-stagefeedback-target-libstdc++-v3 maybe-all-stagefeedback-target-libstdc++-v3
.PHONY: clean-stagefeedback-target-libstdc++-v3 maybe-clean-stagefeedback-target-libstdc++-v3
maybe-all-stagefeedback-target-libstdc++-v3:
maybe-clean-stagefeedback-target-libstdc++-v3:






.PHONY: check-target-libstdc++-v3 maybe-check-target-libstdc++-v3
maybe-check-target-libstdc++-v3:
maybe-check-target-libstdc++-v3: check-target-libstdc++-v3

check-target-libstdc++-v3:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(TARGET_FLAGS_TO_PASS)  'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)'   check)


.PHONY: install-target-libstdc++-v3 maybe-install-target-libstdc++-v3
maybe-install-target-libstdc++-v3:
maybe-install-target-libstdc++-v3: install-target-libstdc++-v3

install-target-libstdc++-v3: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(TARGET_FLAGS_TO_PASS)  install)


.PHONY: install-strip-target-libstdc++-v3 maybe-install-strip-target-libstdc++-v3
maybe-install-strip-target-libstdc++-v3:
maybe-install-strip-target-libstdc++-v3: install-strip-target-libstdc++-v3

install-strip-target-libstdc++-v3: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(TARGET_FLAGS_TO_PASS)  install-strip)


# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libstdc++-v3 info-target-libstdc++-v3
maybe-info-target-libstdc++-v3:
maybe-info-target-libstdc++-v3: info-target-libstdc++-v3

info-target-libstdc++-v3: \
    configure-target-libstdc++-v3 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing info in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           info) \
	  || exit 1


.PHONY: maybe-dvi-target-libstdc++-v3 dvi-target-libstdc++-v3
maybe-dvi-target-libstdc++-v3:
maybe-dvi-target-libstdc++-v3: dvi-target-libstdc++-v3

dvi-target-libstdc++-v3: \
    configure-target-libstdc++-v3 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing dvi in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           dvi) \
	  || exit 1


.PHONY: maybe-pdf-target-libstdc++-v3 pdf-target-libstdc++-v3
maybe-pdf-target-libstdc++-v3:
maybe-pdf-target-libstdc++-v3: pdf-target-libstdc++-v3

pdf-target-libstdc++-v3: \
    configure-target-libstdc++-v3 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing pdf in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           pdf) \
	  || exit 1


.PHONY: maybe-html-target-libstdc++-v3 html-target-libstdc++-v3
maybe-html-target-libstdc++-v3:
maybe-html-target-libstdc++-v3: html-target-libstdc++-v3

html-target-libstdc++-v3: \
    configure-target-libstdc++-v3 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing html in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           html) \
	  || exit 1


.PHONY: maybe-TAGS-target-libstdc++-v3 TAGS-target-libstdc++-v3
maybe-TAGS-target-libstdc++-v3:
maybe-TAGS-target-libstdc++-v3: TAGS-target-libstdc++-v3

TAGS-target-libstdc++-v3: \
    configure-target-libstdc++-v3 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing TAGS in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           TAGS) \
	  || exit 1


.PHONY: maybe-install-info-target-libstdc++-v3 install-info-target-libstdc++-v3
maybe-install-info-target-libstdc++-v3:
maybe-install-info-target-libstdc++-v3: install-info-target-libstdc++-v3

install-info-target-libstdc++-v3: \
    configure-target-libstdc++-v3 \
    info-target-libstdc++-v3 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing install-info in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           install-info) \
	  || exit 1


.PHONY: maybe-install-pdf-target-libstdc++-v3 install-pdf-target-libstdc++-v3
maybe-install-pdf-target-libstdc++-v3:
maybe-install-pdf-target-libstdc++-v3: install-pdf-target-libstdc++-v3

install-pdf-target-libstdc++-v3: \
    configure-target-libstdc++-v3 \
    pdf-target-libstdc++-v3 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing install-pdf in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           install-pdf) \
	  || exit 1


.PHONY: maybe-install-html-target-libstdc++-v3 install-html-target-libstdc++-v3
maybe-install-html-target-libstdc++-v3:
maybe-install-html-target-libstdc++-v3: install-html-target-libstdc++-v3

install-html-target-libstdc++-v3: \
    configure-target-libstdc++-v3 \
    html-target-libstdc++-v3 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing install-html in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           install-html) \
	  || exit 1


.PHONY: maybe-installcheck-target-libstdc++-v3 installcheck-target-libstdc++-v3
maybe-installcheck-target-libstdc++-v3:
maybe-installcheck-target-libstdc++-v3: installcheck-target-libstdc++-v3

installcheck-target-libstdc++-v3: \
    configure-target-libstdc++-v3 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing installcheck in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           installcheck) \
	  || exit 1


.PHONY: maybe-mostlyclean-target-libstdc++-v3 mostlyclean-target-libstdc++-v3
maybe-mostlyclean-target-libstdc++-v3:
maybe-mostlyclean-target-libstdc++-v3: mostlyclean-target-libstdc++-v3

mostlyclean-target-libstdc++-v3: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing mostlyclean in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           mostlyclean) \
	  || exit 1


.PHONY: maybe-clean-target-libstdc++-v3 clean-target-libstdc++-v3
maybe-clean-target-libstdc++-v3:
maybe-clean-target-libstdc++-v3: clean-target-libstdc++-v3

clean-target-libstdc++-v3: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing clean in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           clean) \
	  || exit 1


.PHONY: maybe-distclean-target-libstdc++-v3 distclean-target-libstdc++-v3
maybe-distclean-target-libstdc++-v3:
maybe-distclean-target-libstdc++-v3: distclean-target-libstdc++-v3

distclean-target-libstdc++-v3: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing distclean in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           distclean) \
	  || exit 1


.PHONY: maybe-maintainer-clean-target-libstdc++-v3 maintainer-clean-target-libstdc++-v3
maybe-maintainer-clean-target-libstdc++-v3:
maybe-maintainer-clean-target-libstdc++-v3: maintainer-clean-target-libstdc++-v3

maintainer-clean-target-libstdc++-v3: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(RAW_CXX_TARGET_EXPORTS) \
	echo "Doing maintainer-clean in $(TARGET_SUBDIR)/libstdc++-v3" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           maintainer-clean) \
	  || exit 1






.PHONY: configure-target-libmudflap maybe-configure-target-libmudflap
maybe-configure-target-libmudflap:





.PHONY: all-target-libmudflap maybe-all-target-libmudflap
maybe-all-target-libmudflap:





.PHONY: check-target-libmudflap maybe-check-target-libmudflap
maybe-check-target-libmudflap:

.PHONY: install-target-libmudflap maybe-install-target-libmudflap
maybe-install-target-libmudflap:

.PHONY: install-strip-target-libmudflap maybe-install-strip-target-libmudflap
maybe-install-strip-target-libmudflap:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libmudflap info-target-libmudflap
maybe-info-target-libmudflap:

.PHONY: maybe-dvi-target-libmudflap dvi-target-libmudflap
maybe-dvi-target-libmudflap:

.PHONY: maybe-pdf-target-libmudflap pdf-target-libmudflap
maybe-pdf-target-libmudflap:

.PHONY: maybe-html-target-libmudflap html-target-libmudflap
maybe-html-target-libmudflap:

.PHONY: maybe-TAGS-target-libmudflap TAGS-target-libmudflap
maybe-TAGS-target-libmudflap:

.PHONY: maybe-install-info-target-libmudflap install-info-target-libmudflap
maybe-install-info-target-libmudflap:

.PHONY: maybe-install-pdf-target-libmudflap install-pdf-target-libmudflap
maybe-install-pdf-target-libmudflap:

.PHONY: maybe-install-html-target-libmudflap install-html-target-libmudflap
maybe-install-html-target-libmudflap:

.PHONY: maybe-installcheck-target-libmudflap installcheck-target-libmudflap
maybe-installcheck-target-libmudflap:

.PHONY: maybe-mostlyclean-target-libmudflap mostlyclean-target-libmudflap
maybe-mostlyclean-target-libmudflap:

.PHONY: maybe-clean-target-libmudflap clean-target-libmudflap
maybe-clean-target-libmudflap:

.PHONY: maybe-distclean-target-libmudflap distclean-target-libmudflap
maybe-distclean-target-libmudflap:

.PHONY: maybe-maintainer-clean-target-libmudflap maintainer-clean-target-libmudflap
maybe-maintainer-clean-target-libmudflap:





.PHONY: configure-target-libssp maybe-configure-target-libssp
maybe-configure-target-libssp:





.PHONY: all-target-libssp maybe-all-target-libssp
maybe-all-target-libssp:





.PHONY: check-target-libssp maybe-check-target-libssp
maybe-check-target-libssp:

.PHONY: install-target-libssp maybe-install-target-libssp
maybe-install-target-libssp:

.PHONY: install-strip-target-libssp maybe-install-strip-target-libssp
maybe-install-strip-target-libssp:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libssp info-target-libssp
maybe-info-target-libssp:

.PHONY: maybe-dvi-target-libssp dvi-target-libssp
maybe-dvi-target-libssp:

.PHONY: maybe-pdf-target-libssp pdf-target-libssp
maybe-pdf-target-libssp:

.PHONY: maybe-html-target-libssp html-target-libssp
maybe-html-target-libssp:

.PHONY: maybe-TAGS-target-libssp TAGS-target-libssp
maybe-TAGS-target-libssp:

.PHONY: maybe-install-info-target-libssp install-info-target-libssp
maybe-install-info-target-libssp:

.PHONY: maybe-install-pdf-target-libssp install-pdf-target-libssp
maybe-install-pdf-target-libssp:

.PHONY: maybe-install-html-target-libssp install-html-target-libssp
maybe-install-html-target-libssp:

.PHONY: maybe-installcheck-target-libssp installcheck-target-libssp
maybe-installcheck-target-libssp:

.PHONY: maybe-mostlyclean-target-libssp mostlyclean-target-libssp
maybe-mostlyclean-target-libssp:

.PHONY: maybe-clean-target-libssp clean-target-libssp
maybe-clean-target-libssp:

.PHONY: maybe-distclean-target-libssp distclean-target-libssp
maybe-distclean-target-libssp:

.PHONY: maybe-maintainer-clean-target-libssp maintainer-clean-target-libssp
maybe-maintainer-clean-target-libssp:





.PHONY: configure-target-newlib maybe-configure-target-newlib
maybe-configure-target-newlib:





.PHONY: all-target-newlib maybe-all-target-newlib
maybe-all-target-newlib:





.PHONY: check-target-newlib maybe-check-target-newlib
maybe-check-target-newlib:

.PHONY: install-target-newlib maybe-install-target-newlib
maybe-install-target-newlib:

.PHONY: install-strip-target-newlib maybe-install-strip-target-newlib
maybe-install-strip-target-newlib:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-newlib info-target-newlib
maybe-info-target-newlib:

.PHONY: maybe-dvi-target-newlib dvi-target-newlib
maybe-dvi-target-newlib:

.PHONY: maybe-pdf-target-newlib pdf-target-newlib
maybe-pdf-target-newlib:

.PHONY: maybe-html-target-newlib html-target-newlib
maybe-html-target-newlib:

.PHONY: maybe-TAGS-target-newlib TAGS-target-newlib
maybe-TAGS-target-newlib:

.PHONY: maybe-install-info-target-newlib install-info-target-newlib
maybe-install-info-target-newlib:

.PHONY: maybe-install-pdf-target-newlib install-pdf-target-newlib
maybe-install-pdf-target-newlib:

.PHONY: maybe-install-html-target-newlib install-html-target-newlib
maybe-install-html-target-newlib:

.PHONY: maybe-installcheck-target-newlib installcheck-target-newlib
maybe-installcheck-target-newlib:

.PHONY: maybe-mostlyclean-target-newlib mostlyclean-target-newlib
maybe-mostlyclean-target-newlib:

.PHONY: maybe-clean-target-newlib clean-target-newlib
maybe-clean-target-newlib:

.PHONY: maybe-distclean-target-newlib distclean-target-newlib
maybe-distclean-target-newlib:

.PHONY: maybe-maintainer-clean-target-newlib maintainer-clean-target-newlib
maybe-maintainer-clean-target-newlib:





.PHONY: configure-target-libgcc maybe-configure-target-libgcc
maybe-configure-target-libgcc:
maybe-configure-target-libgcc: configure-target-libgcc
configure-target-libgcc: 
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	echo "Checking multilib configuration for libgcc..."; \
	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
	$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
	if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
	  if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
	    rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
	  else \
	    rm -f $(TARGET_SUBDIR)/libgcc/Makefile; \
	    mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
	  fi; \
	else \
	  mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
	fi; \
	test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
	$(NORMAL_TARGET_EXPORTS)  \
	echo Configuring in $(TARGET_SUBDIR)/libgcc; \
	cd "$(TARGET_SUBDIR)/libgcc" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(TARGET_SUBDIR)/libgcc/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/libgcc"; \
	libsrcdir="$$s/libgcc"; \
	rm -f no-such-file || : ; \
	CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
	  $(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
	  --target=${target_alias} $${srcdiroption}  \
	  || exit 1



.PHONY: configure-stage1-target-libgcc maybe-configure-stage1-target-libgcc
maybe-configure-stage1-target-libgcc:

.PHONY: configure-stage2-target-libgcc maybe-configure-stage2-target-libgcc
maybe-configure-stage2-target-libgcc:

.PHONY: configure-stage3-target-libgcc maybe-configure-stage3-target-libgcc
maybe-configure-stage3-target-libgcc:

.PHONY: configure-stage4-target-libgcc maybe-configure-stage4-target-libgcc
maybe-configure-stage4-target-libgcc:

.PHONY: configure-stageprofile-target-libgcc maybe-configure-stageprofile-target-libgcc
maybe-configure-stageprofile-target-libgcc:

.PHONY: configure-stagefeedback-target-libgcc maybe-configure-stagefeedback-target-libgcc
maybe-configure-stagefeedback-target-libgcc:





.PHONY: all-target-libgcc maybe-all-target-libgcc
maybe-all-target-libgcc:
TARGET-target-libgcc=all
maybe-all-target-libgcc: all-target-libgcc
all-target-libgcc: configure-target-libgcc
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS)  \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)  \
		$(TARGET-target-libgcc))



.PHONY: all-stage1-target-libgcc maybe-all-stage1-target-libgcc
.PHONY: clean-stage1-target-libgcc maybe-clean-stage1-target-libgcc
maybe-all-stage1-target-libgcc:
maybe-clean-stage1-target-libgcc:


.PHONY: all-stage2-target-libgcc maybe-all-stage2-target-libgcc
.PHONY: clean-stage2-target-libgcc maybe-clean-stage2-target-libgcc
maybe-all-stage2-target-libgcc:
maybe-clean-stage2-target-libgcc:


.PHONY: all-stage3-target-libgcc maybe-all-stage3-target-libgcc
.PHONY: clean-stage3-target-libgcc maybe-clean-stage3-target-libgcc
maybe-all-stage3-target-libgcc:
maybe-clean-stage3-target-libgcc:


.PHONY: all-stage4-target-libgcc maybe-all-stage4-target-libgcc
.PHONY: clean-stage4-target-libgcc maybe-clean-stage4-target-libgcc
maybe-all-stage4-target-libgcc:
maybe-clean-stage4-target-libgcc:


.PHONY: all-stageprofile-target-libgcc maybe-all-stageprofile-target-libgcc
.PHONY: clean-stageprofile-target-libgcc maybe-clean-stageprofile-target-libgcc
maybe-all-stageprofile-target-libgcc:
maybe-clean-stageprofile-target-libgcc:


.PHONY: all-stagefeedback-target-libgcc maybe-all-stagefeedback-target-libgcc
.PHONY: clean-stagefeedback-target-libgcc maybe-clean-stagefeedback-target-libgcc
maybe-all-stagefeedback-target-libgcc:
maybe-clean-stagefeedback-target-libgcc:






.PHONY: check-target-libgcc maybe-check-target-libgcc
maybe-check-target-libgcc:
maybe-check-target-libgcc: check-target-libgcc

# Dummy target for uncheckable module.
check-target-libgcc:


.PHONY: install-target-libgcc maybe-install-target-libgcc
maybe-install-target-libgcc:
maybe-install-target-libgcc: install-target-libgcc

install-target-libgcc: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(TARGET_FLAGS_TO_PASS)  install)


.PHONY: install-strip-target-libgcc maybe-install-strip-target-libgcc
maybe-install-strip-target-libgcc:
maybe-install-strip-target-libgcc: install-strip-target-libgcc

install-strip-target-libgcc: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(TARGET_FLAGS_TO_PASS)  install-strip)


# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libgcc info-target-libgcc
maybe-info-target-libgcc:
maybe-info-target-libgcc: info-target-libgcc

info-target-libgcc: \
    configure-target-libgcc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing info in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           info) \
	  || exit 1


.PHONY: maybe-dvi-target-libgcc dvi-target-libgcc
maybe-dvi-target-libgcc:
maybe-dvi-target-libgcc: dvi-target-libgcc

dvi-target-libgcc: \
    configure-target-libgcc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing dvi in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           dvi) \
	  || exit 1


.PHONY: maybe-pdf-target-libgcc pdf-target-libgcc
maybe-pdf-target-libgcc:
maybe-pdf-target-libgcc: pdf-target-libgcc

pdf-target-libgcc: \
    configure-target-libgcc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing pdf in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           pdf) \
	  || exit 1


.PHONY: maybe-html-target-libgcc html-target-libgcc
maybe-html-target-libgcc:
maybe-html-target-libgcc: html-target-libgcc

html-target-libgcc: \
    configure-target-libgcc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing html in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           html) \
	  || exit 1


.PHONY: maybe-TAGS-target-libgcc TAGS-target-libgcc
maybe-TAGS-target-libgcc:
maybe-TAGS-target-libgcc: TAGS-target-libgcc

TAGS-target-libgcc: \
    configure-target-libgcc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing TAGS in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           TAGS) \
	  || exit 1


.PHONY: maybe-install-info-target-libgcc install-info-target-libgcc
maybe-install-info-target-libgcc:
maybe-install-info-target-libgcc: install-info-target-libgcc

install-info-target-libgcc: \
    configure-target-libgcc \
    info-target-libgcc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing install-info in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           install-info) \
	  || exit 1


.PHONY: maybe-install-pdf-target-libgcc install-pdf-target-libgcc
maybe-install-pdf-target-libgcc:
maybe-install-pdf-target-libgcc: install-pdf-target-libgcc

install-pdf-target-libgcc: \
    configure-target-libgcc \
    pdf-target-libgcc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing install-pdf in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           install-pdf) \
	  || exit 1


.PHONY: maybe-install-html-target-libgcc install-html-target-libgcc
maybe-install-html-target-libgcc:
maybe-install-html-target-libgcc: install-html-target-libgcc

install-html-target-libgcc: \
    configure-target-libgcc \
    html-target-libgcc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing install-html in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           install-html) \
	  || exit 1


.PHONY: maybe-installcheck-target-libgcc installcheck-target-libgcc
maybe-installcheck-target-libgcc:
maybe-installcheck-target-libgcc: installcheck-target-libgcc

installcheck-target-libgcc: \
    configure-target-libgcc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing installcheck in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           installcheck) \
	  || exit 1


.PHONY: maybe-mostlyclean-target-libgcc mostlyclean-target-libgcc
maybe-mostlyclean-target-libgcc:
maybe-mostlyclean-target-libgcc: mostlyclean-target-libgcc

mostlyclean-target-libgcc: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing mostlyclean in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           mostlyclean) \
	  || exit 1


.PHONY: maybe-clean-target-libgcc clean-target-libgcc
maybe-clean-target-libgcc:
maybe-clean-target-libgcc: clean-target-libgcc

clean-target-libgcc: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing clean in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           clean) \
	  || exit 1


.PHONY: maybe-distclean-target-libgcc distclean-target-libgcc
maybe-distclean-target-libgcc:
maybe-distclean-target-libgcc: distclean-target-libgcc

distclean-target-libgcc: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing distclean in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           distclean) \
	  || exit 1


.PHONY: maybe-maintainer-clean-target-libgcc maintainer-clean-target-libgcc
maybe-maintainer-clean-target-libgcc:
maybe-maintainer-clean-target-libgcc: maintainer-clean-target-libgcc

maintainer-clean-target-libgcc: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing maintainer-clean in $(TARGET_SUBDIR)/libgcc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libgcc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           maintainer-clean) \
	  || exit 1






.PHONY: configure-target-libquadmath maybe-configure-target-libquadmath
maybe-configure-target-libquadmath:
maybe-configure-target-libquadmath: configure-target-libquadmath
configure-target-libquadmath: 
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	echo "Checking multilib configuration for libquadmath..."; \
	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libquadmath ; \
	$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libquadmath/multilib.tmp 2> /dev/null ; \
	if test -r $(TARGET_SUBDIR)/libquadmath/multilib.out; then \
	  if cmp -s $(TARGET_SUBDIR)/libquadmath/multilib.tmp $(TARGET_SUBDIR)/libquadmath/multilib.out; then \
	    rm -f $(TARGET_SUBDIR)/libquadmath/multilib.tmp; \
	  else \
	    rm -f $(TARGET_SUBDIR)/libquadmath/Makefile; \
	    mv $(TARGET_SUBDIR)/libquadmath/multilib.tmp $(TARGET_SUBDIR)/libquadmath/multilib.out; \
	  fi; \
	else \
	  mv $(TARGET_SUBDIR)/libquadmath/multilib.tmp $(TARGET_SUBDIR)/libquadmath/multilib.out; \
	fi; \
	test ! -f $(TARGET_SUBDIR)/libquadmath/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libquadmath ; \
	$(NORMAL_TARGET_EXPORTS)  \
	echo Configuring in $(TARGET_SUBDIR)/libquadmath; \
	cd "$(TARGET_SUBDIR)/libquadmath" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(TARGET_SUBDIR)/libquadmath/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/libquadmath"; \
	libsrcdir="$$s/libquadmath"; \
	rm -f no-such-file || : ; \
	CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
	  $(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
	  --target=${target_alias} $${srcdiroption}  \
	  || exit 1





.PHONY: all-target-libquadmath maybe-all-target-libquadmath
maybe-all-target-libquadmath:
TARGET-target-libquadmath=all
maybe-all-target-libquadmath: all-target-libquadmath
all-target-libquadmath: configure-target-libquadmath
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS)  \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)  \
		$(TARGET-target-libquadmath))





.PHONY: check-target-libquadmath maybe-check-target-libquadmath
maybe-check-target-libquadmath:
maybe-check-target-libquadmath: check-target-libquadmath

check-target-libquadmath:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(TARGET_FLAGS_TO_PASS)   check)


.PHONY: install-target-libquadmath maybe-install-target-libquadmath
maybe-install-target-libquadmath:
maybe-install-target-libquadmath: install-target-libquadmath

install-target-libquadmath: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(TARGET_FLAGS_TO_PASS)  install)


.PHONY: install-strip-target-libquadmath maybe-install-strip-target-libquadmath
maybe-install-strip-target-libquadmath:
maybe-install-strip-target-libquadmath: install-strip-target-libquadmath

install-strip-target-libquadmath: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(TARGET_FLAGS_TO_PASS)  install-strip)


# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libquadmath info-target-libquadmath
maybe-info-target-libquadmath:
maybe-info-target-libquadmath: info-target-libquadmath

info-target-libquadmath: \
    configure-target-libquadmath 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing info in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           info) \
	  || exit 1


.PHONY: maybe-dvi-target-libquadmath dvi-target-libquadmath
maybe-dvi-target-libquadmath:
maybe-dvi-target-libquadmath: dvi-target-libquadmath

dvi-target-libquadmath: \
    configure-target-libquadmath 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing dvi in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           dvi) \
	  || exit 1


.PHONY: maybe-pdf-target-libquadmath pdf-target-libquadmath
maybe-pdf-target-libquadmath:
maybe-pdf-target-libquadmath: pdf-target-libquadmath

pdf-target-libquadmath: \
    configure-target-libquadmath 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing pdf in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           pdf) \
	  || exit 1


.PHONY: maybe-html-target-libquadmath html-target-libquadmath
maybe-html-target-libquadmath:
maybe-html-target-libquadmath: html-target-libquadmath

html-target-libquadmath: \
    configure-target-libquadmath 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing html in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           html) \
	  || exit 1


.PHONY: maybe-TAGS-target-libquadmath TAGS-target-libquadmath
maybe-TAGS-target-libquadmath:
maybe-TAGS-target-libquadmath: TAGS-target-libquadmath

TAGS-target-libquadmath: \
    configure-target-libquadmath 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing TAGS in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           TAGS) \
	  || exit 1


.PHONY: maybe-install-info-target-libquadmath install-info-target-libquadmath
maybe-install-info-target-libquadmath:
maybe-install-info-target-libquadmath: install-info-target-libquadmath

install-info-target-libquadmath: \
    configure-target-libquadmath \
    info-target-libquadmath 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing install-info in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           install-info) \
	  || exit 1


.PHONY: maybe-install-pdf-target-libquadmath install-pdf-target-libquadmath
maybe-install-pdf-target-libquadmath:
maybe-install-pdf-target-libquadmath: install-pdf-target-libquadmath

install-pdf-target-libquadmath: \
    configure-target-libquadmath \
    pdf-target-libquadmath 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing install-pdf in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           install-pdf) \
	  || exit 1


.PHONY: maybe-install-html-target-libquadmath install-html-target-libquadmath
maybe-install-html-target-libquadmath:
maybe-install-html-target-libquadmath: install-html-target-libquadmath

install-html-target-libquadmath: \
    configure-target-libquadmath \
    html-target-libquadmath 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing install-html in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           install-html) \
	  || exit 1


.PHONY: maybe-installcheck-target-libquadmath installcheck-target-libquadmath
maybe-installcheck-target-libquadmath:
maybe-installcheck-target-libquadmath: installcheck-target-libquadmath

installcheck-target-libquadmath: \
    configure-target-libquadmath 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing installcheck in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           installcheck) \
	  || exit 1


.PHONY: maybe-mostlyclean-target-libquadmath mostlyclean-target-libquadmath
maybe-mostlyclean-target-libquadmath:
maybe-mostlyclean-target-libquadmath: mostlyclean-target-libquadmath

mostlyclean-target-libquadmath: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing mostlyclean in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           mostlyclean) \
	  || exit 1


.PHONY: maybe-clean-target-libquadmath clean-target-libquadmath
maybe-clean-target-libquadmath:
maybe-clean-target-libquadmath: clean-target-libquadmath

clean-target-libquadmath: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing clean in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           clean) \
	  || exit 1


.PHONY: maybe-distclean-target-libquadmath distclean-target-libquadmath
maybe-distclean-target-libquadmath:
maybe-distclean-target-libquadmath: distclean-target-libquadmath

distclean-target-libquadmath: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing distclean in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           distclean) \
	  || exit 1


.PHONY: maybe-maintainer-clean-target-libquadmath maintainer-clean-target-libquadmath
maybe-maintainer-clean-target-libquadmath:
maybe-maintainer-clean-target-libquadmath: maintainer-clean-target-libquadmath

maintainer-clean-target-libquadmath: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing maintainer-clean in $(TARGET_SUBDIR)/libquadmath" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libquadmath && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           maintainer-clean) \
	  || exit 1






.PHONY: configure-target-libgfortran maybe-configure-target-libgfortran
maybe-configure-target-libgfortran:





.PHONY: all-target-libgfortran maybe-all-target-libgfortran
maybe-all-target-libgfortran:





.PHONY: check-target-libgfortran maybe-check-target-libgfortran
maybe-check-target-libgfortran:

.PHONY: install-target-libgfortran maybe-install-target-libgfortran
maybe-install-target-libgfortran:

.PHONY: install-strip-target-libgfortran maybe-install-strip-target-libgfortran
maybe-install-strip-target-libgfortran:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libgfortran info-target-libgfortran
maybe-info-target-libgfortran:

.PHONY: maybe-dvi-target-libgfortran dvi-target-libgfortran
maybe-dvi-target-libgfortran:

.PHONY: maybe-pdf-target-libgfortran pdf-target-libgfortran
maybe-pdf-target-libgfortran:

.PHONY: maybe-html-target-libgfortran html-target-libgfortran
maybe-html-target-libgfortran:

.PHONY: maybe-TAGS-target-libgfortran TAGS-target-libgfortran
maybe-TAGS-target-libgfortran:

.PHONY: maybe-install-info-target-libgfortran install-info-target-libgfortran
maybe-install-info-target-libgfortran:

.PHONY: maybe-install-pdf-target-libgfortran install-pdf-target-libgfortran
maybe-install-pdf-target-libgfortran:

.PHONY: maybe-install-html-target-libgfortran install-html-target-libgfortran
maybe-install-html-target-libgfortran:

.PHONY: maybe-installcheck-target-libgfortran installcheck-target-libgfortran
maybe-installcheck-target-libgfortran:

.PHONY: maybe-mostlyclean-target-libgfortran mostlyclean-target-libgfortran
maybe-mostlyclean-target-libgfortran:

.PHONY: maybe-clean-target-libgfortran clean-target-libgfortran
maybe-clean-target-libgfortran:

.PHONY: maybe-distclean-target-libgfortran distclean-target-libgfortran
maybe-distclean-target-libgfortran:

.PHONY: maybe-maintainer-clean-target-libgfortran maintainer-clean-target-libgfortran
maybe-maintainer-clean-target-libgfortran:





.PHONY: configure-target-libobjc maybe-configure-target-libobjc
maybe-configure-target-libobjc:
maybe-configure-target-libobjc: configure-target-libobjc
configure-target-libobjc: 
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	echo "Checking multilib configuration for libobjc..."; \
	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libobjc ; \
	$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libobjc/multilib.tmp 2> /dev/null ; \
	if test -r $(TARGET_SUBDIR)/libobjc/multilib.out; then \
	  if cmp -s $(TARGET_SUBDIR)/libobjc/multilib.tmp $(TARGET_SUBDIR)/libobjc/multilib.out; then \
	    rm -f $(TARGET_SUBDIR)/libobjc/multilib.tmp; \
	  else \
	    rm -f $(TARGET_SUBDIR)/libobjc/Makefile; \
	    mv $(TARGET_SUBDIR)/libobjc/multilib.tmp $(TARGET_SUBDIR)/libobjc/multilib.out; \
	  fi; \
	else \
	  mv $(TARGET_SUBDIR)/libobjc/multilib.tmp $(TARGET_SUBDIR)/libobjc/multilib.out; \
	fi; \
	test ! -f $(TARGET_SUBDIR)/libobjc/Makefile || exit 0; \
	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libobjc ; \
	$(NORMAL_TARGET_EXPORTS)  \
	echo Configuring in $(TARGET_SUBDIR)/libobjc; \
	cd "$(TARGET_SUBDIR)/libobjc" || exit 1; \
	case $(srcdir) in \
	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
	  *) topdir=`echo $(TARGET_SUBDIR)/libobjc/ | \
		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
	esac; \
	srcdiroption="--srcdir=$${topdir}/libobjc"; \
	libsrcdir="$$s/libobjc"; \
	rm -f no-such-file || : ; \
	CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
	  $(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
	  --target=${target_alias} $${srcdiroption}  \
	  || exit 1





.PHONY: all-target-libobjc maybe-all-target-libobjc
maybe-all-target-libobjc:
TARGET-target-libobjc=all
maybe-all-target-libobjc: all-target-libobjc
all-target-libobjc: configure-target-libobjc
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS)  \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)  \
		$(TARGET-target-libobjc))





.PHONY: check-target-libobjc maybe-check-target-libobjc
maybe-check-target-libobjc:
maybe-check-target-libobjc: check-target-libobjc

check-target-libobjc:
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(TARGET_FLAGS_TO_PASS)   check)


.PHONY: install-target-libobjc maybe-install-target-libobjc
maybe-install-target-libobjc:
maybe-install-target-libobjc: install-target-libobjc

install-target-libobjc: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(TARGET_FLAGS_TO_PASS)  install)


.PHONY: install-strip-target-libobjc maybe-install-strip-target-libobjc
maybe-install-strip-target-libobjc:
maybe-install-strip-target-libobjc: install-strip-target-libobjc

install-strip-target-libobjc: installdirs
	@: $(MAKE); $(unstage)
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(TARGET_FLAGS_TO_PASS)  install-strip)


# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libobjc info-target-libobjc
maybe-info-target-libobjc:
maybe-info-target-libobjc: info-target-libobjc

info-target-libobjc: \
    configure-target-libobjc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing info in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           info) \
	  || exit 1


.PHONY: maybe-dvi-target-libobjc dvi-target-libobjc
maybe-dvi-target-libobjc:
maybe-dvi-target-libobjc: dvi-target-libobjc

dvi-target-libobjc: \
    configure-target-libobjc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing dvi in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           dvi) \
	  || exit 1


.PHONY: maybe-pdf-target-libobjc pdf-target-libobjc
maybe-pdf-target-libobjc:
maybe-pdf-target-libobjc: pdf-target-libobjc

pdf-target-libobjc: \
    configure-target-libobjc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing pdf in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           pdf) \
	  || exit 1


.PHONY: maybe-html-target-libobjc html-target-libobjc
maybe-html-target-libobjc:
maybe-html-target-libobjc: html-target-libobjc

html-target-libobjc: \
    configure-target-libobjc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing html in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           html) \
	  || exit 1


.PHONY: maybe-TAGS-target-libobjc TAGS-target-libobjc
maybe-TAGS-target-libobjc:
maybe-TAGS-target-libobjc: TAGS-target-libobjc

TAGS-target-libobjc: \
    configure-target-libobjc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing TAGS in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           TAGS) \
	  || exit 1


.PHONY: maybe-install-info-target-libobjc install-info-target-libobjc
maybe-install-info-target-libobjc:
maybe-install-info-target-libobjc: install-info-target-libobjc

install-info-target-libobjc: \
    configure-target-libobjc \
    info-target-libobjc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing install-info in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           install-info) \
	  || exit 1


.PHONY: maybe-install-pdf-target-libobjc install-pdf-target-libobjc
maybe-install-pdf-target-libobjc:
maybe-install-pdf-target-libobjc: install-pdf-target-libobjc

install-pdf-target-libobjc: \
    configure-target-libobjc \
    pdf-target-libobjc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing install-pdf in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           install-pdf) \
	  || exit 1


.PHONY: maybe-install-html-target-libobjc install-html-target-libobjc
maybe-install-html-target-libobjc:
maybe-install-html-target-libobjc: install-html-target-libobjc

install-html-target-libobjc: \
    configure-target-libobjc \
    html-target-libobjc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing install-html in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           install-html) \
	  || exit 1


.PHONY: maybe-installcheck-target-libobjc installcheck-target-libobjc
maybe-installcheck-target-libobjc:
maybe-installcheck-target-libobjc: installcheck-target-libobjc

installcheck-target-libobjc: \
    configure-target-libobjc 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing installcheck in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           installcheck) \
	  || exit 1


.PHONY: maybe-mostlyclean-target-libobjc mostlyclean-target-libobjc
maybe-mostlyclean-target-libobjc:
maybe-mostlyclean-target-libobjc: mostlyclean-target-libobjc

mostlyclean-target-libobjc: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing mostlyclean in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           mostlyclean) \
	  || exit 1


.PHONY: maybe-clean-target-libobjc clean-target-libobjc
maybe-clean-target-libobjc:
maybe-clean-target-libobjc: clean-target-libobjc

clean-target-libobjc: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing clean in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           clean) \
	  || exit 1


.PHONY: maybe-distclean-target-libobjc distclean-target-libobjc
maybe-distclean-target-libobjc:
maybe-distclean-target-libobjc: distclean-target-libobjc

distclean-target-libobjc: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing distclean in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           distclean) \
	  || exit 1


.PHONY: maybe-maintainer-clean-target-libobjc maintainer-clean-target-libobjc
maybe-maintainer-clean-target-libobjc:
maybe-maintainer-clean-target-libobjc: maintainer-clean-target-libobjc

maintainer-clean-target-libobjc: 
	@: $(MAKE); $(unstage)
	@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(NORMAL_TARGET_EXPORTS) \
	echo "Doing maintainer-clean in $(TARGET_SUBDIR)/libobjc" ; \
	for flag in $(EXTRA_TARGET_FLAGS); do \
	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
	done; \
	(cd $(TARGET_SUBDIR)/libobjc && \
	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
	          "RANLIB=$${RANLIB}" \
	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
	           maintainer-clean) \
	  || exit 1






.PHONY: configure-target-libgo maybe-configure-target-libgo
maybe-configure-target-libgo:





.PHONY: all-target-libgo maybe-all-target-libgo
maybe-all-target-libgo:





.PHONY: check-target-libgo maybe-check-target-libgo
maybe-check-target-libgo:

.PHONY: install-target-libgo maybe-install-target-libgo
maybe-install-target-libgo:

.PHONY: install-strip-target-libgo maybe-install-strip-target-libgo
maybe-install-strip-target-libgo:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libgo info-target-libgo
maybe-info-target-libgo:

.PHONY: maybe-dvi-target-libgo dvi-target-libgo
maybe-dvi-target-libgo:

.PHONY: maybe-pdf-target-libgo pdf-target-libgo
maybe-pdf-target-libgo:

.PHONY: maybe-html-target-libgo html-target-libgo
maybe-html-target-libgo:

.PHONY: maybe-TAGS-target-libgo TAGS-target-libgo
maybe-TAGS-target-libgo:

.PHONY: maybe-install-info-target-libgo install-info-target-libgo
maybe-install-info-target-libgo:

.PHONY: maybe-install-pdf-target-libgo install-pdf-target-libgo
maybe-install-pdf-target-libgo:

.PHONY: maybe-install-html-target-libgo install-html-target-libgo
maybe-install-html-target-libgo:

.PHONY: maybe-installcheck-target-libgo installcheck-target-libgo
maybe-installcheck-target-libgo:

.PHONY: maybe-mostlyclean-target-libgo mostlyclean-target-libgo
maybe-mostlyclean-target-libgo:

.PHONY: maybe-clean-target-libgo clean-target-libgo
maybe-clean-target-libgo:

.PHONY: maybe-distclean-target-libgo distclean-target-libgo
maybe-distclean-target-libgo:

.PHONY: maybe-maintainer-clean-target-libgo maintainer-clean-target-libgo
maybe-maintainer-clean-target-libgo:





.PHONY: configure-target-libtermcap maybe-configure-target-libtermcap
maybe-configure-target-libtermcap:





.PHONY: all-target-libtermcap maybe-all-target-libtermcap
maybe-all-target-libtermcap:





.PHONY: check-target-libtermcap maybe-check-target-libtermcap
maybe-check-target-libtermcap:

.PHONY: install-target-libtermcap maybe-install-target-libtermcap
maybe-install-target-libtermcap:

.PHONY: install-strip-target-libtermcap maybe-install-strip-target-libtermcap
maybe-install-strip-target-libtermcap:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libtermcap info-target-libtermcap
maybe-info-target-libtermcap:

.PHONY: maybe-dvi-target-libtermcap dvi-target-libtermcap
maybe-dvi-target-libtermcap:

.PHONY: maybe-pdf-target-libtermcap pdf-target-libtermcap
maybe-pdf-target-libtermcap:

.PHONY: maybe-html-target-libtermcap html-target-libtermcap
maybe-html-target-libtermcap:

.PHONY: maybe-TAGS-target-libtermcap TAGS-target-libtermcap
maybe-TAGS-target-libtermcap:

.PHONY: maybe-install-info-target-libtermcap install-info-target-libtermcap
maybe-install-info-target-libtermcap:

.PHONY: maybe-install-pdf-target-libtermcap install-pdf-target-libtermcap
maybe-install-pdf-target-libtermcap:

.PHONY: maybe-install-html-target-libtermcap install-html-target-libtermcap
maybe-install-html-target-libtermcap:

.PHONY: maybe-installcheck-target-libtermcap installcheck-target-libtermcap
maybe-installcheck-target-libtermcap:

.PHONY: maybe-mostlyclean-target-libtermcap mostlyclean-target-libtermcap
maybe-mostlyclean-target-libtermcap:

.PHONY: maybe-clean-target-libtermcap clean-target-libtermcap
maybe-clean-target-libtermcap:

.PHONY: maybe-distclean-target-libtermcap distclean-target-libtermcap
maybe-distclean-target-libtermcap:

.PHONY: maybe-maintainer-clean-target-libtermcap maintainer-clean-target-libtermcap
maybe-maintainer-clean-target-libtermcap:





.PHONY: configure-target-winsup maybe-configure-target-winsup
maybe-configure-target-winsup:





.PHONY: all-target-winsup maybe-all-target-winsup
maybe-all-target-winsup:





.PHONY: check-target-winsup maybe-check-target-winsup
maybe-check-target-winsup:

.PHONY: install-target-winsup maybe-install-target-winsup
maybe-install-target-winsup:

.PHONY: install-strip-target-winsup maybe-install-strip-target-winsup
maybe-install-strip-target-winsup:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-winsup info-target-winsup
maybe-info-target-winsup:

.PHONY: maybe-dvi-target-winsup dvi-target-winsup
maybe-dvi-target-winsup:

.PHONY: maybe-pdf-target-winsup pdf-target-winsup
maybe-pdf-target-winsup:

.PHONY: maybe-html-target-winsup html-target-winsup
maybe-html-target-winsup:

.PHONY: maybe-TAGS-target-winsup TAGS-target-winsup
maybe-TAGS-target-winsup:

.PHONY: maybe-install-info-target-winsup install-info-target-winsup
maybe-install-info-target-winsup:

.PHONY: maybe-install-pdf-target-winsup install-pdf-target-winsup
maybe-install-pdf-target-winsup:

.PHONY: maybe-install-html-target-winsup install-html-target-winsup
maybe-install-html-target-winsup:

.PHONY: maybe-installcheck-target-winsup installcheck-target-winsup
maybe-installcheck-target-winsup:

.PHONY: maybe-mostlyclean-target-winsup mostlyclean-target-winsup
maybe-mostlyclean-target-winsup:

.PHONY: maybe-clean-target-winsup clean-target-winsup
maybe-clean-target-winsup:

.PHONY: maybe-distclean-target-winsup distclean-target-winsup
maybe-distclean-target-winsup:

.PHONY: maybe-maintainer-clean-target-winsup maintainer-clean-target-winsup
maybe-maintainer-clean-target-winsup:





.PHONY: configure-target-libgloss maybe-configure-target-libgloss
maybe-configure-target-libgloss:





.PHONY: all-target-libgloss maybe-all-target-libgloss
maybe-all-target-libgloss:





.PHONY: check-target-libgloss maybe-check-target-libgloss
maybe-check-target-libgloss:

.PHONY: install-target-libgloss maybe-install-target-libgloss
maybe-install-target-libgloss:

.PHONY: install-strip-target-libgloss maybe-install-strip-target-libgloss
maybe-install-strip-target-libgloss:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libgloss info-target-libgloss
maybe-info-target-libgloss:

.PHONY: maybe-dvi-target-libgloss dvi-target-libgloss
maybe-dvi-target-libgloss:

.PHONY: maybe-pdf-target-libgloss pdf-target-libgloss
maybe-pdf-target-libgloss:

.PHONY: maybe-html-target-libgloss html-target-libgloss
maybe-html-target-libgloss:

.PHONY: maybe-TAGS-target-libgloss TAGS-target-libgloss
maybe-TAGS-target-libgloss:

.PHONY: maybe-install-info-target-libgloss install-info-target-libgloss
maybe-install-info-target-libgloss:

.PHONY: maybe-install-pdf-target-libgloss install-pdf-target-libgloss
maybe-install-pdf-target-libgloss:

.PHONY: maybe-install-html-target-libgloss install-html-target-libgloss
maybe-install-html-target-libgloss:

.PHONY: maybe-installcheck-target-libgloss installcheck-target-libgloss
maybe-installcheck-target-libgloss:

.PHONY: maybe-mostlyclean-target-libgloss mostlyclean-target-libgloss
maybe-mostlyclean-target-libgloss:

.PHONY: maybe-clean-target-libgloss clean-target-libgloss
maybe-clean-target-libgloss:

.PHONY: maybe-distclean-target-libgloss distclean-target-libgloss
maybe-distclean-target-libgloss:

.PHONY: maybe-maintainer-clean-target-libgloss maintainer-clean-target-libgloss
maybe-maintainer-clean-target-libgloss:





.PHONY: configure-target-libffi maybe-configure-target-libffi
maybe-configure-target-libffi:





.PHONY: all-target-libffi maybe-all-target-libffi
maybe-all-target-libffi:





.PHONY: check-target-libffi maybe-check-target-libffi
maybe-check-target-libffi:

.PHONY: install-target-libffi maybe-install-target-libffi
maybe-install-target-libffi:

.PHONY: install-strip-target-libffi maybe-install-strip-target-libffi
maybe-install-strip-target-libffi:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libffi info-target-libffi
maybe-info-target-libffi:

.PHONY: maybe-dvi-target-libffi dvi-target-libffi
maybe-dvi-target-libffi:

.PHONY: maybe-pdf-target-libffi pdf-target-libffi
maybe-pdf-target-libffi:

.PHONY: maybe-html-target-libffi html-target-libffi
maybe-html-target-libffi:

.PHONY: maybe-TAGS-target-libffi TAGS-target-libffi
maybe-TAGS-target-libffi:

.PHONY: maybe-install-info-target-libffi install-info-target-libffi
maybe-install-info-target-libffi:

.PHONY: maybe-install-pdf-target-libffi install-pdf-target-libffi
maybe-install-pdf-target-libffi:

.PHONY: maybe-install-html-target-libffi install-html-target-libffi
maybe-install-html-target-libffi:

.PHONY: maybe-installcheck-target-libffi installcheck-target-libffi
maybe-installcheck-target-libffi:

.PHONY: maybe-mostlyclean-target-libffi mostlyclean-target-libffi
maybe-mostlyclean-target-libffi:

.PHONY: maybe-clean-target-libffi clean-target-libffi
maybe-clean-target-libffi:

.PHONY: maybe-distclean-target-libffi distclean-target-libffi
maybe-distclean-target-libffi:

.PHONY: maybe-maintainer-clean-target-libffi maintainer-clean-target-libffi
maybe-maintainer-clean-target-libffi:





.PHONY: configure-target-libjava maybe-configure-target-libjava
maybe-configure-target-libjava:





.PHONY: all-target-libjava maybe-all-target-libjava
maybe-all-target-libjava:





.PHONY: check-target-libjava maybe-check-target-libjava
maybe-check-target-libjava:

.PHONY: install-target-libjava maybe-install-target-libjava
maybe-install-target-libjava:

.PHONY: install-strip-target-libjava maybe-install-strip-target-libjava
maybe-install-strip-target-libjava:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libjava info-target-libjava
maybe-info-target-libjava:

.PHONY: maybe-dvi-target-libjava dvi-target-libjava
maybe-dvi-target-libjava:

.PHONY: maybe-pdf-target-libjava pdf-target-libjava
maybe-pdf-target-libjava:

.PHONY: maybe-html-target-libjava html-target-libjava
maybe-html-target-libjava:

.PHONY: maybe-TAGS-target-libjava TAGS-target-libjava
maybe-TAGS-target-libjava:

.PHONY: maybe-install-info-target-libjava install-info-target-libjava
maybe-install-info-target-libjava:

.PHONY: maybe-install-pdf-target-libjava install-pdf-target-libjava
maybe-install-pdf-target-libjava:

.PHONY: maybe-install-html-target-libjava install-html-target-libjava
maybe-install-html-target-libjava:

.PHONY: maybe-installcheck-target-libjava installcheck-target-libjava
maybe-installcheck-target-libjava:

.PHONY: maybe-mostlyclean-target-libjava mostlyclean-target-libjava
maybe-mostlyclean-target-libjava:

.PHONY: maybe-clean-target-libjava clean-target-libjava
maybe-clean-target-libjava:

.PHONY: maybe-distclean-target-libjava distclean-target-libjava
maybe-distclean-target-libjava:

.PHONY: maybe-maintainer-clean-target-libjava maintainer-clean-target-libjava
maybe-maintainer-clean-target-libjava:





.PHONY: configure-target-zlib maybe-configure-target-zlib
maybe-configure-target-zlib:





.PHONY: all-target-zlib maybe-all-target-zlib
maybe-all-target-zlib:





.PHONY: check-target-zlib maybe-check-target-zlib
maybe-check-target-zlib:

.PHONY: install-target-zlib maybe-install-target-zlib
maybe-install-target-zlib:

.PHONY: install-strip-target-zlib maybe-install-strip-target-zlib
maybe-install-strip-target-zlib:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-zlib info-target-zlib
maybe-info-target-zlib:

.PHONY: maybe-dvi-target-zlib dvi-target-zlib
maybe-dvi-target-zlib:

.PHONY: maybe-pdf-target-zlib pdf-target-zlib
maybe-pdf-target-zlib:

.PHONY: maybe-html-target-zlib html-target-zlib
maybe-html-target-zlib:

.PHONY: maybe-TAGS-target-zlib TAGS-target-zlib
maybe-TAGS-target-zlib:

.PHONY: maybe-install-info-target-zlib install-info-target-zlib
maybe-install-info-target-zlib:

.PHONY: maybe-install-pdf-target-zlib install-pdf-target-zlib
maybe-install-pdf-target-zlib:

.PHONY: maybe-install-html-target-zlib install-html-target-zlib
maybe-install-html-target-zlib:

.PHONY: maybe-installcheck-target-zlib installcheck-target-zlib
maybe-installcheck-target-zlib:

.PHONY: maybe-mostlyclean-target-zlib mostlyclean-target-zlib
maybe-mostlyclean-target-zlib:

.PHONY: maybe-clean-target-zlib clean-target-zlib
maybe-clean-target-zlib:

.PHONY: maybe-distclean-target-zlib distclean-target-zlib
maybe-distclean-target-zlib:

.PHONY: maybe-maintainer-clean-target-zlib maintainer-clean-target-zlib
maybe-maintainer-clean-target-zlib:





.PHONY: configure-target-boehm-gc maybe-configure-target-boehm-gc
maybe-configure-target-boehm-gc:





.PHONY: all-target-boehm-gc maybe-all-target-boehm-gc
maybe-all-target-boehm-gc:





.PHONY: check-target-boehm-gc maybe-check-target-boehm-gc
maybe-check-target-boehm-gc:

.PHONY: install-target-boehm-gc maybe-install-target-boehm-gc
maybe-install-target-boehm-gc:

.PHONY: install-strip-target-boehm-gc maybe-install-strip-target-boehm-gc
maybe-install-strip-target-boehm-gc:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-boehm-gc info-target-boehm-gc
maybe-info-target-boehm-gc:

.PHONY: maybe-dvi-target-boehm-gc dvi-target-boehm-gc
maybe-dvi-target-boehm-gc:

.PHONY: maybe-pdf-target-boehm-gc pdf-target-boehm-gc
maybe-pdf-target-boehm-gc:

.PHONY: maybe-html-target-boehm-gc html-target-boehm-gc
maybe-html-target-boehm-gc:

.PHONY: maybe-TAGS-target-boehm-gc TAGS-target-boehm-gc
maybe-TAGS-target-boehm-gc:

.PHONY: maybe-install-info-target-boehm-gc install-info-target-boehm-gc
maybe-install-info-target-boehm-gc:

.PHONY: maybe-install-pdf-target-boehm-gc install-pdf-target-boehm-gc
maybe-install-pdf-target-boehm-gc:

.PHONY: maybe-install-html-target-boehm-gc install-html-target-boehm-gc
maybe-install-html-target-boehm-gc:

.PHONY: maybe-installcheck-target-boehm-gc installcheck-target-boehm-gc
maybe-installcheck-target-boehm-gc:

.PHONY: maybe-mostlyclean-target-boehm-gc mostlyclean-target-boehm-gc
maybe-mostlyclean-target-boehm-gc:

.PHONY: maybe-clean-target-boehm-gc clean-target-boehm-gc
maybe-clean-target-boehm-gc:

.PHONY: maybe-distclean-target-boehm-gc distclean-target-boehm-gc
maybe-distclean-target-boehm-gc:

.PHONY: maybe-maintainer-clean-target-boehm-gc maintainer-clean-target-boehm-gc
maybe-maintainer-clean-target-boehm-gc:





.PHONY: configure-target-rda maybe-configure-target-rda
maybe-configure-target-rda:





.PHONY: all-target-rda maybe-all-target-rda
maybe-all-target-rda:





.PHONY: check-target-rda maybe-check-target-rda
maybe-check-target-rda:

.PHONY: install-target-rda maybe-install-target-rda
maybe-install-target-rda:

.PHONY: install-strip-target-rda maybe-install-strip-target-rda
maybe-install-strip-target-rda:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-rda info-target-rda
maybe-info-target-rda:

.PHONY: maybe-dvi-target-rda dvi-target-rda
maybe-dvi-target-rda:

.PHONY: maybe-pdf-target-rda pdf-target-rda
maybe-pdf-target-rda:

.PHONY: maybe-html-target-rda html-target-rda
maybe-html-target-rda:

.PHONY: maybe-TAGS-target-rda TAGS-target-rda
maybe-TAGS-target-rda:

.PHONY: maybe-install-info-target-rda install-info-target-rda
maybe-install-info-target-rda:

.PHONY: maybe-install-pdf-target-rda install-pdf-target-rda
maybe-install-pdf-target-rda:

.PHONY: maybe-install-html-target-rda install-html-target-rda
maybe-install-html-target-rda:

.PHONY: maybe-installcheck-target-rda installcheck-target-rda
maybe-installcheck-target-rda:

.PHONY: maybe-mostlyclean-target-rda mostlyclean-target-rda
maybe-mostlyclean-target-rda:

.PHONY: maybe-clean-target-rda clean-target-rda
maybe-clean-target-rda:

.PHONY: maybe-distclean-target-rda distclean-target-rda
maybe-distclean-target-rda:

.PHONY: maybe-maintainer-clean-target-rda maintainer-clean-target-rda
maybe-maintainer-clean-target-rda:





.PHONY: configure-target-libada maybe-configure-target-libada
maybe-configure-target-libada:





.PHONY: all-target-libada maybe-all-target-libada
maybe-all-target-libada:





.PHONY: check-target-libada maybe-check-target-libada
maybe-check-target-libada:

.PHONY: install-target-libada maybe-install-target-libada
maybe-install-target-libada:

.PHONY: install-strip-target-libada maybe-install-strip-target-libada
maybe-install-strip-target-libada:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libada info-target-libada
maybe-info-target-libada:

.PHONY: maybe-dvi-target-libada dvi-target-libada
maybe-dvi-target-libada:

.PHONY: maybe-pdf-target-libada pdf-target-libada
maybe-pdf-target-libada:

.PHONY: maybe-html-target-libada html-target-libada
maybe-html-target-libada:

.PHONY: maybe-TAGS-target-libada TAGS-target-libada
maybe-TAGS-target-libada:

.PHONY: maybe-install-info-target-libada install-info-target-libada
maybe-install-info-target-libada:

.PHONY: maybe-install-pdf-target-libada install-pdf-target-libada
maybe-install-pdf-target-libada:

.PHONY: maybe-install-html-target-libada install-html-target-libada
maybe-install-html-target-libada:

.PHONY: maybe-installcheck-target-libada installcheck-target-libada
maybe-installcheck-target-libada:

.PHONY: maybe-mostlyclean-target-libada mostlyclean-target-libada
maybe-mostlyclean-target-libada:

.PHONY: maybe-clean-target-libada clean-target-libada
maybe-clean-target-libada:

.PHONY: maybe-distclean-target-libada distclean-target-libada
maybe-distclean-target-libada:

.PHONY: maybe-maintainer-clean-target-libada maintainer-clean-target-libada
maybe-maintainer-clean-target-libada:





.PHONY: configure-target-libgomp maybe-configure-target-libgomp
maybe-configure-target-libgomp:



.PHONY: configure-stage1-target-libgomp maybe-configure-stage1-target-libgomp
maybe-configure-stage1-target-libgomp:

.PHONY: configure-stage2-target-libgomp maybe-configure-stage2-target-libgomp
maybe-configure-stage2-target-libgomp:

.PHONY: configure-stage3-target-libgomp maybe-configure-stage3-target-libgomp
maybe-configure-stage3-target-libgomp:

.PHONY: configure-stage4-target-libgomp maybe-configure-stage4-target-libgomp
maybe-configure-stage4-target-libgomp:

.PHONY: configure-stageprofile-target-libgomp maybe-configure-stageprofile-target-libgomp
maybe-configure-stageprofile-target-libgomp:

.PHONY: configure-stagefeedback-target-libgomp maybe-configure-stagefeedback-target-libgomp
maybe-configure-stagefeedback-target-libgomp:





.PHONY: all-target-libgomp maybe-all-target-libgomp
maybe-all-target-libgomp:



.PHONY: all-stage1-target-libgomp maybe-all-stage1-target-libgomp
.PHONY: clean-stage1-target-libgomp maybe-clean-stage1-target-libgomp
maybe-all-stage1-target-libgomp:
maybe-clean-stage1-target-libgomp:


.PHONY: all-stage2-target-libgomp maybe-all-stage2-target-libgomp
.PHONY: clean-stage2-target-libgomp maybe-clean-stage2-target-libgomp
maybe-all-stage2-target-libgomp:
maybe-clean-stage2-target-libgomp:


.PHONY: all-stage3-target-libgomp maybe-all-stage3-target-libgomp
.PHONY: clean-stage3-target-libgomp maybe-clean-stage3-target-libgomp
maybe-all-stage3-target-libgomp:
maybe-clean-stage3-target-libgomp:


.PHONY: all-stage4-target-libgomp maybe-all-stage4-target-libgomp
.PHONY: clean-stage4-target-libgomp maybe-clean-stage4-target-libgomp
maybe-all-stage4-target-libgomp:
maybe-clean-stage4-target-libgomp:


.PHONY: all-stageprofile-target-libgomp maybe-all-stageprofile-target-libgomp
.PHONY: clean-stageprofile-target-libgomp maybe-clean-stageprofile-target-libgomp
maybe-all-stageprofile-target-libgomp:
maybe-clean-stageprofile-target-libgomp:


.PHONY: all-stagefeedback-target-libgomp maybe-all-stagefeedback-target-libgomp
.PHONY: clean-stagefeedback-target-libgomp maybe-clean-stagefeedback-target-libgomp
maybe-all-stagefeedback-target-libgomp:
maybe-clean-stagefeedback-target-libgomp:






.PHONY: check-target-libgomp maybe-check-target-libgomp
maybe-check-target-libgomp:

.PHONY: install-target-libgomp maybe-install-target-libgomp
maybe-install-target-libgomp:

.PHONY: install-strip-target-libgomp maybe-install-strip-target-libgomp
maybe-install-strip-target-libgomp:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libgomp info-target-libgomp
maybe-info-target-libgomp:

.PHONY: maybe-dvi-target-libgomp dvi-target-libgomp
maybe-dvi-target-libgomp:

.PHONY: maybe-pdf-target-libgomp pdf-target-libgomp
maybe-pdf-target-libgomp:

.PHONY: maybe-html-target-libgomp html-target-libgomp
maybe-html-target-libgomp:

.PHONY: maybe-TAGS-target-libgomp TAGS-target-libgomp
maybe-TAGS-target-libgomp:

.PHONY: maybe-install-info-target-libgomp install-info-target-libgomp
maybe-install-info-target-libgomp:

.PHONY: maybe-install-pdf-target-libgomp install-pdf-target-libgomp
maybe-install-pdf-target-libgomp:

.PHONY: maybe-install-html-target-libgomp install-html-target-libgomp
maybe-install-html-target-libgomp:

.PHONY: maybe-installcheck-target-libgomp installcheck-target-libgomp
maybe-installcheck-target-libgomp:

.PHONY: maybe-mostlyclean-target-libgomp mostlyclean-target-libgomp
maybe-mostlyclean-target-libgomp:

.PHONY: maybe-clean-target-libgomp clean-target-libgomp
maybe-clean-target-libgomp:

.PHONY: maybe-distclean-target-libgomp distclean-target-libgomp
maybe-distclean-target-libgomp:

.PHONY: maybe-maintainer-clean-target-libgomp maintainer-clean-target-libgomp
maybe-maintainer-clean-target-libgomp:





.PHONY: configure-target-libitm maybe-configure-target-libitm
maybe-configure-target-libitm:





.PHONY: all-target-libitm maybe-all-target-libitm
maybe-all-target-libitm:





.PHONY: check-target-libitm maybe-check-target-libitm
maybe-check-target-libitm:

.PHONY: install-target-libitm maybe-install-target-libitm
maybe-install-target-libitm:

.PHONY: install-strip-target-libitm maybe-install-strip-target-libitm
maybe-install-strip-target-libitm:

# Other targets (info, dvi, pdf, etc.)

.PHONY: maybe-info-target-libitm info-target-libitm
maybe-info-target-libitm:

.PHONY: maybe-dvi-target-libitm dvi-target-libitm
maybe-dvi-target-libitm:

.PHONY: maybe-pdf-target-libitm pdf-target-libitm
maybe-pdf-target-libitm:

.PHONY: maybe-html-target-libitm html-target-libitm
maybe-html-target-libitm:

.PHONY: maybe-TAGS-target-libitm TAGS-target-libitm
maybe-TAGS-target-libitm:

.PHONY: maybe-install-info-target-libitm install-info-target-libitm
maybe-install-info-target-libitm:

.PHONY: maybe-install-pdf-target-libitm install-pdf-target-libitm
maybe-install-pdf-target-libitm:

.PHONY: maybe-install-html-target-libitm install-html-target-libitm
maybe-install-html-target-libitm:

.PHONY: maybe-installcheck-target-libitm installcheck-target-libitm
maybe-installcheck-target-libitm:

.PHONY: maybe-mostlyclean-target-libitm mostlyclean-target-libitm
maybe-mostlyclean-target-libitm:

.PHONY: maybe-clean-target-libitm clean-target-libitm
maybe-clean-target-libitm:

.PHONY: maybe-distclean-target-libitm distclean-target-libitm
maybe-distclean-target-libitm:

.PHONY: maybe-maintainer-clean-target-libitm maintainer-clean-target-libitm
maybe-maintainer-clean-target-libitm:




# ----------
# GCC module
# ----------

.PHONY: cross
cross: all-build all-gas all-ld
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	echo "Building the C and C++ compiler"; \
	cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++"
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}` ; export s; \
	echo "Building runtime libraries"; \
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) LANGUAGES="c c++" all


.PHONY: check-gcc-c check-c
check-gcc-c:
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-gcc);
check-c: check-gcc-c

.PHONY: check-gcc-c++ check-c++
check-gcc-c++:
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-c++);
check-c++: check-gcc-c++ check-target-libstdc++-v3 check-target-libmudflap-c++

.PHONY: check-gcc-fortran check-fortran
check-gcc-fortran:
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-fortran);
check-fortran: check-gcc-fortran check-target-libquadmath check-target-libgfortran

.PHONY: check-gcc-java check-java
check-gcc-java:
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-java);
check-java: check-gcc-java check-target-libjava

.PHONY: check-gcc-ada check-ada
check-gcc-ada:
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-ada);
check-ada: check-gcc-ada check-target-libada

.PHONY: check-gcc-objc check-objc
check-gcc-objc:
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-objc);
check-objc: check-gcc-objc check-target-libobjc

.PHONY: check-gcc-obj-c++ check-obj-c++
check-gcc-obj-c++:
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-obj-c++);
check-obj-c++: check-gcc-obj-c++

.PHONY: check-gcc-go check-go
check-gcc-go:
	r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	$(HOST_EXPORTS) \
	(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-go);
check-go: check-gcc-go check-target-libgo


# The gcc part of install-no-fixedincludes, which relies on an intimate
# knowledge of how a number of gcc internal targets (inter)operate.  Delegate.
.PHONY: gcc-install-no-fixedincludes
gcc-install-no-fixedincludes:
	@if [ -f ./gcc/Makefile ]; then \
	  r=`${PWD_COMMAND}`; export r; \
	  s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	  $(HOST_EXPORTS) \
	  (cd ./gcc \
	   && $(MAKE) $(GCC_FLAGS_TO_PASS) install-no-fixedincludes); \
	else true; fi

# ---------------------
# GCC bootstrap support
# ---------------------

# We track the current stage (the one in 'gcc') in the stage_current file.
# stage_last instead tracks the stage that was built last.  These targets
# are dummy when toplevel bootstrap is not active.

# While making host and target tools, symlinks to the final stage must be
# there, so $(unstage) should be run at various points.  To avoid excessive
# recursive invocations of make, we "inline" them using a variable.  These
# must be referenced as ": $(MAKE) ; $(unstage)" rather than "$(unstage)"
# to avoid warnings from the GNU Make job server.

unstage = :
stage = :
current_stage = ""


.PHONY: unstage stage
unstage:
	@: $(MAKE); $(unstage)
stage:
	@: $(MAKE); $(stage)

# Disable commands for lean bootstrap.
LEAN = false

# We name the build directories for the various stages "stage1-gcc",
# "stage2-gcc","stage3-gcc", etc.

# Since the 'compare' process will fail (on debugging information) if any
# directory names are different, we need to link the gcc directory for
# the previous stage to a constant name ('prev-gcc'), and to make the name of
# the build directories constant as well. For the latter, we use naked names
# like 'gcc', because the scripts in that directory assume it.  We use
# mv on platforms where symlinks to directories do not work or are not
# reliable.

# 'touch' doesn't work right on some platforms.
STAMP = echo timestamp > 

# We only want to compare .o files, so set this!
objext = .o


.PHONY: stage1-start stage1-end

stage1-start::
	@: $(MAKE); $(stage); \
	echo stage1 > stage_current ; \
	echo stage1 > stage_last; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
	@cd $(HOST_SUBDIR); [ -d stage1-gcc ] || \
	  mkdir stage1-gcc; \
	mv stage1-gcc gcc 
	@cd $(HOST_SUBDIR); [ -d stage1-intl ] || \
	  mkdir stage1-intl; \
	mv stage1-intl intl 
	@cd $(HOST_SUBDIR); [ -d stage1-libcpp ] || \
	  mkdir stage1-libcpp; \
	mv stage1-libcpp libcpp 
	@cd $(HOST_SUBDIR); [ -d stage1-libdecnumber ] || \
	  mkdir stage1-libdecnumber; \
	mv stage1-libdecnumber libdecnumber 
	@cd $(HOST_SUBDIR); [ -d stage1-libiberty ] || \
	  mkdir stage1-libiberty; \
	mv stage1-libiberty libiberty 
	@cd $(HOST_SUBDIR); [ -d stage1-zlib ] || \
	  mkdir stage1-zlib; \
	mv stage1-zlib zlib 
	@cd $(HOST_SUBDIR); [ -d stage1-lto-plugin ] || \
	  mkdir stage1-lto-plugin; \
	mv stage1-lto-plugin lto-plugin 
	@[ -d stage1-$(TARGET_SUBDIR) ] || \
	  mkdir stage1-$(TARGET_SUBDIR); \
	mv stage1-$(TARGET_SUBDIR) $(TARGET_SUBDIR) 

stage1-end:: 
	@if test -d $(HOST_SUBDIR)/gcc ; then \
	  cd $(HOST_SUBDIR); mv gcc stage1-gcc  ; \
	fi
	@if test -d $(HOST_SUBDIR)/intl ; then \
	  cd $(HOST_SUBDIR); mv intl stage1-intl  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libcpp ; then \
	  cd $(HOST_SUBDIR); mv libcpp stage1-libcpp  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libdecnumber ; then \
	  cd $(HOST_SUBDIR); mv libdecnumber stage1-libdecnumber  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libiberty ; then \
	  cd $(HOST_SUBDIR); mv libiberty stage1-libiberty  ; \
	fi
	@if test -d $(HOST_SUBDIR)/zlib ; then \
	  cd $(HOST_SUBDIR); mv zlib stage1-zlib  ; \
	fi
	@if test -d $(HOST_SUBDIR)/lto-plugin ; then \
	  cd $(HOST_SUBDIR); mv lto-plugin stage1-lto-plugin  ; \
	fi
	@if test -d $(TARGET_SUBDIR) ; then \
	  mv $(TARGET_SUBDIR) stage1-$(TARGET_SUBDIR)  ; \
	fi
	rm -f stage_current

# Bubble a bug fix through all the stages up to stage 1.  They are
# remade, but not reconfigured.  The next stage (if any) will not be
# reconfigured either.
.PHONY: stage1-bubble
stage1-bubble:: 
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	if test -f stage1-lean  ; then \
	  echo Skipping rebuild of stage1 ; \
	else \
	  $(MAKE) stage1-start; \
	  $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stage1; \
	fi

.PHONY: all-stage1 clean-stage1
do-clean: clean-stage1

# FIXME: Will not need to be conditional when toplevel bootstrap is the
# only possibility, but now it conflicts with no-bootstrap rules


.PHONY: stage2-start stage2-end

stage2-start::
	@: $(MAKE); $(stage); \
	echo stage2 > stage_current ; \
	echo stage2 > stage_last; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
	@cd $(HOST_SUBDIR); [ -d stage2-gcc ] || \
	  mkdir stage2-gcc; \
	mv stage2-gcc gcc  ; \
	mv stage1-gcc prev-gcc || test -f stage1-lean 
	@cd $(HOST_SUBDIR); [ -d stage2-intl ] || \
	  mkdir stage2-intl; \
	mv stage2-intl intl  ; \
	mv stage1-intl prev-intl || test -f stage1-lean 
	@cd $(HOST_SUBDIR); [ -d stage2-libcpp ] || \
	  mkdir stage2-libcpp; \
	mv stage2-libcpp libcpp  ; \
	mv stage1-libcpp prev-libcpp || test -f stage1-lean 
	@cd $(HOST_SUBDIR); [ -d stage2-libdecnumber ] || \
	  mkdir stage2-libdecnumber; \
	mv stage2-libdecnumber libdecnumber  ; \
	mv stage1-libdecnumber prev-libdecnumber || test -f stage1-lean 
	@cd $(HOST_SUBDIR); [ -d stage2-libiberty ] || \
	  mkdir stage2-libiberty; \
	mv stage2-libiberty libiberty  ; \
	mv stage1-libiberty prev-libiberty || test -f stage1-lean 
	@cd $(HOST_SUBDIR); [ -d stage2-zlib ] || \
	  mkdir stage2-zlib; \
	mv stage2-zlib zlib  ; \
	mv stage1-zlib prev-zlib || test -f stage1-lean 
	@cd $(HOST_SUBDIR); [ -d stage2-lto-plugin ] || \
	  mkdir stage2-lto-plugin; \
	mv stage2-lto-plugin lto-plugin  ; \
	mv stage1-lto-plugin prev-lto-plugin || test -f stage1-lean 
	@[ -d stage2-$(TARGET_SUBDIR) ] || \
	  mkdir stage2-$(TARGET_SUBDIR); \
	mv stage2-$(TARGET_SUBDIR) $(TARGET_SUBDIR)  ; \
	mv stage1-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage1-lean 

stage2-end:: 
	@if test -d $(HOST_SUBDIR)/gcc ; then \
	  cd $(HOST_SUBDIR); mv gcc stage2-gcc ; \
	  mv prev-gcc stage1-gcc ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/intl ; then \
	  cd $(HOST_SUBDIR); mv intl stage2-intl ; \
	  mv prev-intl stage1-intl ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libcpp ; then \
	  cd $(HOST_SUBDIR); mv libcpp stage2-libcpp ; \
	  mv prev-libcpp stage1-libcpp ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libdecnumber ; then \
	  cd $(HOST_SUBDIR); mv libdecnumber stage2-libdecnumber ; \
	  mv prev-libdecnumber stage1-libdecnumber ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libiberty ; then \
	  cd $(HOST_SUBDIR); mv libiberty stage2-libiberty ; \
	  mv prev-libiberty stage1-libiberty ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/zlib ; then \
	  cd $(HOST_SUBDIR); mv zlib stage2-zlib ; \
	  mv prev-zlib stage1-zlib ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/lto-plugin ; then \
	  cd $(HOST_SUBDIR); mv lto-plugin stage2-lto-plugin ; \
	  mv prev-lto-plugin stage1-lto-plugin ; :  ; \
	fi
	@if test -d $(TARGET_SUBDIR) ; then \
	  mv $(TARGET_SUBDIR) stage2-$(TARGET_SUBDIR)  ; \
	  mv prev-$(TARGET_SUBDIR) stage1-$(TARGET_SUBDIR) ; :  ; \
	fi
	rm -f stage_current

# Bubble a bug fix through all the stages up to stage 2.  They are
# remade, but not reconfigured.  The next stage (if any) will not be
# reconfigured either.
.PHONY: stage2-bubble
stage2-bubble:: stage1-bubble
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	if test -f stage2-lean || test -f stage1-lean  ; then \
	  echo Skipping rebuild of stage2 ; \
	else \
	  $(MAKE) stage2-start; \
	  $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stage2; \
	fi

.PHONY: all-stage2 clean-stage2
do-clean: clean-stage2

# FIXME: Will not need to be conditional when toplevel bootstrap is the
# only possibility, but now it conflicts with no-bootstrap rules


.PHONY: stage3-start stage3-end

stage3-start::
	@: $(MAKE); $(stage); \
	echo stage3 > stage_current ; \
	echo stage3 > stage_last; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
	@cd $(HOST_SUBDIR); [ -d stage3-gcc ] || \
	  mkdir stage3-gcc; \
	mv stage3-gcc gcc  ; \
	mv stage2-gcc prev-gcc || test -f stage2-lean 
	@cd $(HOST_SUBDIR); [ -d stage3-intl ] || \
	  mkdir stage3-intl; \
	mv stage3-intl intl  ; \
	mv stage2-intl prev-intl || test -f stage2-lean 
	@cd $(HOST_SUBDIR); [ -d stage3-libcpp ] || \
	  mkdir stage3-libcpp; \
	mv stage3-libcpp libcpp  ; \
	mv stage2-libcpp prev-libcpp || test -f stage2-lean 
	@cd $(HOST_SUBDIR); [ -d stage3-libdecnumber ] || \
	  mkdir stage3-libdecnumber; \
	mv stage3-libdecnumber libdecnumber  ; \
	mv stage2-libdecnumber prev-libdecnumber || test -f stage2-lean 
	@cd $(HOST_SUBDIR); [ -d stage3-libiberty ] || \
	  mkdir stage3-libiberty; \
	mv stage3-libiberty libiberty  ; \
	mv stage2-libiberty prev-libiberty || test -f stage2-lean 
	@cd $(HOST_SUBDIR); [ -d stage3-zlib ] || \
	  mkdir stage3-zlib; \
	mv stage3-zlib zlib  ; \
	mv stage2-zlib prev-zlib || test -f stage2-lean 
	@cd $(HOST_SUBDIR); [ -d stage3-lto-plugin ] || \
	  mkdir stage3-lto-plugin; \
	mv stage3-lto-plugin lto-plugin  ; \
	mv stage2-lto-plugin prev-lto-plugin || test -f stage2-lean 
	@[ -d stage3-$(TARGET_SUBDIR) ] || \
	  mkdir stage3-$(TARGET_SUBDIR); \
	mv stage3-$(TARGET_SUBDIR) $(TARGET_SUBDIR)  ; \
	mv stage2-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage2-lean 

stage3-end:: 
	@if test -d $(HOST_SUBDIR)/gcc ; then \
	  cd $(HOST_SUBDIR); mv gcc stage3-gcc ; \
	  mv prev-gcc stage2-gcc ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/intl ; then \
	  cd $(HOST_SUBDIR); mv intl stage3-intl ; \
	  mv prev-intl stage2-intl ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libcpp ; then \
	  cd $(HOST_SUBDIR); mv libcpp stage3-libcpp ; \
	  mv prev-libcpp stage2-libcpp ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libdecnumber ; then \
	  cd $(HOST_SUBDIR); mv libdecnumber stage3-libdecnumber ; \
	  mv prev-libdecnumber stage2-libdecnumber ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libiberty ; then \
	  cd $(HOST_SUBDIR); mv libiberty stage3-libiberty ; \
	  mv prev-libiberty stage2-libiberty ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/zlib ; then \
	  cd $(HOST_SUBDIR); mv zlib stage3-zlib ; \
	  mv prev-zlib stage2-zlib ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/lto-plugin ; then \
	  cd $(HOST_SUBDIR); mv lto-plugin stage3-lto-plugin ; \
	  mv prev-lto-plugin stage2-lto-plugin ; :  ; \
	fi
	@if test -d $(TARGET_SUBDIR) ; then \
	  mv $(TARGET_SUBDIR) stage3-$(TARGET_SUBDIR)  ; \
	  mv prev-$(TARGET_SUBDIR) stage2-$(TARGET_SUBDIR) ; :  ; \
	fi
	rm -f stage_current

# Bubble a bug fix through all the stages up to stage 3.  They are
# remade, but not reconfigured.  The next stage (if any) will not be
# reconfigured either.
.PHONY: stage3-bubble
stage3-bubble:: stage2-bubble
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	if test -f stage3-lean || test -f stage2-lean  ; then \
	  echo Skipping rebuild of stage3 ; \
	else \
	  $(MAKE) stage3-start; \
	  if $(LEAN); then \
	    rm -rf stage1-* ; \
	    $(STAMP) stage1-lean ; \
	  fi; \
	  $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stage3; \
	fi
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) compare

.PHONY: all-stage3 clean-stage3
do-clean: clean-stage3

# FIXME: Will not need to be conditional when toplevel bootstrap is the
# only possibility, but now it conflicts with no-bootstrap rules


.PHONY: stage4-start stage4-end

stage4-start::
	@: $(MAKE); $(stage); \
	echo stage4 > stage_current ; \
	echo stage4 > stage_last; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
	@cd $(HOST_SUBDIR); [ -d stage4-gcc ] || \
	  mkdir stage4-gcc; \
	mv stage4-gcc gcc  ; \
	mv stage3-gcc prev-gcc || test -f stage3-lean 
	@cd $(HOST_SUBDIR); [ -d stage4-intl ] || \
	  mkdir stage4-intl; \
	mv stage4-intl intl  ; \
	mv stage3-intl prev-intl || test -f stage3-lean 
	@cd $(HOST_SUBDIR); [ -d stage4-libcpp ] || \
	  mkdir stage4-libcpp; \
	mv stage4-libcpp libcpp  ; \
	mv stage3-libcpp prev-libcpp || test -f stage3-lean 
	@cd $(HOST_SUBDIR); [ -d stage4-libdecnumber ] || \
	  mkdir stage4-libdecnumber; \
	mv stage4-libdecnumber libdecnumber  ; \
	mv stage3-libdecnumber prev-libdecnumber || test -f stage3-lean 
	@cd $(HOST_SUBDIR); [ -d stage4-libiberty ] || \
	  mkdir stage4-libiberty; \
	mv stage4-libiberty libiberty  ; \
	mv stage3-libiberty prev-libiberty || test -f stage3-lean 
	@cd $(HOST_SUBDIR); [ -d stage4-zlib ] || \
	  mkdir stage4-zlib; \
	mv stage4-zlib zlib  ; \
	mv stage3-zlib prev-zlib || test -f stage3-lean 
	@cd $(HOST_SUBDIR); [ -d stage4-lto-plugin ] || \
	  mkdir stage4-lto-plugin; \
	mv stage4-lto-plugin lto-plugin  ; \
	mv stage3-lto-plugin prev-lto-plugin || test -f stage3-lean 
	@[ -d stage4-$(TARGET_SUBDIR) ] || \
	  mkdir stage4-$(TARGET_SUBDIR); \
	mv stage4-$(TARGET_SUBDIR) $(TARGET_SUBDIR)  ; \
	mv stage3-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage3-lean 

stage4-end:: 
	@if test -d $(HOST_SUBDIR)/gcc ; then \
	  cd $(HOST_SUBDIR); mv gcc stage4-gcc ; \
	  mv prev-gcc stage3-gcc ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/intl ; then \
	  cd $(HOST_SUBDIR); mv intl stage4-intl ; \
	  mv prev-intl stage3-intl ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libcpp ; then \
	  cd $(HOST_SUBDIR); mv libcpp stage4-libcpp ; \
	  mv prev-libcpp stage3-libcpp ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libdecnumber ; then \
	  cd $(HOST_SUBDIR); mv libdecnumber stage4-libdecnumber ; \
	  mv prev-libdecnumber stage3-libdecnumber ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libiberty ; then \
	  cd $(HOST_SUBDIR); mv libiberty stage4-libiberty ; \
	  mv prev-libiberty stage3-libiberty ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/zlib ; then \
	  cd $(HOST_SUBDIR); mv zlib stage4-zlib ; \
	  mv prev-zlib stage3-zlib ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/lto-plugin ; then \
	  cd $(HOST_SUBDIR); mv lto-plugin stage4-lto-plugin ; \
	  mv prev-lto-plugin stage3-lto-plugin ; :  ; \
	fi
	@if test -d $(TARGET_SUBDIR) ; then \
	  mv $(TARGET_SUBDIR) stage4-$(TARGET_SUBDIR)  ; \
	  mv prev-$(TARGET_SUBDIR) stage3-$(TARGET_SUBDIR) ; :  ; \
	fi
	rm -f stage_current

# Bubble a bug fix through all the stages up to stage 4.  They are
# remade, but not reconfigured.  The next stage (if any) will not be
# reconfigured either.
.PHONY: stage4-bubble
stage4-bubble:: stage3-bubble
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	if test -f stage4-lean || test -f stage3-lean  ; then \
	  echo Skipping rebuild of stage4 ; \
	else \
	  $(MAKE) stage4-start; \
	  if $(LEAN); then \
	    rm -rf stage2-* ; \
	    $(STAMP) stage2-lean ; \
	  fi; \
	  $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stage4; \
	fi
	$(MAKE) $(RECURSE_FLAGS_TO_PASS) compare3

.PHONY: all-stage4 clean-stage4
do-clean: clean-stage4

# FIXME: Will not need to be conditional when toplevel bootstrap is the
# only possibility, but now it conflicts with no-bootstrap rules


.PHONY: stageprofile-start stageprofile-end

stageprofile-start::
	@: $(MAKE); $(stage); \
	echo stageprofile > stage_current ; \
	echo stageprofile > stage_last; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
	@cd $(HOST_SUBDIR); [ -d stageprofile-gcc ] || \
	  mkdir stageprofile-gcc; \
	mv stageprofile-gcc gcc  ; \
	mv stage1-gcc prev-gcc || test -f stage1-lean 
	@cd $(HOST_SUBDIR); [ -d stageprofile-intl ] || \
	  mkdir stageprofile-intl; \
	mv stageprofile-intl intl  ; \
	mv stage1-intl prev-intl || test -f stage1-lean 
	@cd $(HOST_SUBDIR); [ -d stageprofile-libcpp ] || \
	  mkdir stageprofile-libcpp; \
	mv stageprofile-libcpp libcpp  ; \
	mv stage1-libcpp prev-libcpp || test -f stage1-lean 
	@cd $(HOST_SUBDIR); [ -d stageprofile-libdecnumber ] || \
	  mkdir stageprofile-libdecnumber; \
	mv stageprofile-libdecnumber libdecnumber  ; \
	mv stage1-libdecnumber prev-libdecnumber || test -f stage1-lean 
	@cd $(HOST_SUBDIR); [ -d stageprofile-libiberty ] || \
	  mkdir stageprofile-libiberty; \
	mv stageprofile-libiberty libiberty  ; \
	mv stage1-libiberty prev-libiberty || test -f stage1-lean 
	@cd $(HOST_SUBDIR); [ -d stageprofile-zlib ] || \
	  mkdir stageprofile-zlib; \
	mv stageprofile-zlib zlib  ; \
	mv stage1-zlib prev-zlib || test -f stage1-lean 
	@cd $(HOST_SUBDIR); [ -d stageprofile-lto-plugin ] || \
	  mkdir stageprofile-lto-plugin; \
	mv stageprofile-lto-plugin lto-plugin  ; \
	mv stage1-lto-plugin prev-lto-plugin || test -f stage1-lean 
	@[ -d stageprofile-$(TARGET_SUBDIR) ] || \
	  mkdir stageprofile-$(TARGET_SUBDIR); \
	mv stageprofile-$(TARGET_SUBDIR) $(TARGET_SUBDIR)  ; \
	mv stage1-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage1-lean 

stageprofile-end:: 
	@if test -d $(HOST_SUBDIR)/gcc ; then \
	  cd $(HOST_SUBDIR); mv gcc stageprofile-gcc ; \
	  mv prev-gcc stage1-gcc ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/intl ; then \
	  cd $(HOST_SUBDIR); mv intl stageprofile-intl ; \
	  mv prev-intl stage1-intl ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libcpp ; then \
	  cd $(HOST_SUBDIR); mv libcpp stageprofile-libcpp ; \
	  mv prev-libcpp stage1-libcpp ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libdecnumber ; then \
	  cd $(HOST_SUBDIR); mv libdecnumber stageprofile-libdecnumber ; \
	  mv prev-libdecnumber stage1-libdecnumber ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libiberty ; then \
	  cd $(HOST_SUBDIR); mv libiberty stageprofile-libiberty ; \
	  mv prev-libiberty stage1-libiberty ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/zlib ; then \
	  cd $(HOST_SUBDIR); mv zlib stageprofile-zlib ; \
	  mv prev-zlib stage1-zlib ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/lto-plugin ; then \
	  cd $(HOST_SUBDIR); mv lto-plugin stageprofile-lto-plugin ; \
	  mv prev-lto-plugin stage1-lto-plugin ; :  ; \
	fi
	@if test -d $(TARGET_SUBDIR) ; then \
	  mv $(TARGET_SUBDIR) stageprofile-$(TARGET_SUBDIR)  ; \
	  mv prev-$(TARGET_SUBDIR) stage1-$(TARGET_SUBDIR) ; :  ; \
	fi
	rm -f stage_current

# Bubble a bug fix through all the stages up to stage profile.  They are
# remade, but not reconfigured.  The next stage (if any) will not be
# reconfigured either.
.PHONY: stageprofile-bubble
stageprofile-bubble:: stage1-bubble
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	if test -f stageprofile-lean || test -f stage1-lean  ; then \
	  echo Skipping rebuild of stageprofile ; \
	else \
	  $(MAKE) stageprofile-start; \
	  $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stageprofile; \
	fi

.PHONY: all-stageprofile clean-stageprofile
do-clean: clean-stageprofile

# FIXME: Will not need to be conditional when toplevel bootstrap is the
# only possibility, but now it conflicts with no-bootstrap rules


.PHONY: stagefeedback-start stagefeedback-end

stagefeedback-start::
	@: $(MAKE); $(stage); \
	echo stagefeedback > stage_current ; \
	echo stagefeedback > stage_last; \
	$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
	@cd $(HOST_SUBDIR); [ -d stagefeedback-gcc ] || \
	  mkdir stagefeedback-gcc; \
	mv stagefeedback-gcc gcc  ; \
	mv stageprofile-gcc prev-gcc || test -f stageprofile-lean 
	@cd $(HOST_SUBDIR); [ -d stagefeedback-intl ] || \
	  mkdir stagefeedback-intl; \
	mv stagefeedback-intl intl  ; \
	mv stageprofile-intl prev-intl || test -f stageprofile-lean 
	@cd $(HOST_SUBDIR); [ -d stagefeedback-libcpp ] || \
	  mkdir stagefeedback-libcpp; \
	mv stagefeedback-libcpp libcpp  ; \
	mv stageprofile-libcpp prev-libcpp || test -f stageprofile-lean 
	@cd $(HOST_SUBDIR); [ -d stagefeedback-libdecnumber ] || \
	  mkdir stagefeedback-libdecnumber; \
	mv stagefeedback-libdecnumber libdecnumber  ; \
	mv stageprofile-libdecnumber prev-libdecnumber || test -f stageprofile-lean 
	@cd $(HOST_SUBDIR); [ -d stagefeedback-libiberty ] || \
	  mkdir stagefeedback-libiberty; \
	mv stagefeedback-libiberty libiberty  ; \
	mv stageprofile-libiberty prev-libiberty || test -f stageprofile-lean 
	@cd $(HOST_SUBDIR); [ -d stagefeedback-zlib ] || \
	  mkdir stagefeedback-zlib; \
	mv stagefeedback-zlib zlib  ; \
	mv stageprofile-zlib prev-zlib || test -f stageprofile-lean 
	@cd $(HOST_SUBDIR); [ -d stagefeedback-lto-plugin ] || \
	  mkdir stagefeedback-lto-plugin; \
	mv stagefeedback-lto-plugin lto-plugin  ; \
	mv stageprofile-lto-plugin prev-lto-plugin || test -f stageprofile-lean 
	@[ -d stagefeedback-$(TARGET_SUBDIR) ] || \
	  mkdir stagefeedback-$(TARGET_SUBDIR); \
	mv stagefeedback-$(TARGET_SUBDIR) $(TARGET_SUBDIR)  ; \
	mv stageprofile-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stageprofile-lean 

stagefeedback-end:: 
	@if test -d $(HOST_SUBDIR)/gcc ; then \
	  cd $(HOST_SUBDIR); mv gcc stagefeedback-gcc ; \
	  mv prev-gcc stageprofile-gcc ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/intl ; then \
	  cd $(HOST_SUBDIR); mv intl stagefeedback-intl ; \
	  mv prev-intl stageprofile-intl ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libcpp ; then \
	  cd $(HOST_SUBDIR); mv libcpp stagefeedback-libcpp ; \
	  mv prev-libcpp stageprofile-libcpp ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libdecnumber ; then \
	  cd $(HOST_SUBDIR); mv libdecnumber stagefeedback-libdecnumber ; \
	  mv prev-libdecnumber stageprofile-libdecnumber ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/libiberty ; then \
	  cd $(HOST_SUBDIR); mv libiberty stagefeedback-libiberty ; \
	  mv prev-libiberty stageprofile-libiberty ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/zlib ; then \
	  cd $(HOST_SUBDIR); mv zlib stagefeedback-zlib ; \
	  mv prev-zlib stageprofile-zlib ; :  ; \
	fi
	@if test -d $(HOST_SUBDIR)/lto-plugin ; then \
	  cd $(HOST_SUBDIR); mv lto-plugin stagefeedback-lto-plugin ; \
	  mv prev-lto-plugin stageprofile-lto-plugin ; :  ; \
	fi
	@if test -d $(TARGET_SUBDIR) ; then \
	  mv $(TARGET_SUBDIR) stagefeedback-$(TARGET_SUBDIR)  ; \
	  mv prev-$(TARGET_SUBDIR) stageprofile-$(TARGET_SUBDIR) ; :  ; \
	fi
	rm -f stage_current

# Bubble a bug fix through all the stages up to stage feedback.  They are
# remade, but not reconfigured.  The next stage (if any) will not be
# reconfigured either.
.PHONY: stagefeedback-bubble
stagefeedback-bubble:: stageprofile-bubble
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	if test -f stagefeedback-lean || test -f stageprofile-lean  ; then \
	  echo Skipping rebuild of stagefeedback ; \
	else \
	  $(MAKE) stagefeedback-start; \
	  $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stagefeedback; \
	fi

.PHONY: all-stagefeedback clean-stagefeedback
do-clean: clean-stagefeedback

# FIXME: Will not need to be conditional when toplevel bootstrap is the
# only possibility, but now it conflicts with no-bootstrap rules



stageprofile-end::
	$(MAKE) distclean-stagefeedback

stagefeedback-start::
	@r=`${PWD_COMMAND}`; export r; \
	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
	for i in prev-*; do \
	  j=`echo $$i | sed s/^prev-//` ; \
	  cd $$r/$$i && \
	  { find . -type d | sort | sed 's,.*,$(SHELL) '"$$s"'/mkinstalldirs "../'$$j'/&",' | $(SHELL) ; } && \
	  { find . -name '*.*da' | sed 's,.*,$(LN) -f "&" "../'$$j'/&",' | $(SHELL) ; } ; \
	done


# --------------------------------------
# Dependencies between different modules
# --------------------------------------

# Generic dependencies for target modules on host stuff, especially gcc

configure-target-libstdc++-v3: maybe-all-gcc
configure-target-libmudflap: maybe-all-gcc
configure-target-libssp: maybe-all-gcc
configure-target-newlib: maybe-all-gcc
configure-target-libgcc: maybe-all-gcc
configure-target-libquadmath: maybe-all-gcc
configure-target-libgfortran: maybe-all-gcc
configure-target-libobjc: maybe-all-gcc
configure-target-libgo: maybe-all-gcc
configure-target-libtermcap: maybe-all-gcc
configure-target-winsup: maybe-all-gcc
configure-target-libgloss: maybe-all-gcc
configure-target-libffi: maybe-all-gcc
configure-target-libjava: maybe-all-gcc
configure-target-zlib: maybe-all-gcc
configure-target-boehm-gc: maybe-all-gcc
configure-target-rda: maybe-all-gcc
configure-target-libada: maybe-all-gcc
configure-target-libgomp: maybe-all-gcc
configure-target-libitm: maybe-all-gcc


# There are two types of dependencies here: 'hard' dependencies, where one
# module simply won't build without the other; and 'soft' dependencies, where
# if the depended-on module is missing, the depending module will do without
# or find a substitute somewhere (perhaps installed).  Soft dependencies
# are made here to depend on a 'maybe-' target.  If you're not sure,
# it's safer to use a soft dependency.






# With all the machinery above in place, it is pretty easy to generate
# dependencies.  Host dependencies are a bit more complex because we have
# to check for bootstrap/prebootstrap dependencies.  To resolve
# prebootstrap dependencies, prebootstrap modules are gathered in
# a hash table.
all-build-bison: maybe-all-build-texinfo
all-build-flex: maybe-all-build-texinfo
all-build-flex: maybe-all-build-bison
all-build-flex: maybe-all-build-m4
all-build-libiberty: maybe-all-build-texinfo
all-build-m4: maybe-all-build-texinfo
all-build-fixincludes: maybe-all-build-libiberty
configure-gcc: maybe-configure-intl

configure-stage1-gcc: maybe-configure-stage1-intl
configure-stage2-gcc: maybe-configure-stage2-intl
configure-stage3-gcc: maybe-configure-stage3-intl
configure-stage4-gcc: maybe-configure-stage4-intl
configure-stageprofile-gcc: maybe-configure-stageprofile-intl
configure-stagefeedback-gcc: maybe-configure-stagefeedback-intl
configure-gcc: maybe-all-lto-plugin

configure-stage1-gcc: maybe-all-stage1-lto-plugin
configure-stage2-gcc: maybe-all-stage2-lto-plugin
configure-stage3-gcc: maybe-all-stage3-lto-plugin
configure-stage4-gcc: maybe-all-stage4-lto-plugin
configure-stageprofile-gcc: maybe-all-stageprofile-lto-plugin
configure-stagefeedback-gcc: maybe-all-stagefeedback-lto-plugin
configure-gcc: maybe-all-binutils

configure-stage1-gcc: maybe-all-stage1-binutils
configure-stage2-gcc: maybe-all-stage2-binutils
configure-stage3-gcc: maybe-all-stage3-binutils
configure-stage4-gcc: maybe-all-stage4-binutils
configure-stageprofile-gcc: maybe-all-stageprofile-binutils
configure-stagefeedback-gcc: maybe-all-stagefeedback-binutils
configure-gcc: maybe-all-gas

configure-stage1-gcc: maybe-all-stage1-gas
configure-stage2-gcc: maybe-all-stage2-gas
configure-stage3-gcc: maybe-all-stage3-gas
configure-stage4-gcc: maybe-all-stage4-gas
configure-stageprofile-gcc: maybe-all-stageprofile-gas
configure-stagefeedback-gcc: maybe-all-stagefeedback-gas
configure-gcc: maybe-all-ld

configure-stage1-gcc: maybe-all-stage1-ld
configure-stage2-gcc: maybe-all-stage2-ld
configure-stage3-gcc: maybe-all-stage3-ld
configure-stage4-gcc: maybe-all-stage4-ld
configure-stageprofile-gcc: maybe-all-stageprofile-ld
configure-stagefeedback-gcc: maybe-all-stagefeedback-ld
configure-gcc: maybe-all-gold

configure-stage1-gcc: maybe-all-stage1-gold
configure-stage2-gcc: maybe-all-stage2-gold
configure-stage3-gcc: maybe-all-stage3-gold
configure-stage4-gcc: maybe-all-stage4-gold
configure-stageprofile-gcc: maybe-all-stageprofile-gold
configure-stagefeedback-gcc: maybe-all-stagefeedback-gold
configure-gcc: maybe-all-libelf

configure-stage1-gcc: maybe-all-stage1-libelf
configure-stage2-gcc: maybe-all-stage2-libelf
configure-stage3-gcc: maybe-all-stage3-libelf
configure-stage4-gcc: maybe-all-stage4-libelf
configure-stageprofile-gcc: maybe-all-stageprofile-libelf
configure-stagefeedback-gcc: maybe-all-stagefeedback-libelf
all-gcc: all-libiberty

all-stage1-gcc: all-stage1-libiberty
all-stage2-gcc: all-stage2-libiberty
all-stage3-gcc: all-stage3-libiberty
all-stage4-gcc: all-stage4-libiberty
all-stageprofile-gcc: all-stageprofile-libiberty
all-stagefeedback-gcc: all-stagefeedback-libiberty
all-gcc: maybe-all-gmp

all-stage1-gcc: maybe-all-stage1-gmp
all-stage2-gcc: maybe-all-stage2-gmp
all-stage3-gcc: maybe-all-stage3-gmp
all-stage4-gcc: maybe-all-stage4-gmp
all-stageprofile-gcc: maybe-all-stageprofile-gmp
all-stagefeedback-gcc: maybe-all-stagefeedback-gmp
all-gcc: maybe-all-intl

all-stage1-gcc: maybe-all-stage1-intl
all-stage2-gcc: maybe-all-stage2-intl
all-stage3-gcc: maybe-all-stage3-intl
all-stage4-gcc: maybe-all-stage4-intl
all-stageprofile-gcc: maybe-all-stageprofile-intl
all-stagefeedback-gcc: maybe-all-stagefeedback-intl
all-gcc: maybe-all-mpfr

all-stage1-gcc: maybe-all-stage1-mpfr
all-stage2-gcc: maybe-all-stage2-mpfr
all-stage3-gcc: maybe-all-stage3-mpfr
all-stage4-gcc: maybe-all-stage4-mpfr
all-stageprofile-gcc: maybe-all-stageprofile-mpfr
all-stagefeedback-gcc: maybe-all-stagefeedback-mpfr
all-gcc: maybe-all-mpc

all-stage1-gcc: maybe-all-stage1-mpc
all-stage2-gcc: maybe-all-stage2-mpc
all-stage3-gcc: maybe-all-stage3-mpc
all-stage4-gcc: maybe-all-stage4-mpc
all-stageprofile-gcc: maybe-all-stageprofile-mpc
all-stagefeedback-gcc: maybe-all-stagefeedback-mpc
all-gcc: maybe-all-ppl

all-stage1-gcc: maybe-all-stage1-ppl
all-stage2-gcc: maybe-all-stage2-ppl
all-stage3-gcc: maybe-all-stage3-ppl
all-stage4-gcc: maybe-all-stage4-ppl
all-stageprofile-gcc: maybe-all-stageprofile-ppl
all-stagefeedback-gcc: maybe-all-stagefeedback-ppl
all-gcc: maybe-all-cloog

all-stage1-gcc: maybe-all-stage1-cloog
all-stage2-gcc: maybe-all-stage2-cloog
all-stage3-gcc: maybe-all-stage3-cloog
all-stage4-gcc: maybe-all-stage4-cloog
all-stageprofile-gcc: maybe-all-stageprofile-cloog
all-stagefeedback-gcc: maybe-all-stagefeedback-cloog
all-gcc: maybe-all-build-texinfo

all-stage1-gcc: maybe-all-build-texinfo
all-stage2-gcc: maybe-all-build-texinfo
all-stage3-gcc: maybe-all-build-texinfo
all-stage4-gcc: maybe-all-build-texinfo
all-stageprofile-gcc: maybe-all-build-texinfo
all-stagefeedback-gcc: maybe-all-build-texinfo
all-gcc: maybe-all-build-bison

all-stage1-gcc: maybe-all-build-bison
all-stage2-gcc: maybe-all-build-bison
all-stage3-gcc: maybe-all-build-bison
all-stage4-gcc: maybe-all-build-bison
all-stageprofile-gcc: maybe-all-build-bison
all-stagefeedback-gcc: maybe-all-build-bison
all-gcc: maybe-all-build-flex

all-stage1-gcc: maybe-all-build-flex
all-stage2-gcc: maybe-all-build-flex
all-stage3-gcc: maybe-all-build-flex
all-stage4-gcc: maybe-all-build-flex
all-stageprofile-gcc: maybe-all-build-flex
all-stagefeedback-gcc: maybe-all-build-flex
all-gcc: maybe-all-build-libiberty

all-stage1-gcc: maybe-all-build-libiberty
all-stage2-gcc: maybe-all-build-libiberty
all-stage3-gcc: maybe-all-build-libiberty
all-stage4-gcc: maybe-all-build-libiberty
all-stageprofile-gcc: maybe-all-build-libiberty
all-stagefeedback-gcc: maybe-all-build-libiberty
all-gcc: maybe-all-build-fixincludes

all-stage1-gcc: maybe-all-build-fixincludes
all-stage2-gcc: maybe-all-build-fixincludes
all-stage3-gcc: maybe-all-build-fixincludes
all-stage4-gcc: maybe-all-build-fixincludes
all-stageprofile-gcc: maybe-all-build-fixincludes
all-stagefeedback-gcc: maybe-all-build-fixincludes
all-gcc: maybe-all-zlib

all-stage1-gcc: maybe-all-stage1-zlib
all-stage2-gcc: maybe-all-stage2-zlib
all-stage3-gcc: maybe-all-stage3-zlib
all-stage4-gcc: maybe-all-stage4-zlib
all-stageprofile-gcc: maybe-all-stageprofile-zlib
all-stagefeedback-gcc: maybe-all-stagefeedback-zlib
all-gcc: all-libcpp

all-stage1-gcc: all-stage1-libcpp
all-stage2-gcc: all-stage2-libcpp
all-stage3-gcc: all-stage3-libcpp
all-stage4-gcc: all-stage4-libcpp
all-stageprofile-gcc: all-stageprofile-libcpp
all-stagefeedback-gcc: all-stagefeedback-libcpp
all-gcc: all-libdecnumber

all-stage1-gcc: all-stage1-libdecnumber
all-stage2-gcc: all-stage2-libdecnumber
all-stage3-gcc: all-stage3-libdecnumber
all-stage4-gcc: all-stage4-libdecnumber
all-stageprofile-gcc: all-stageprofile-libdecnumber
all-stagefeedback-gcc: all-stagefeedback-libdecnumber
all-gcc: maybe-all-libiberty

all-stage1-gcc: maybe-all-stage1-libiberty
all-stage2-gcc: maybe-all-stage2-libiberty
all-stage3-gcc: maybe-all-stage3-libiberty
all-stage4-gcc: maybe-all-stage4-libiberty
all-stageprofile-gcc: maybe-all-stageprofile-libiberty
all-stagefeedback-gcc: maybe-all-stagefeedback-libiberty
all-gcc: maybe-all-fixincludes
all-gcc: maybe-all-lto-plugin

all-stage1-gcc: maybe-all-stage1-lto-plugin
all-stage2-gcc: maybe-all-stage2-lto-plugin
all-stage3-gcc: maybe-all-stage3-lto-plugin
all-stage4-gcc: maybe-all-stage4-lto-plugin
all-stageprofile-gcc: maybe-all-stageprofile-lto-plugin
all-stagefeedback-gcc: maybe-all-stagefeedback-lto-plugin
info-gcc: maybe-all-build-libiberty

info-stage1-gcc: maybe-all-build-libiberty
info-stage2-gcc: maybe-all-build-libiberty
info-stage3-gcc: maybe-all-build-libiberty
info-stage4-gcc: maybe-all-build-libiberty
info-stageprofile-gcc: maybe-all-build-libiberty
info-stagefeedback-gcc: maybe-all-build-libiberty
dvi-gcc: maybe-all-build-libiberty

dvi-stage1-gcc: maybe-all-build-libiberty
dvi-stage2-gcc: maybe-all-build-libiberty
dvi-stage3-gcc: maybe-all-build-libiberty
dvi-stage4-gcc: maybe-all-build-libiberty
dvi-stageprofile-gcc: maybe-all-build-libiberty
dvi-stagefeedback-gcc: maybe-all-build-libiberty
pdf-gcc: maybe-all-build-libiberty

pdf-stage1-gcc: maybe-all-build-libiberty
pdf-stage2-gcc: maybe-all-build-libiberty
pdf-stage3-gcc: maybe-all-build-libiberty
pdf-stage4-gcc: maybe-all-build-libiberty
pdf-stageprofile-gcc: maybe-all-build-libiberty
pdf-stagefeedback-gcc: maybe-all-build-libiberty
html-gcc: maybe-all-build-libiberty

html-stage1-gcc: maybe-all-build-libiberty
html-stage2-gcc: maybe-all-build-libiberty
html-stage3-gcc: maybe-all-build-libiberty
html-stage4-gcc: maybe-all-build-libiberty
html-stageprofile-gcc: maybe-all-build-libiberty
html-stagefeedback-gcc: maybe-all-build-libiberty
install-gcc: maybe-install-fixincludes
install-gcc: maybe-install-lto-plugin
install-strip-gcc: maybe-install-strip-fixincludes
install-strip-gcc: maybe-install-strip-lto-plugin
configure-libcpp: configure-libiberty

configure-stage1-libcpp: configure-stage1-libiberty
configure-stage2-libcpp: configure-stage2-libiberty
configure-stage3-libcpp: configure-stage3-libiberty
configure-stage4-libcpp: configure-stage4-libiberty
configure-stageprofile-libcpp: configure-stageprofile-libiberty
configure-stagefeedback-libcpp: configure-stagefeedback-libiberty
configure-libcpp: maybe-configure-intl

configure-stage1-libcpp: maybe-configure-stage1-intl
configure-stage2-libcpp: maybe-configure-stage2-intl
configure-stage3-libcpp: maybe-configure-stage3-intl
configure-stage4-libcpp: maybe-configure-stage4-intl
configure-stageprofile-libcpp: maybe-configure-stageprofile-intl
configure-stagefeedback-libcpp: maybe-configure-stagefeedback-intl
all-libcpp: all-libiberty

all-stage1-libcpp: all-stage1-libiberty
all-stage2-libcpp: all-stage2-libiberty
all-stage3-libcpp: all-stage3-libiberty
all-stage4-libcpp: all-stage4-libiberty
all-stageprofile-libcpp: all-stageprofile-libiberty
all-stagefeedback-libcpp: all-stagefeedback-libiberty
all-libcpp: maybe-all-intl

all-stage1-libcpp: maybe-all-stage1-intl
all-stage2-libcpp: maybe-all-stage2-intl
all-stage3-libcpp: maybe-all-stage3-intl
all-stage4-libcpp: maybe-all-stage4-intl
all-stageprofile-libcpp: maybe-all-stageprofile-intl
all-stagefeedback-libcpp: maybe-all-stagefeedback-intl
all-fixincludes: maybe-all-libiberty
all-gnattools: maybe-all-target-libada
all-lto-plugin: maybe-all-libiberty

all-stage1-lto-plugin: maybe-all-stage1-libiberty
all-stage2-lto-plugin: maybe-all-stage2-libiberty
all-stage3-lto-plugin: maybe-all-stage3-libiberty
all-stage4-lto-plugin: maybe-all-stage4-libiberty
all-stageprofile-lto-plugin: maybe-all-stageprofile-libiberty
all-stagefeedback-lto-plugin: maybe-all-stagefeedback-libiberty
all-utils: maybe-all-libiberty
configure-mpfr: maybe-all-gmp

configure-stage1-mpfr: maybe-all-stage1-gmp
configure-stage2-mpfr: maybe-all-stage2-gmp
configure-stage3-mpfr: maybe-all-stage3-gmp
configure-stage4-mpfr: maybe-all-stage4-gmp
configure-stageprofile-mpfr: maybe-all-stageprofile-gmp
configure-stagefeedback-mpfr: maybe-all-stagefeedback-gmp
configure-mpc: maybe-all-mpfr

configure-stage1-mpc: maybe-all-stage1-mpfr
configure-stage2-mpc: maybe-all-stage2-mpfr
configure-stage3-mpc: maybe-all-stage3-mpfr
configure-stage4-mpc: maybe-all-stage4-mpfr
configure-stageprofile-mpc: maybe-all-stageprofile-mpfr
configure-stagefeedback-mpc: maybe-all-stagefeedback-mpfr
configure-ppl: maybe-all-gmp

configure-stage1-ppl: maybe-all-stage1-gmp
configure-stage2-ppl: maybe-all-stage2-gmp
configure-stage3-ppl: maybe-all-stage3-gmp
configure-stage4-ppl: maybe-all-stage4-gmp
configure-stageprofile-ppl: maybe-all-stageprofile-gmp
configure-stagefeedback-ppl: maybe-all-stagefeedback-gmp
configure-ppl: maybe-all-mpfr

configure-stage1-ppl: maybe-all-stage1-mpfr
configure-stage2-ppl: maybe-all-stage2-mpfr
configure-stage3-ppl: maybe-all-stage3-mpfr
configure-stage4-ppl: maybe-all-stage4-mpfr
configure-stageprofile-ppl: maybe-all-stageprofile-mpfr
configure-stagefeedback-ppl: maybe-all-stagefeedback-mpfr
configure-cloog: maybe-all-ppl

configure-stage1-cloog: maybe-all-stage1-ppl
configure-stage2-cloog: maybe-all-stage2-ppl
configure-stage3-cloog: maybe-all-stage3-ppl
configure-stage4-cloog: maybe-all-stage4-ppl
configure-stageprofile-cloog: maybe-all-stageprofile-ppl
configure-stagefeedback-cloog: maybe-all-stagefeedback-ppl
configure-gdb: maybe-all-intl
configure-gdb: maybe-configure-sim
configure-gdb: maybe-all-bfd
configure-gdb: maybe-all-libiconv
all-gdb: maybe-all-libiberty
all-gdb: maybe-all-libiconv
all-gdb: maybe-all-opcodes
all-gdb: maybe-all-readline
all-gdb: maybe-all-build-bison
all-gdb: maybe-all-sim
all-gdb: maybe-all-libdecnumber
all-gdb: maybe-all-libtermcap
configure-libgui: maybe-configure-tcl
configure-libgui: maybe-configure-tk
all-libgui: maybe-all-tcl
all-libgui: maybe-all-tk
all-libgui: maybe-all-itcl
configure-bfd: configure-libiberty

configure-stage1-bfd: configure-stage1-libiberty
configure-stage2-bfd: configure-stage2-libiberty
configure-stage3-bfd: configure-stage3-libiberty
configure-stage4-bfd: configure-stage4-libiberty
configure-stageprofile-bfd: configure-stageprofile-libiberty
configure-stagefeedback-bfd: configure-stagefeedback-libiberty
configure-bfd: maybe-configure-intl

configure-stage1-bfd: maybe-configure-stage1-intl
configure-stage2-bfd: maybe-configure-stage2-intl
configure-stage3-bfd: maybe-configure-stage3-intl
configure-stage4-bfd: maybe-configure-stage4-intl
configure-stageprofile-bfd: maybe-configure-stageprofile-intl
configure-stagefeedback-bfd: maybe-configure-stagefeedback-intl
all-bfd: maybe-all-libiberty

all-stage1-bfd: maybe-all-stage1-libiberty
all-stage2-bfd: maybe-all-stage2-libiberty
all-stage3-bfd: maybe-all-stage3-libiberty
all-stage4-bfd: maybe-all-stage4-libiberty
all-stageprofile-bfd: maybe-all-stageprofile-libiberty
all-stagefeedback-bfd: maybe-all-stagefeedback-libiberty
all-bfd: maybe-all-intl

all-stage1-bfd: maybe-all-stage1-intl
all-stage2-bfd: maybe-all-stage2-intl
all-stage3-bfd: maybe-all-stage3-intl
all-stage4-bfd: maybe-all-stage4-intl
all-stageprofile-bfd: maybe-all-stageprofile-intl
all-stagefeedback-bfd: maybe-all-stagefeedback-intl
configure-opcodes: configure-libiberty

configure-stage1-opcodes: configure-stage1-libiberty
configure-stage2-opcodes: configure-stage2-libiberty
configure-stage3-opcodes: configure-stage3-libiberty
configure-stage4-opcodes: configure-stage4-libiberty
configure-stageprofile-opcodes: configure-stageprofile-libiberty
configure-stagefeedback-opcodes: configure-stagefeedback-libiberty
all-opcodes: maybe-all-libiberty

all-stage1-opcodes: maybe-all-stage1-libiberty
all-stage2-opcodes: maybe-all-stage2-libiberty
all-stage3-opcodes: maybe-all-stage3-libiberty
all-stage4-opcodes: maybe-all-stage4-libiberty
all-stageprofile-opcodes: maybe-all-stageprofile-libiberty
all-stagefeedback-opcodes: maybe-all-stagefeedback-libiberty
configure-binutils: maybe-configure-intl

configure-stage1-binutils: maybe-configure-stage1-intl
configure-stage2-binutils: maybe-configure-stage2-intl
configure-stage3-binutils: maybe-configure-stage3-intl
configure-stage4-binutils: maybe-configure-stage4-intl
configure-stageprofile-binutils: maybe-configure-stageprofile-intl
configure-stagefeedback-binutils: maybe-configure-stagefeedback-intl
all-binutils: maybe-all-libiberty

all-stage1-binutils: maybe-all-stage1-libiberty
all-stage2-binutils: maybe-all-stage2-libiberty
all-stage3-binutils: maybe-all-stage3-libiberty
all-stage4-binutils: maybe-all-stage4-libiberty
all-stageprofile-binutils: maybe-all-stageprofile-libiberty
all-stagefeedback-binutils: maybe-all-stagefeedback-libiberty
all-binutils: maybe-all-opcodes

all-stage1-binutils: maybe-all-stage1-opcodes
all-stage2-binutils: maybe-all-stage2-opcodes
all-stage3-binutils: maybe-all-stage3-opcodes
all-stage4-binutils: maybe-all-stage4-opcodes
all-stageprofile-binutils: maybe-all-stageprofile-opcodes
all-stagefeedback-binutils: maybe-all-stagefeedback-opcodes
all-binutils: maybe-all-bfd

all-stage1-binutils: maybe-all-stage1-bfd
all-stage2-binutils: maybe-all-stage2-bfd
all-stage3-binutils: maybe-all-stage3-bfd
all-stage4-binutils: maybe-all-stage4-bfd
all-stageprofile-binutils: maybe-all-stageprofile-bfd
all-stagefeedback-binutils: maybe-all-stagefeedback-bfd
all-binutils: maybe-all-build-flex

all-stage1-binutils: maybe-all-build-flex
all-stage2-binutils: maybe-all-build-flex
all-stage3-binutils: maybe-all-build-flex
all-stage4-binutils: maybe-all-build-flex
all-stageprofile-binutils: maybe-all-build-flex
all-stagefeedback-binutils: maybe-all-build-flex
all-binutils: maybe-all-build-bison

all-stage1-binutils: maybe-all-build-bison
all-stage2-binutils: maybe-all-build-bison
all-stage3-binutils: maybe-all-build-bison
all-stage4-binutils: maybe-all-build-bison
all-stageprofile-binutils: maybe-all-build-bison
all-stagefeedback-binutils: maybe-all-build-bison
all-binutils: maybe-all-intl

all-stage1-binutils: maybe-all-stage1-intl
all-stage2-binutils: maybe-all-stage2-intl
all-stage3-binutils: maybe-all-stage3-intl
all-stage4-binutils: maybe-all-stage4-intl
all-stageprofile-binutils: maybe-all-stageprofile-intl
all-stagefeedback-binutils: maybe-all-stagefeedback-intl
install-binutils: maybe-install-opcodes
install-strip-binutils: maybe-install-strip-opcodes
install-opcodes: maybe-install-bfd
install-strip-opcodes: maybe-install-strip-bfd
configure-gas: maybe-configure-intl

configure-stage1-gas: maybe-configure-stage1-intl
configure-stage2-gas: maybe-configure-stage2-intl
configure-stage3-gas: maybe-configure-stage3-intl
configure-stage4-gas: maybe-configure-stage4-intl
configure-stageprofile-gas: maybe-configure-stageprofile-intl
configure-stagefeedback-gas: maybe-configure-stagefeedback-intl
all-gas: maybe-all-libiberty

all-stage1-gas: maybe-all-stage1-libiberty
all-stage2-gas: maybe-all-stage2-libiberty
all-stage3-gas: maybe-all-stage3-libiberty
all-stage4-gas: maybe-all-stage4-libiberty
all-stageprofile-gas: maybe-all-stageprofile-libiberty
all-stagefeedback-gas: maybe-all-stagefeedback-libiberty
all-gas: maybe-all-opcodes

all-stage1-gas: maybe-all-stage1-opcodes
all-stage2-gas: maybe-all-stage2-opcodes
all-stage3-gas: maybe-all-stage3-opcodes
all-stage4-gas: maybe-all-stage4-opcodes
all-stageprofile-gas: maybe-all-stageprofile-opcodes
all-stagefeedback-gas: maybe-all-stagefeedback-opcodes
all-gas: maybe-all-bfd

all-stage1-gas: maybe-all-stage1-bfd
all-stage2-gas: maybe-all-stage2-bfd
all-stage3-gas: maybe-all-stage3-bfd
all-stage4-gas: maybe-all-stage4-bfd
all-stageprofile-gas: maybe-all-stageprofile-bfd
all-stagefeedback-gas: maybe-all-stagefeedback-bfd
all-gas: maybe-all-intl

all-stage1-gas: maybe-all-stage1-intl
all-stage2-gas: maybe-all-stage2-intl
all-stage3-gas: maybe-all-stage3-intl
all-stage4-gas: maybe-all-stage4-intl
all-stageprofile-gas: maybe-all-stageprofile-intl
all-stagefeedback-gas: maybe-all-stagefeedback-intl
configure-gprof: maybe-configure-intl
all-gprof: maybe-all-libiberty
all-gprof: maybe-all-bfd
all-gprof: maybe-all-opcodes
all-gprof: maybe-all-intl
configure-ld: maybe-configure-intl

configure-stage1-ld: maybe-configure-stage1-intl
configure-stage2-ld: maybe-configure-stage2-intl
configure-stage3-ld: maybe-configure-stage3-intl
configure-stage4-ld: maybe-configure-stage4-intl
configure-stageprofile-ld: maybe-configure-stageprofile-intl
configure-stagefeedback-ld: maybe-configure-stagefeedback-intl
all-ld: maybe-all-libiberty

all-stage1-ld: maybe-all-stage1-libiberty
all-stage2-ld: maybe-all-stage2-libiberty
all-stage3-ld: maybe-all-stage3-libiberty
all-stage4-ld: maybe-all-stage4-libiberty
all-stageprofile-ld: maybe-all-stageprofile-libiberty
all-stagefeedback-ld: maybe-all-stagefeedback-libiberty
all-ld: maybe-all-bfd

all-stage1-ld: maybe-all-stage1-bfd
all-stage2-ld: maybe-all-stage2-bfd
all-stage3-ld: maybe-all-stage3-bfd
all-stage4-ld: maybe-all-stage4-bfd
all-stageprofile-ld: maybe-all-stageprofile-bfd
all-stagefeedback-ld: maybe-all-stagefeedback-bfd
all-ld: maybe-all-opcodes

all-stage1-ld: maybe-all-stage1-opcodes
all-stage2-ld: maybe-all-stage2-opcodes
all-stage3-ld: maybe-all-stage3-opcodes
all-stage4-ld: maybe-all-stage4-opcodes
all-stageprofile-ld: maybe-all-stageprofile-opcodes
all-stagefeedback-ld: maybe-all-stagefeedback-opcodes
all-ld: maybe-all-build-bison

all-stage1-ld: maybe-all-build-bison
all-stage2-ld: maybe-all-build-bison
all-stage3-ld: maybe-all-build-bison
all-stage4-ld: maybe-all-build-bison
all-stageprofile-ld: maybe-all-build-bison
all-stagefeedback-ld: maybe-all-build-bison
all-ld: maybe-all-build-flex

all-stage1-ld: maybe-all-build-flex
all-stage2-ld: maybe-all-build-flex
all-stage3-ld: maybe-all-build-flex
all-stage4-ld: maybe-all-build-flex
all-stageprofile-ld: maybe-all-build-flex
all-stagefeedback-ld: maybe-all-build-flex
all-ld: maybe-all-intl

all-stage1-ld: maybe-all-stage1-intl
all-stage2-ld: maybe-all-stage2-intl
all-stage3-ld: maybe-all-stage3-intl
all-stage4-ld: maybe-all-stage4-intl
all-stageprofile-ld: maybe-all-stageprofile-intl
all-stagefeedback-ld: maybe-all-stagefeedback-intl
install-ld: maybe-install-gold
install-strip-ld: maybe-install-strip-gold
configure-gold: maybe-configure-intl

configure-stage1-gold: maybe-configure-stage1-intl
configure-stage2-gold: maybe-configure-stage2-intl
configure-stage3-gold: maybe-configure-stage3-intl
configure-stage4-gold: maybe-configure-stage4-intl
configure-stageprofile-gold: maybe-configure-stageprofile-intl
configure-stagefeedback-gold: maybe-configure-stagefeedback-intl
all-gold: maybe-all-libiberty

all-stage1-gold: maybe-all-stage1-libiberty
all-stage2-gold: maybe-all-stage2-libiberty
all-stage3-gold: maybe-all-stage3-libiberty
all-stage4-gold: maybe-all-stage4-libiberty
all-stageprofile-gold: maybe-all-stageprofile-libiberty
all-stagefeedback-gold: maybe-all-stagefeedback-libiberty
all-gold: maybe-all-intl

all-stage1-gold: maybe-all-stage1-intl
all-stage2-gold: maybe-all-stage2-intl
all-stage3-gold: maybe-all-stage3-intl
all-stage4-gold: maybe-all-stage4-intl
all-stageprofile-gold: maybe-all-stageprofile-intl
all-stagefeedback-gold: maybe-all-stagefeedback-intl
all-gold: maybe-all-bfd

all-stage1-gold: maybe-all-stage1-bfd
all-stage2-gold: maybe-all-stage2-bfd
all-stage3-gold: maybe-all-stage3-bfd
all-stage4-gold: maybe-all-stage4-bfd
all-stageprofile-gold: maybe-all-stageprofile-bfd
all-stagefeedback-gold: maybe-all-stagefeedback-bfd
all-gold: maybe-all-build-bison

all-stage1-gold: maybe-all-build-bison
all-stage2-gold: maybe-all-build-bison
all-stage3-gold: maybe-all-build-bison
all-stage4-gold: maybe-all-build-bison
all-stageprofile-gold: maybe-all-build-bison
all-stagefeedback-gold: maybe-all-build-bison
check-gold: maybe-all-binutils

check-stage1-gold: maybe-all-stage1-binutils
check-stage2-gold: maybe-all-stage2-binutils
check-stage3-gold: maybe-all-stage3-binutils
check-stage4-gold: maybe-all-stage4-binutils
check-stageprofile-gold: maybe-all-stageprofile-binutils
check-stagefeedback-gold: maybe-all-stagefeedback-binutils
check-gold: maybe-all-gas

check-stage1-gold: maybe-all-stage1-gas
check-stage2-gold: maybe-all-stage2-gas
check-stage3-gold: maybe-all-stage3-gas
check-stage4-gold: maybe-all-stage4-gas
check-stageprofile-gold: maybe-all-stageprofile-gas
check-stagefeedback-gold: maybe-all-stagefeedback-gas
configure-opcodes: maybe-configure-intl

configure-stage1-opcodes: maybe-configure-stage1-intl
configure-stage2-opcodes: maybe-configure-stage2-intl
configure-stage3-opcodes: maybe-configure-stage3-intl
configure-stage4-opcodes: maybe-configure-stage4-intl
configure-stageprofile-opcodes: maybe-configure-stageprofile-intl
configure-stagefeedback-opcodes: maybe-configure-stagefeedback-intl
all-opcodes: maybe-all-bfd

all-stage1-opcodes: maybe-all-stage1-bfd
all-stage2-opcodes: maybe-all-stage2-bfd
all-stage3-opcodes: maybe-all-stage3-bfd
all-stage4-opcodes: maybe-all-stage4-bfd
all-stageprofile-opcodes: maybe-all-stageprofile-bfd
all-stagefeedback-opcodes: maybe-all-stagefeedback-bfd
all-opcodes: maybe-all-libiberty

all-stage1-opcodes: maybe-all-stage1-libiberty
all-stage2-opcodes: maybe-all-stage2-libiberty
all-stage3-opcodes: maybe-all-stage3-libiberty
all-stage4-opcodes: maybe-all-stage4-libiberty
all-stageprofile-opcodes: maybe-all-stageprofile-libiberty
all-stagefeedback-opcodes: maybe-all-stagefeedback-libiberty
all-opcodes: maybe-all-intl

all-stage1-opcodes: maybe-all-stage1-intl
all-stage2-opcodes: maybe-all-stage2-intl
all-stage3-opcodes: maybe-all-stage3-intl
all-stage4-opcodes: maybe-all-stage4-intl
all-stageprofile-opcodes: maybe-all-stageprofile-intl
all-stagefeedback-opcodes: maybe-all-stagefeedback-intl
all-dejagnu: maybe-all-tcl
all-dejagnu: maybe-all-expect
all-dejagnu: maybe-all-tk
configure-expect: maybe-configure-tcl
configure-expect: maybe-configure-tk
all-expect: maybe-all-tcl
all-expect: maybe-all-tk
configure-itcl: maybe-configure-tcl
configure-itcl: maybe-configure-tk
all-itcl: maybe-all-tcl
all-itcl: maybe-all-tk
install-itcl: maybe-install-tcl
install-strip-itcl: maybe-install-strip-tcl
configure-tk: maybe-configure-tcl
all-tk: maybe-all-tcl
all-sid: maybe-all-libiberty
all-sid: maybe-all-bfd
all-sid: maybe-all-opcodes
all-sid: maybe-all-tcl
all-sid: maybe-all-tk
install-sid: maybe-install-tcl
install-strip-sid: maybe-install-strip-tcl
install-sid: maybe-install-tk
install-strip-sid: maybe-install-strip-tk
configure-sim: maybe-configure-intl
all-sim: maybe-all-intl
all-sim: maybe-all-libiberty
all-sim: maybe-all-bfd
all-sim: maybe-all-opcodes
all-sim: maybe-all-readline
all-sim: maybe-configure-gdb
all-fastjar: maybe-all-zlib
all-fastjar: maybe-all-build-texinfo
all-fastjar: maybe-all-libiberty
all-bison: maybe-all-intl
all-bison: maybe-all-build-texinfo
all-flex: maybe-all-build-bison
all-flex: maybe-all-intl
all-flex: maybe-all-m4
all-flex: maybe-all-build-texinfo
all-m4: maybe-all-intl
all-m4: maybe-all-build-texinfo
configure-target-boehm-gc: maybe-all-target-libstdc++-v3
configure-target-fastjar: maybe-configure-target-zlib
all-target-fastjar: maybe-all-target-zlib
configure-target-libgo: maybe-configure-target-libffi
configure-target-libgo: maybe-all-target-libstdc++-v3
all-target-libgo: maybe-all-target-libffi
configure-target-libjava: maybe-configure-target-zlib
configure-target-libjava: maybe-configure-target-boehm-gc
configure-target-libjava: maybe-configure-target-libffi
all-target-libjava: maybe-all-fastjar
all-target-libjava: maybe-all-target-zlib
all-target-libjava: maybe-all-target-boehm-gc
all-target-libjava: maybe-all-target-libffi
configure-target-libobjc: maybe-configure-target-boehm-gc
all-target-libobjc: maybe-all-target-boehm-gc
configure-target-libstdc++-v3: maybe-configure-target-libgomp

configure-stage1-target-libstdc++-v3: maybe-configure-stage1-target-libgomp
configure-stage2-target-libstdc++-v3: maybe-configure-stage2-target-libgomp
configure-stage3-target-libstdc++-v3: maybe-configure-stage3-target-libgomp
configure-stage4-target-libstdc++-v3: maybe-configure-stage4-target-libgomp
configure-stageprofile-target-libstdc++-v3: maybe-configure-stageprofile-target-libgomp
configure-stagefeedback-target-libstdc++-v3: maybe-configure-stagefeedback-target-libgomp
all-target-libstdc++-v3: maybe-configure-target-libgomp

all-stage1-target-libstdc++-v3: maybe-configure-stage1-target-libgomp
all-stage2-target-libstdc++-v3: maybe-configure-stage2-target-libgomp
all-stage3-target-libstdc++-v3: maybe-configure-stage3-target-libgomp
all-stage4-target-libstdc++-v3: maybe-configure-stage4-target-libgomp
all-stageprofile-target-libstdc++-v3: maybe-configure-stageprofile-target-libgomp
all-stagefeedback-target-libstdc++-v3: maybe-configure-stagefeedback-target-libgomp
all-target-libgloss: maybe-all-target-newlib
all-target-winsup: maybe-all-target-libtermcap
configure-target-newlib: maybe-all-binutils
configure-target-newlib: maybe-all-ld
configure-target-libgfortran: maybe-all-target-libquadmath


# Dependencies for target modules on other target modules are
# described by lang_env_dependencies; the defaults apply to anything
# not mentioned there.



configure-target-libstdc++-v3: maybe-all-target-libgcc
configure-target-libmudflap: maybe-all-target-libgcc
configure-target-libssp: maybe-all-target-libgcc
configure-target-newlib: maybe-all-target-libgcc
configure-target-libquadmath: maybe-all-target-libgcc
configure-target-libgfortran: maybe-all-target-libgcc
configure-target-libobjc: maybe-all-target-libgcc
configure-target-libgo: maybe-all-target-libgcc
configure-target-libtermcap: maybe-all-target-libgcc
configure-target-winsup: maybe-all-target-libgcc
configure-target-libgloss: maybe-all-target-libgcc
configure-target-libffi: maybe-all-target-libgcc
configure-target-libjava: maybe-all-target-libgcc
configure-target-zlib: maybe-all-target-libgcc
configure-target-boehm-gc: maybe-all-target-libgcc
configure-target-rda: maybe-all-target-libgcc
configure-target-libada: maybe-all-target-libgcc
configure-target-libgomp: maybe-all-target-libgcc
configure-target-libitm: maybe-all-target-libgcc


configure-target-libstdc++-v3: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-libmudflap: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-libssp: maybe-all-target-newlib maybe-all-target-libgloss



configure-target-libquadmath: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-libgfortran: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-libobjc: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-libgo: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-libtermcap: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-winsup: maybe-all-target-newlib maybe-all-target-libgloss


configure-target-libffi: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-libjava: maybe-all-target-newlib maybe-all-target-libgloss
configure-target-libjava: maybe-all-target-libstdc++-v3

configure-target-zlib: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-boehm-gc: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-rda: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-libada: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-libgomp: maybe-all-target-newlib maybe-all-target-libgloss

configure-target-libitm: maybe-all-target-newlib maybe-all-target-libgloss
configure-target-libitm: maybe-all-target-libstdc++-v3


CONFIGURE_GDB_TK = 
GDB_TK = 
INSTALL_GDB_TK = 
configure-gdb: $(CONFIGURE_GDB_TK)
all-gdb: $(gdbnlmrequirements) $(GDB_TK)
install-gdb: $(INSTALL_GDB_TK)

# Serialization dependencies.  Host configures don't work well in parallel to
# each other, due to contention over config.cache.  Target configures and 
# build configures are similar.
# serdep.tmp

# --------------------------------
# Regenerating top level configury
# --------------------------------

# Rebuilding Makefile.in, using autogen.
AUTOGEN = autogen
$(srcdir)/Makefile.in: # $(srcdir)/Makefile.tpl $(srcdir)/Makefile.def
	cd $(srcdir) && $(AUTOGEN) Makefile.def

# Rebuilding Makefile.
Makefile: $(srcdir)/Makefile.in config.status
	CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status

config.status: configure
	CONFIG_SHELL="$(SHELL)" $(SHELL) ./config.status --recheck

# Rebuilding configure.
AUTOCONF = autoconf
$(srcdir)/configure: # $(srcdir)/configure.ac $(srcdir)/config/acx.m4 \
	$(srcdir)/config/override.m4 $(srcdir)/config/proginstall.m4
	cd $(srcdir) && $(AUTOCONF)

# ------------------------------
# Special directives to GNU Make
# ------------------------------

# Don't pass command-line variables to submakes.
.NOEXPORT:
MAKEOVERRIDES=

# end of Makefile.in
I did a search and it could not find it anywhere in there. Any assistance in this matter would be greatly appreciated.

Sincerely,

Vectrix Quest
User avatar
BlueCrab
The Crabby Overlord
The Crabby Overlord
Posts: 5658
Joined: Mon May 27, 2002 11:31 am
Location: Sailing the Skies of Arcadia
Has thanked: 9 times
Been thanked: 69 times
Contact:

Re: DCDev ISO Link

Post by BlueCrab »

No... Not the GCC Makefile, the dc-chain one.
Post Reply