<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SpiralRay's Blog Room</title>
	<atom:link href="http://spiralray.rakusei.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://spiralray.rakusei.net/blog</link>
	<description>学生がいろいろ書いている場所。</description>
	<lastBuildDate>Mon, 30 Jan 2012 15:00:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ATMega328PをSPIスレーブモードで動かす。</title>
		<link>http://spiralray.rakusei.net/blog/2012/01/30/atmega328p%e3%82%92spi%e3%82%b9%e3%83%ac%e3%83%bc%e3%83%96%e3%83%a2%e3%83%bc%e3%83%89%e3%81%a7%e5%8b%95%e3%81%8b%e3%81%99%e3%80%82/</link>
		<comments>http://spiralray.rakusei.net/blog/2012/01/30/atmega328p%e3%82%92spi%e3%82%b9%e3%83%ac%e3%83%bc%e3%83%96%e3%83%a2%e3%83%bc%e3%83%89%e3%81%a7%e5%8b%95%e3%81%8b%e3%81%99%e3%80%82/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 14:58:48 +0000</pubDate>
		<dc:creator>SpiralRay</dc:creator>
				<category><![CDATA[AVR]]></category>

		<guid isPermaLink="false">http://spiralray.rakusei.net/blog/?p=1387</guid>
		<description><![CDATA[分かってる。勉強しないと行けないことは分かってる。
STMBeeのSPI2をマスターにして

MCP3208経由でジャイロセンサ(LY530AL)の値を読み込み
ATMega328P(SPIスレーブ)経由でマウスセンサ( [...]]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: line-through;">分かってる。勉強しないと行けないことは分かってる。</span></p>
<p>STMBeeのSPI2をマスターにして</p>
<ul>
<li>MCP3208経由で<a  href="http://www.switch-science.com/products/detail.php?product_id=733">ジャイロセンサ(LY530AL)</a>の値を読み込み</li>
<li>ATMega328P(SPIスレーブ)経由で<a  href="http://www.switch-science.com/products/detail.php?product_id=459">マウスセンサ(ADNS2620)</a>の値を読み込み</li>
</ul>
<p>この二つに成功しました。</p>
<p>ATmegaのSPIスレーブでハマったので、サンプルプログラムを上げておきます。</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/spi_slave_328p.zip">spi_slave_328p.zip</a><br />
<code><br />
<span style="color: #ff0000;">ISR(SPI_STC_vect){			/* データが届いたとき＝SPIFが立ったときの割込みルーチン */</p>
<p>	//今回の通信で受信するデータ<br />
	int rec=SPDR;<a href="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/spi_slave_328p.zip"></a></p>
<p>	//通信完了待ち<br />
	while(!SPSR);</p>
<p>	//次の通信で送るデータをセット<br />
	extern int count;<br />
	SPDR=count;</p>
<p>}</span></p>
<p></code><br />
となっていますので、全て割り込みで処理できます。</p>
<p>10KB/sくらい出ましたよー</p>
<p>おまけ</p>
<p>マウスセンサを動かしてみた時の動画(フルスクリーンにする方が見やすいです)<br />
<iframe width="560" height="315" src="http://www.youtube.com/embed/M2jk156hA8Y" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://spiralray.rakusei.net/blog/2012/01/30/atmega328p%e3%82%92spi%e3%82%b9%e3%83%ac%e3%83%bc%e3%83%96%e3%83%a2%e3%83%bc%e3%83%89%e3%81%a7%e5%8b%95%e3%81%8b%e3%81%99%e3%80%82/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SH7264のEagleライブラリ</title>
		<link>http://spiralray.rakusei.net/blog/2012/01/09/sh7264%e3%81%aeeagle%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa/</link>
		<comments>http://spiralray.rakusei.net/blog/2012/01/09/sh7264%e3%81%aeeagle%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 16:34:36 +0000</pubDate>
		<dc:creator>SpiralRay</dc:creator>
				<category><![CDATA[Robot]]></category>

		<guid isPermaLink="false">http://spiralray.rakusei.net/blog/?p=1384</guid>
		<description><![CDATA[SH7264のEagleライブラリを作りました。
正常かどうかは未確認なので利用は自己責任でお願いします。
昔、Interfaceの付録でついてきたSH7262のピンが増えたバージョンだから、そのときのソースコードをその [...]]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.eonet.ne.jp/~borderwb/eagle/sh7264.lbr">SH7264のEagleライブラリ</a>を作りました。</p>
<p>正常かどうかは未確認なので利用は自己責任でお願いします。</p>
<p>昔、Interfaceの付録でついてきたSH7262のピンが増えたバージョンだから、そのときのソースコードをそのまま使えるはず。</p>
<p>ロボカップジュニアの画像(ゴール)解析に使おうかなって思って作りました。</p>
<p>受験終わってから、この前作ったあのサッカー基板のバージョンアップ版を作ろうと予定しているのですが、そこに画像解析機能も直接搭載してしまおうかと。</p>
<p>けど、Interfaceの付録使用した方がお金かからないし設計ミスもないし…悩みどころですね…</p>
<p>(FT2232のJTAGでSH-2A扱えるんですよね…？)</p>
]]></content:encoded>
			<wfw:commentRss>http://spiralray.rakusei.net/blog/2012/01/09/sh7264%e3%81%aeeagle%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>お年玉ならぬお年チップげと</title>
		<link>http://spiralray.rakusei.net/blog/2012/01/04/%e3%81%8a%e5%b9%b4%e7%8e%89%e3%81%aa%e3%82%89%e3%81%ac%e3%81%8a%e5%b9%b4%e3%83%81%e3%83%83%e3%83%97%e3%81%92%e3%81%a8/</link>
		<comments>http://spiralray.rakusei.net/blog/2012/01/04/%e3%81%8a%e5%b9%b4%e7%8e%89%e3%81%aa%e3%82%89%e3%81%ac%e3%81%8a%e5%b9%b4%e3%83%81%e3%83%83%e3%83%97%e3%81%92%e3%81%a8/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 15:35:38 +0000</pubDate>
		<dc:creator>SpiralRay</dc:creator>
				<category><![CDATA[STM32]]></category>

		<guid isPermaLink="false">http://spiralray.rakusei.net/blog/2012/01/04/%e3%81%8a%e5%b9%b4%e7%8e%89%e3%81%aa%e3%82%89%e3%81%ac%e3%81%8a%e5%b9%b4%e3%83%81%e3%83%83%e3%83%97%e3%81%92%e3%81%a8/</guid>
		<description><![CDATA[どうも、センター試験10日前、SpiralRayです。
なんで酒の神様の所に未成年が行くのだろうとか思いながら家族で松尾大社いきました。

「争ひ事必ず勝利あり」これ、受験のことかロボカップのことかどっちでしょうね？
S [...]]]></description>
			<content:encoded><![CDATA[<p>どうも、センター試験10日前、SpiralRayです。</p>
<p>なんで酒の神様の所に未成年が行くのだろうとか思いながら家族で松尾大社いきました。<br />
<a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-003021.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-003021.jpg" alt="20120104-003021.jpg" class="alignnone size-full" /></a></p>
<p>「争ひ事必ず勝利あり」これ、受験のことかロボカップのことかどっちでしょうね？</p>
<p>STM32がいっぱい届きました。<br />
<a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-000300.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-000300.jpg" alt="20120104-000300.jpg" class="alignnone size-full" /></a></p>
<p>LQFP176ってでかいんですね<br />
なぜかF407VGT6を3個頼んだはずなのに2個しか入っていなくて、代わりに128MbのNOR FLASHがはいってました。<br />
FSMCのテストをしろってことかな？</p>
<p>この前100ピンのSTM32用の基板を頼んだので、そこにF103VET6とF407VGT6をのせることに。<br />
F103</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-000853.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-000853.jpg" alt="20120104-000853.jpg" class="alignnone size-full" /></a></p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-000905.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-000905.jpg" alt="20120104-000905.jpg" class="alignnone size-full" /></a><br />
えぇ、言いたいことはわかります。<br />
<strong>なにこの水晶？</strong></p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-001021.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-001021.jpg" alt="20120104-001021.jpg" class="alignnone size-full" /></a><br />
表面実装の水晶振動子8MHzをつけるはずなのに、クリスタルオシレーター買っちゃだたんですよ。バカですね。</p>
<p>(データシートに習って)裏面のはんだジャンパによってF1、F2、F4すべてに対応しています。0Ω抵抗でやってますけど。</p>
<p>さらに、USBにつなげるかIOとして使うかも0Ω抵抗で選択可能にしました。<br />
が、USBのD+(だっけ？)をプルアップし忘れている＆配線が悪い＆22Ωと1.5kの抵抗がない為、今のところUSB使えません。</p>
<p>F407は今のところマイコン本体のみの状態です。</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-002356.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-002356.jpg" alt="20120104-002356.jpg" class="alignnone size-full" /></a></p>
<p>ぁ、昨日今日でモタドラ設計しました。回路図パクリですけど。<br />
ロボカップに使うかな？微妙なところです。</p>
<p>うん。さすがにそろそろ勉強します。多分。</p>
<p>京都でこんな変な人がいたら僕です。</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-002742.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2012/01/20120104-002742.jpg" alt="20120104-002742.jpg" class="alignnone size-full" /></a></p>
<p>見かけたら、配線細すぎだろと心の中で突っ込んでください。</p>
<p>では。</p>
]]></content:encoded>
			<wfw:commentRss>http://spiralray.rakusei.net/blog/2012/01/04/%e3%81%8a%e5%b9%b4%e7%8e%89%e3%81%aa%e3%82%89%e3%81%ac%e3%81%8a%e5%b9%b4%e3%83%81%e3%83%83%e3%83%97%e3%81%92%e3%81%a8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>newlibビルドエラー…</title>
		<link>http://spiralray.rakusei.net/blog/2012/01/01/newlib%e3%83%93%e3%83%ab%e3%83%89%e3%82%a8%e3%83%a9%e3%83%bc%e2%80%a6/</link>
		<comments>http://spiralray.rakusei.net/blog/2012/01/01/newlib%e3%83%93%e3%83%ab%e3%83%89%e3%82%a8%e3%83%a9%e3%83%bc%e2%80%a6/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 13:30:15 +0000</pubDate>
		<dc:creator>SpiralRay</dc:creator>
				<category><![CDATA[STM32]]></category>

		<guid isPermaLink="false">http://spiralray.rakusei.net/blog/?p=1372</guid>
		<description><![CDATA[明けましておめでとうございます。
コチラを参考にしてCygwin上でCortex-m4のFPUをフルに使っちゃろーと思って早数週間…
上のサイトで使われているパッチを適応したらnewlibをmake時にError吐かれるという…
そのパッチをさらに変更して
MULTILIB_EXCEPTIONS += mcpu=cortex-m4*
MULTILIB_OPTIONS += mfloat-abi=hard mfpu=fpv4-sp-d16
MULTILIB_DIRNAMES += float-abi-hard fpuv4-sp-d16
MULTILIB_EXCEPTIONS += mfpu* mthumb/mfpu*
MULTILIB_EXCEPTIONS += mthumb/mcpu=cortex-m4/mfloat-abi=hard
MULTILIB_EXCEPTIONS += mthumb/mcpu=cortex-m4/mfpu=fpv4-sp-d16
このように極限にまで減らしてもやはり無理…
どなたか助けてください…
続きにlog貼っときます。
途中で「少し弄る」があり、その後再度make allしましたがやっぱエラーですよ…
センター2週間前。物理やべぇ
er/dpd -I../libdecnumber     ../../gcc/tree-diagnostic.c -o tree-diagnostic.o
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-dump.c -o tree-dump.o
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  [...]]]></description>
			<content:encoded><![CDATA[<p>明けましておめでとうございます。</p>
<p><a  href="http://www.nabiltewolde.com/2011/10/using-stm32f4-discovery-board-in-osx.html">コチラ</a>を参考にしてCygwin上でCortex-m4のFPUをフルに使っちゃろーと思って早数週間…</p>
<p>上のサイトで使われているパッチを適応したらnewlibをmake時にError吐かれるという…</p>
<p>そのパッチをさらに変更して</p>
<p>MULTILIB_EXCEPTIONS += mcpu=cortex-m4*</p>
<p>MULTILIB_OPTIONS += mfloat-abi=hard mfpu=fpv4-sp-d16<br />
MULTILIB_DIRNAMES += float-abi-hard fpuv4-sp-d16<br />
MULTILIB_EXCEPTIONS += mfpu* mthumb/mfpu*<br />
MULTILIB_EXCEPTIONS += mthumb/mcpu=cortex-m4/mfloat-abi=hard<br />
MULTILIB_EXCEPTIONS += mthumb/mcpu=cortex-m4/mfpu=fpv4-sp-d16</p>
<p>このように極限にまで減らしてもやはり無理…</p>
<p>どなたか助けてください…</p>
<p>続きにlog貼っときます。</p>
<p>途中で「少し弄る」があり、その後再度make allしましたがやっぱエラーですよ…</p>
<p>センター2週間前。物理やべぇ</p>
<p><span id="more-1372"></span>er/dpd -I../libdecnumber     ../../gcc/tree-diagnostic.c -o tree-diagnostic.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-dump.c -o tree-dump.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-eh.c -o tree-eh.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-emutls.c -o tree-emutls.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-if-conv.c -o tree-if-conv.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-into-ssa.c -o tree-into-ssa.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-iterator.c -o tree-iterator.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-loop-distribution.c -o tree-loop-distribution.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-nested.c -o tree-nested.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-nrv.c -o tree-nrv.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-object-size.c -o tree-object-size.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-optimize.c -o tree-optimize.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-outof-ssa.c -o tree-outof-ssa.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-parloops.c -o tree-parloops.o<br />
../../gcc/tree-parloops.c: In function `eliminate_local_variables&#8217;:<br />
../../gcc/tree-parloops.c:717: warning: suggest explicit braces to avoid ambiguous `else&#8217;<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-phinodes.c -o tree-phinodes.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-predcom.c -o tree-predcom.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-pretty-print.c -o tree-pretty-print.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-profile.c -o tree-profile.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-scalar-evolution.c -o tree-scalar-evolution.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-sra.c -o tree-sra.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-switch-conversion.c -o tree-switch-conversion.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-address.c -o tree-ssa-address.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-alias.c -o tree-ssa-alias.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-ccp.c -o tree-ssa-ccp.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-coalesce.c -o tree-ssa-coalesce.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-copy.c -o tree-ssa-copy.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-copyrename.c -o tree-ssa-copyrename.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-dce.c -o tree-ssa-dce.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-dom.c -o tree-ssa-dom.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-dse.c -o tree-ssa-dse.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-forwprop.c -o tree-ssa-forwprop.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-ifcombine.c -o tree-ssa-ifcombine.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-live.c -o tree-ssa-live.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-loop-ch.c -o tree-ssa-loop-ch.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-loop-im.c -o tree-ssa-loop-im.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-loop-ivcanon.c -o tree-ssa-loop-ivcanon.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-loop-ivopts.c -o tree-ssa-loop-ivopts.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-loop-manip.c -o tree-ssa-loop-manip.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-loop-niter.c -o tree-ssa-loop-niter.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-loop-prefetch.c -o tree-ssa-loop-prefetch.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-loop-unswitch.c -o tree-ssa-loop-unswitch.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-loop.c -o tree-ssa-loop.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-math-opts.c -o tree-ssa-math-opts.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-operands.c -o tree-ssa-operands.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-phiopt.c -o tree-ssa-phiopt.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-phiprop.c -o tree-ssa-phiprop.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-pre.c -o tree-ssa-pre.o<br />
../../gcc/tree-ssa-pre.c: In function `print_pre_expr&#8217;:<br />
../../gcc/tree-ssa-pre.c:930: warning: comparison between signed and unsigned<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-propagate.c -o tree-ssa-propagate.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-reassoc.c -o tree-ssa-reassoc.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-sccvn.c -o tree-ssa-sccvn.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-sink.c -o tree-ssa-sink.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-structalias.c -o tree-ssa-structalias.o<br />
../../gcc/tree-ssa-structalias.c: In function `handle_lhs_call&#8217;:<br />
../../gcc/tree-ssa-structalias.c:3905: warning: comparison between signed and unsigned<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-ter.c -o tree-ssa-ter.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-threadedge.c -o tree-ssa-threadedge.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-threadupdate.c -o tree-ssa-threadupdate.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-uncprop.c -o tree-ssa-uncprop.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa-uninit.c -o tree-ssa-uninit.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssa.c -o tree-ssa.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-ssanames.c -o tree-ssanames.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-stdarg.c -o tree-stdarg.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-tailcall.c -o tree-tailcall.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-vect-generic.c -o tree-vect-generic.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-vect-patterns.c -o tree-vect-patterns.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-vect-data-refs.c -o tree-vect-data-refs.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-vect-stmts.c -o tree-vect-stmts.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-vect-loop.c -o tree-vect-loop.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-vect-loop-manip.c -o tree-vect-loop-manip.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-vect-slp.c -o tree-vect-slp.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-vectorizer.c -o tree-vectorizer.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-vrp.c -o tree-vrp.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree.c -o tree.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/value-prof.c -o value-prof.o<br />
../../gcc/value-prof.c: In function `gimple_mod_subtract_transform&#8217;:<br />
../../gcc/value-prof.c:877: warning: &#8216;bb3&#8242; might be used uninitialized in this function<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/var-tracking.c -o var-tracking.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/varasm.c -o varasm.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/vec.c -o vec.o<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     \<br />
-DBASEVER=&#8221;\&#8221;4.6.2\&#8221;" -DDATESTAMP=&#8221;\&#8221;\&#8221;" \<br />
-DREVISION=&#8221;\&#8221;\&#8221;" \<br />
-DDEVPHASE=&#8221;\&#8221;\&#8221;" -DPKGVERSION=&#8221;\&#8221;(GCC) \&#8221;" \<br />
-DBUGURL=&#8221;\&#8221;&lt;http://gcc.gnu.org/bugs.html&gt;\&#8221;" -c ../../gcc/version.c -o version.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/vmsdbgout.c -o vmsdbgout.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/web.c -o web.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/xcoffout.c -o xcoffout.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     \<br />
../../gcc/config/arm/arm.c -o arm.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber    \<br />
../../gcc/config/i386/host-cygwin.c<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cgraph.c -o cgraph.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cgraphbuild.c -o cgraphbuild.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cgraphunit.c -o cgraphunit.o<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     \<br />
-DGCC_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include\&#8221;  -DFIXED_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include-fixed\&#8221;  -DGPLUSPLUS_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/include/c++/4.6.2\&#8221;  -DGPLUSPLUS_TOOL_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/include/c++/4.6.2/arm-none-eabi\&#8221;  -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/include/c++/4.6.2/backward\&#8221;  -DLOCAL_INCLUDE_DIR=\&#8221;/usr/local/include\&#8221;  -DCROSS_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/sys-include\&#8221;  -DTOOL_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/include\&#8221;  -DPREFIX=\&#8221;/home/csamuelson/mat/\&#8221;  -DSTANDARD_EXEC_PREFIX=\&#8221;/home/csamuelson/mat/lib/gcc/\&#8221;   -DBASEVER=&#8221;\&#8221;4.6.2\&#8221;" \<br />
-c ../../gcc/cppbuiltin.c -o cppbuiltin.o<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     \<br />
-DGCC_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include\&#8221;  -DFIXED_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include-fixed\&#8221;  -DGPLUSPLUS_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/include/c++/4.6.2\&#8221;  -DGPLUSPLUS_TOOL_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/include/c++/4.6.2/arm-none-eabi\&#8221;  -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/include/c++/4.6.2/backward\&#8221;  -DLOCAL_INCLUDE_DIR=\&#8221;/usr/local/include\&#8221;  -DCROSS_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/sys-include\&#8221;  -DTOOL_INCLUDE_DIR=\&#8221;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/include\&#8221;  -DPREFIX=\&#8221;/home/csamuelson/mat/\&#8221;  -DSTANDARD_EXEC_PREFIX=\&#8221;/home/csamuelson/mat/lib/gcc/\&#8221;   \<br />
-c ../../gcc/cppdefault.c -o cppdefault.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/incpath.c -o incpath.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/ipa-cp.c -o ipa-cp.o<br />
../../gcc/ipa-cp.c: In function `ipcp_driver&#8217;:<br />
../../gcc/ipa-cp.c:1227: warning: &#8216;delta&#8217; might be used uninitialized in this function<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/ipa-split.c -o ipa-split.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/ipa-inline.c -o ipa-inline.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/ipa-prop.c -o ipa-prop.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/ipa-pure-const.c -o ipa-pure-const.o<br />
../../gcc/ipa-pure-const.c: In function `special_builtin_state&#8217;:<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ACOS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ACOSF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ACOSH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ACOSHF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ACOSHL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ACOSL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ASIN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ASINF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ASINH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ASINHF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ASINHL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ASINL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ATAN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ATAN2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ATAN2F&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ATAN2L&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ATANF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ATANH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ATANHF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ATANHL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ATANL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CBRT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CBRTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CBRTL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CEIL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CEILF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CEILL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COPYSIGN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COPYSIGNF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COPYSIGNL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COSF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COSH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COSHF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COSHL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COSL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_DREM&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_DREMF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_DREML&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ERF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ERFC&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ERFCF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ERFCL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ERFF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ERFL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXP10&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXP10F&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXP10L&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXP2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXP2F&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXP2L&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXPF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXPL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXPM1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXPM1F&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXPM1L&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FABS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FABSF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FABSL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FDIM&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FDIMF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FDIML&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FLOOR&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FLOORF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FLOORL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FMA&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FMAF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FMAL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FMAX&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FMAXF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FMAXL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FMIN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FMINF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FMINL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FMOD&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FMODF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FMODL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FREXP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FREXPF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FREXPL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GAMMA&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GAMMAF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GAMMAL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GAMMA_R&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GAMMAF_R&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GAMMAL_R&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_HUGE_VAL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_HUGE_VALF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_HUGE_VALL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_HYPOT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_HYPOTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_HYPOTL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ILOGB&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ILOGBF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ILOGBL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_INF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_INFF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_INFL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_INFD32&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_INFD64&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_INFD128&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_J0&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_J0F&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_J0L&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_J1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_J1F&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_J1L&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_JN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_JNF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_JNL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LCEIL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LCEILF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LCEILL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LDEXP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LDEXPF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LDEXPL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LFLOOR&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LFLOORF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LFLOORL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LGAMMA&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LGAMMAF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LGAMMAL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LGAMMA_R&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LGAMMAF_R&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LGAMMAL_R&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLCEIL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLCEILF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLCEILL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLFLOOR&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLFLOORF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLFLOORL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLRINT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLRINTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLRINTL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLROUND&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLROUNDF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLROUNDL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOG&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOG10&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOG10F&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOG10L&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOG1P&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOG1PF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOG1PL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOG2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOG2F&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOG2L&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOGB&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOGBF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOGBL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOGF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOGL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LRINT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LRINTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LRINTL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LROUND&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LROUNDF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LROUNDL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MODF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MODFF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MODFL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NAN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NANF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NANL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NAND32&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NAND64&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NAND128&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NANS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NANSF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NANSL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NEARBYINT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NEARBYINTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NEARBYINTL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NEXTAFTER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NEXTAFTERF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NEXTAFTERL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NEXTTOWARD&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NEXTTOWARDF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NEXTTOWARDL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POW&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POW10&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POW10F&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POW10L&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POWF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POWI&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POWIF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POWIL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POWL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_REMAINDER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_REMAINDERF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_REMAINDERL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_REMQUO&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_REMQUOF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_REMQUOL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_RINT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_RINTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_RINTL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ROUND&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ROUNDF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ROUNDL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SCALB&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SCALBF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SCALBL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SCALBLN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SCALBLNF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SCALBLNL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SCALBN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SCALBNF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SCALBNL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SIGNBIT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SIGNBITF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SIGNBITL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SIGNBITD32&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SIGNBITD64&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SIGNBITD128&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SIGNIFICAND&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SIGNIFICANDF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SIGNIFICANDL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SIN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SINCOS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SINCOSF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SINCOSL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SINF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SINH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SINHF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SINHL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SINL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SQRT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SQRTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SQRTL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TAN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TANF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TANH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TANHF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TANHL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TANL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TGAMMA&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TGAMMAF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TGAMMAL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TRUNC&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TRUNCF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TRUNCL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_Y0&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_Y0F&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_Y0L&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_Y1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_Y1F&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_Y1L&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_YN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_YNF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_YNL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CABS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CABSF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CABSL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CACOS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CACOSF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CACOSH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CACOSHF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CACOSHL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CACOSL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CARG&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CARGF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CARGL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CASIN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CASINF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CASINH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CASINHF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CASINHL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CASINL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CATAN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CATANF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CATANH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CATANHF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CATANHL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CATANL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CCOS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CCOSF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CCOSH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CCOSHF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CCOSHL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CCOSL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CEXP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CEXPF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CEXPL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CEXPI&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CEXPIF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CEXPIL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CIMAG&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CIMAGF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CIMAGL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CLOG&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CLOGF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CLOGL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CLOG10&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CLOG10F&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CLOG10L&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CONJ&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CONJF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CONJL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CPOW&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CPOWF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CPOWL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CPROJ&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CPROJF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CPROJL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CREAL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CREALF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CREALL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CSIN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CSINF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CSINH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CSINHF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CSINHL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CSINL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CSQRT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CSQRTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CSQRTL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CTAN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CTANF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CTANH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CTANHF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CTANHL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CTANL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_BCMP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_BCOPY&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_BZERO&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_INDEX&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MEMCHR&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MEMCMP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MEMCPY&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MEMMOVE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MEMPCPY&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MEMSET&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_RINDEX&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STPCPY&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STPNCPY&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRCASECMP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRCAT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRCHR&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRCMP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRCPY&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRCSPN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRDUP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRNDUP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRLEN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRNCASECMP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRNCAT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRNCMP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRNCPY&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRPBRK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRRCHR&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRSPN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRSTR&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FPRINTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FPRINTF_UNLOCKED&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PUTC&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PUTC_UNLOCKED&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FPUTC&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FPUTC_UNLOCKED&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FPUTS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FPUTS_UNLOCKED&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FSCANF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FWRITE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FWRITE_UNLOCKED&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PRINTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PRINTF_UNLOCKED&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PUTCHAR&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PUTCHAR_UNLOCKED&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PUTS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PUTS_UNLOCKED&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SCANF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SNPRINTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SPRINTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SSCANF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VFPRINTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VFSCANF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VPRINTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VSCANF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VSNPRINTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VSPRINTF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VSSCANF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISALNUM&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISALPHA&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISASCII&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISBLANK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISCNTRL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISDIGIT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISGRAPH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISLOWER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISPRINT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISPUNCT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISSPACE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISUPPER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISXDIGIT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TOASCII&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TOLOWER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TOUPPER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISWALNUM&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISWALPHA&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISWBLANK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISWCNTRL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISWDIGIT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISWGRAPH&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISWLOWER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISWPRINT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISWPUNCT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISWSPACE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISWUPPER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISWXDIGIT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TOWLOWER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TOWUPPER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ABORT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ABS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_AGGREGATE_INCOMING_ADDRESS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_BSWAP32&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_BSWAP64&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CLEAR_CACHE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CALLOC&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CLASSIFY_TYPE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CLZ&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CLZIMAX&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CLZL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CLZLL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CONSTANT_P&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CTZ&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CTZIMAX&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CTZL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_CTZLL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_DCGETTEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_DGETTEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_DWARF_CFA&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_DWARF_SP_COLUMN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EH_RETURN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EH_RETURN_DATA_REGNO&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXECL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXECLP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXECLE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXECV&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXECVP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXECVE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXIT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXPECT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXTEND_POINTER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EXTRACT_RETURN_ADDR&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FFS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FFSIMAX&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FFSL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FFSLL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FORK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FREE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FROB_RETURN_ADDR&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GETTEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_IMAXABS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_INIT_DWARF_REG_SIZES&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FINITE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FINITEF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FINITEL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FINITED32&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FINITED64&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FINITED128&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FPCLASSIFY&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISFINITE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISINF_SIGN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISINF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISINFF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISINFL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISINFD32&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISINFD64&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISINFD128&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISNAN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISNANF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISNANL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISNAND32&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISNAND64&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISNAND128&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISNORMAL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISGREATER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISGREATEREQUAL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISLESS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISLESSEQUAL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISLESSGREATER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ISUNORDERED&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LABS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LLABS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LONGJMP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MALLOC&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NEXT_ARG&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PARITY&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PARITYIMAX&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PARITYL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PARITYLL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POPCOUNT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POPCOUNTIMAX&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POPCOUNTL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_POPCOUNTLL&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_REALLOC&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_RETURN_ADDRESS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SAVEREGS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SETJMP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRFMON&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRFTIME&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_TRAP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_UNWIND_INIT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_UPDATE_SETJMP_BUF&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VA_COPY&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VA_END&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VA_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VA_ARG_PACK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VA_ARG_PACK_LEN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN__EXIT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN__EXIT2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_INIT_TRAMPOLINE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ADJUST_TRAMPOLINE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NONLOCAL_GOTO&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SETJMP_SETUP&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SETJMP_DISPATCHER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SETJMP_RECEIVER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_OBJECT_SIZE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MEMCPY_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MEMMOVE_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MEMPCPY_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_MEMSET_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STPCPY_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRCAT_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRCPY_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRNCAT_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_STRNCPY_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SNPRINTF_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SPRINTF_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VSNPRINTF_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VSPRINTF_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FPRINTF_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PRINTF_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VFPRINTF_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VPRINTF_CHK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PROFILE_FUNC_ENTER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_PROFILE_FUNC_EXIT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EMUTLS_GET_ADDRESS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_EMUTLS_REGISTER_COMMON&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_ADD_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_ADD_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_ADD_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_ADD_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_ADD_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_ADD_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_SUB_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_SUB_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_SUB_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_SUB_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_SUB_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_SUB_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_OR_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_OR_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_OR_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_OR_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_OR_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_OR_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_AND_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_AND_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_AND_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_AND_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_AND_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_AND_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_XOR_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_XOR_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_XOR_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_XOR_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_XOR_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_XOR_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_NAND_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_NAND_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_NAND_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_NAND_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_NAND_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_FETCH_AND_NAND_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ADD_AND_FETCH_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ADD_AND_FETCH_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ADD_AND_FETCH_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ADD_AND_FETCH_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ADD_AND_FETCH_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_ADD_AND_FETCH_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SUB_AND_FETCH_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SUB_AND_FETCH_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SUB_AND_FETCH_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SUB_AND_FETCH_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SUB_AND_FETCH_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SUB_AND_FETCH_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_OR_AND_FETCH_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_OR_AND_FETCH_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_OR_AND_FETCH_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_OR_AND_FETCH_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_OR_AND_FETCH_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_OR_AND_FETCH_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_AND_AND_FETCH_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_AND_AND_FETCH_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_AND_AND_FETCH_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_AND_AND_FETCH_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_AND_AND_FETCH_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_AND_AND_FETCH_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_XOR_AND_FETCH_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_XOR_AND_FETCH_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_XOR_AND_FETCH_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_XOR_AND_FETCH_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_XOR_AND_FETCH_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_XOR_AND_FETCH_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NAND_AND_FETCH_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NAND_AND_FETCH_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NAND_AND_FETCH_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NAND_AND_FETCH_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NAND_AND_FETCH_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_NAND_AND_FETCH_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_BOOL_COMPARE_AND_SWAP_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_BOOL_COMPARE_AND_SWAP_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_BOOL_COMPARE_AND_SWAP_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_BOOL_COMPARE_AND_SWAP_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_BOOL_COMPARE_AND_SWAP_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_BOOL_COMPARE_AND_SWAP_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VAL_COMPARE_AND_SWAP_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VAL_COMPARE_AND_SWAP_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VAL_COMPARE_AND_SWAP_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VAL_COMPARE_AND_SWAP_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VAL_COMPARE_AND_SWAP_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_VAL_COMPARE_AND_SWAP_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOCK_TEST_AND_SET_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOCK_TEST_AND_SET_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOCK_TEST_AND_SET_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOCK_TEST_AND_SET_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOCK_TEST_AND_SET_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOCK_TEST_AND_SET_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOCK_RELEASE_N&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOCK_RELEASE_1&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOCK_RELEASE_2&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOCK_RELEASE_4&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOCK_RELEASE_8&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_LOCK_RELEASE_16&#8242; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_SYNCHRONIZE&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_OMP_GET_THREAD_NUM&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_OMP_GET_NUM_THREADS&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_ATOMIC_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_ATOMIC_END&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_BARRIER&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_TASKWAIT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_CRITICAL_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_CRITICAL_END&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_CRITICAL_NAME_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_CRITICAL_NAME_END&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_STATIC_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_DYNAMIC_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_GUIDED_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_RUNTIME_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_STATIC_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_DYNAMIC_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_GUIDED_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_RUNTIME_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_STATIC_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_DYNAMIC_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_GUIDED_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_RUNTIME_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_STATIC_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_DYNAMIC_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_GUIDED_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_RUNTIME_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_STATIC_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_DYNAMIC_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_GUIDED_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_RUNTIME_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_STATIC_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_DYNAMIC_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_GUIDED_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_RUNTIME_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_STATIC_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_DYNAMIC_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_GUIDED_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_RUNTIME_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_STATIC_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_DYNAMIC_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_GUIDED_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_RUNTIME_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_PARALLEL_LOOP_STATIC_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_PARALLEL_LOOP_DYNAMIC_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_PARALLEL_LOOP_GUIDED_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_PARALLEL_LOOP_RUNTIME_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_END&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_LOOP_END_NOWAIT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_ORDERED_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_ORDERED_END&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_PARALLEL_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_PARALLEL_END&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_TASK&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_SECTIONS_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_SECTIONS_NEXT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_PARALLEL_SECTIONS_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_SECTIONS_END&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_SECTIONS_END_NOWAIT&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_SINGLE_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_SINGLE_COPY_START&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_GOMP_SINGLE_COPY_END&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COMPLEX_MUL_MIN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COMPLEX_MUL_MAX&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COMPLEX_DIV_MIN&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `BUILT_IN_COMPLEX_DIV_MAX&#8217; not handled in switch<br />
../../gcc/ipa-pure-const.c:455: warning: enumeration value `END_BUILTINS&#8217; not handled in switch<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/ipa-reference.c -o ipa-reference.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/ipa-ref.c -o ipa-ref.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/ipa-struct-reorg.c -o ipa-struct-reorg.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/ipa-type-escape.c -o ipa-type-escape.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/ipa-utils.c -o ipa-utils.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/ipa.c -o ipa.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/matrix-reorg.c -o matrix-reorg.o<br />
gcc  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     \<br />
-DPREFIX=\&#8221;/home/csamuelson/mat\&#8221; -DBASEVER=&#8221;\&#8221;4.6.2\&#8221;" \<br />
-c ../../gcc/prefix.c -o prefix.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-inline.c -o tree-inline.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tree-nomudflap.c -o tree-nomudflap.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/varpool.c -o varpool.o<br />
rm -rf libbackend.a<br />
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  combine.o  combine-stack-adj.o  compare-elim.o  convert.o  coverage.o  cse.o  cselib.o  dbxout.o  dbgcnt.o  dce.o  ddg.o  debug.o  df-core.o  df-problems.o  df-scan.o  dfp.o  diagnostic.o  dojump.o  dominance.o  domwalk.o  double-int.o  dse.o  dwarf2asm.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  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  hooks.o  hwint.o  ifcvt.o  implicit-zee.o  init-regs.o  input.o  integrate.o  intl.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-in.o  lto-streamer-out.o  lto-section-in.o  lto-section-out.o  lto-symtab.o  lto-opts.o  lto-streamer.o  lto-compress.o  mcf.o  mode-switching.o  modulo-sched.o  omega.o  omp-low.o  optabs.o  options.o  opts-common.o  opts-global.o  opts.o  params.o  passes.o  plugin.o  pointer-set.o  postreload-gcse.o  postreload.o  predict.o  pretty-print.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  stringpool.o  target-globals.o  targhooks.o  timevar.o  toplev.o  tracer.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-into-ssa.o  tree-iterator.o  tree-loop-distribution.o  tree-nested.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-structalias.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-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  vec.o  version.o  vmsdbgout.o  web.o  xcoffout.o arm.o   host-cygwin.o  cgraph.o  cgraphbuild.o  cgraphunit.o  cppbuiltin.o  cppdefault.o  incpath.o  ipa-cp.o  ipa-split.o  ipa-inline.o  ipa-prop.o  ipa-pure-const.o  ipa-reference.o  ipa-ref.o  ipa-struct-reorg.o  ipa-type-escape.o  ipa-utils.o  ipa.o  matrix-reorg.o  prefix.o  tree-inline.o  tree-nomudflap.o  varpool.o<br />
ranlib  libbackend.a<br />
build/genchecksum.exe 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 arm-c.o main.o  libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a   ../libdecnumber/libdecnumber.a \<br />
checksum-options &gt; cc1-checksum.c.tmp &amp;&amp;         \<br />
../../gcc/../move-if-change cc1-checksum.c.tmp cc1-checksum.c<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     cc1-checksum.c -o cc1-checksum.o<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -Wl,&#8211;stack,12582912 -o cc1.exe 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 arm-c.o \<br />
cc1-checksum.o main.o  libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a -lintl  ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a     -L/usr/local/gnu/lib -L/usr/local/gnu/lib -L/usr/local/gnu/lib -lmpc -lmpfr -lgmp    -L../zlib -lz<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/gcov.c -o gcov.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/errors.c -o errors.o<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -Wl,&#8211;stack,12582912 gcov.o intl.o version.o errors.o ../libcpp/libcpp.a -lintl  ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a   -o gcov.exe<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/gcov-dump.c -o gcov-dump.o<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -Wl,&#8211;stack,12582912 gcov-dump.o version.o errors.o \<br />
../libcpp/libcpp.a -lintl  ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a   -o gcov-dump.exe<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/cp-lang.c -o cp/cp-lang.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/call.c -o cp/call.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/decl.c -o cp/decl.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/expr.c -o cp/expr.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/pt.c -o cp/pt.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/typeck2.c -o cp/typeck2.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/class.c -o cp/class.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/decl2.c -o cp/decl2.o<br />
../../gcc/cp/decl2.c: In function `min_vis_r&#8217;:<br />
../../gcc/cp/decl2.c:1924: warning: comparison between signed and unsigned<br />
../../gcc/cp/decl2.c: In function `constrain_visibility&#8217;:<br />
../../gcc/cp/decl2.c:1963: warning: comparison between signed and unsigned<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/error.c -o cp/error.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/lex.c -o cp/lex.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/parser.c -o cp/parser.o<br />
../../gcc/cp/parser.c: In function `cp_parser_ctor_initializer_opt_and_function_body&#8217;:<br />
../../gcc/cp/parser.c:16447: warning: &#8216;list&#8217; might be used uninitialized in this function<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/ptree.c -o cp/ptree.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/rtti.c -o cp/rtti.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/typeck.c -o cp/typeck.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/cvt.c -o cp/cvt.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/except.c -o cp/except.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/friend.c -o cp/friend.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/init.c -o cp/init.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/method.c -o cp/method.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/search.c -o cp/search.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/semantics.c -o cp/semantics.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/tree.c -o cp/tree.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/repo.c -o cp/repo.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/dump.c -o cp/dump.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/optimize.c -o cp/optimize.o<br />
../../gcc/cp/optimize.c: In function `maybe_clone_body&#8217;:<br />
../../gcc/cp/optimize.c:224: warning: suggest explicit braces to avoid ambiguous `else&#8217;<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/mangle.c -o cp/mangle.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/cp-objcp-common.c -o cp/cp-objcp-common.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/name-lookup.c -o cp/name-lookup.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/cxx-pretty-print.c -o cp/cxx-pretty-print.o<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Icp -I../../gcc -I../../gcc/cp  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cp/cp-gimplify.c -o cp/cp-gimplify.o<br />
build/genchecksum.exe 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 prefix.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 arm-c.o main.o  libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a   ../libdecnumber/libdecnumber.a \<br />
checksum-options &gt; cc1plus-checksum.c.tmp &amp;&amp;       \<br />
../../gcc/../move-if-change cc1plus-checksum.c.tmp cc1plus-checksum.c<br />
gcc -c  -DIN_GCC_FRONTEND  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     cc1plus-checksum.c -o cc1plus-checksum.o<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -Wl,&#8211;stack,12582912 -o cc1plus.exe \<br />
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 prefix.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 arm-c.o cc1plus-checksum.o main.o  libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a -lintl  ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a     -L/usr/local/gnu/lib -L/usr/local/gnu/lib -L/usr/local/gnu/lib -lmpc -lmpfr -lgmp    -L../zlib -lz<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber      \<br />
-DTARGET_MACHINE=\&#8221;arm-none-eabi\&#8221; \<br />
-c ../../gcc/collect2.c -o collect2.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/collect2-aix.c -o collect2-aix.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/tlink.c -o tlink.o<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -Wl,&#8211;stack,12582912 -o Tcollect2.exe \<br />
collect2.o collect2-aix.o tlink.o intl.o version.o ../libcpp/libcpp.a -lintl  ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a<br />
mv -f Tcollect2.exe collect2.exe<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/lto-wrapper.c -o lto-wrapper.o<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -Wl,&#8211;stack,12582912 -o Tlto-wrapper.exe lto-wrapper.o intl.o ../libcpp/libcpp.a -lintl  ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a<br />
mv -f Tlto-wrapper.exe lto-wrapper.exe<br />
(SHLIB_LINK=&#8221;; \<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     \<br />
-DSTANDARD_STARTFILE_PREFIX=\&#8221;../../../\&#8221;  -DSTANDARD_EXEC_PREFIX=\&#8221;/home/csamuelson/mat/lib/gcc/\&#8221;  -DSTANDARD_LIBEXEC_PREFIX=\&#8221;/home/csamuelson/mat/libexec/gcc/\&#8221;  -DDEFAULT_TARGET_VERSION=\&#8221;4.6.2\&#8221;  -DDEFAULT_TARGET_MACHINE=\&#8221;arm-none-eabi\&#8221;  -DSTANDARD_BINDIR_PREFIX=\&#8221;/home/csamuelson/mat/bin/\&#8221;  -DTOOLDIR_BASE_PREFIX=\&#8221;../../../../\&#8221;     `test &#8220;X${SHLIB_LINK}&#8221; = &#8220;X&#8221; || test &#8220;yes&#8221; != &#8220;yes&#8221; || echo &#8220;-DENABLE_SHARED_LIBGCC&#8221;`  -DCONFIGURE_SPECS=&#8221;\&#8221;\&#8221;" \<br />
-c ../../gcc/gcc.c -o gcc.o)<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     -o gcc-options.o \<br />
-DGCC_DRIVER options.c<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/ggc-none.c -o ggc-none.o<br />
(SHLIB_LINK=&#8221;; \<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     \<br />
-DSTANDARD_STARTFILE_PREFIX=\&#8221;../../../\&#8221;  -DSTANDARD_EXEC_PREFIX=\&#8221;/home/csamuelson/mat/lib/gcc/\&#8221;  -DSTANDARD_LIBEXEC_PREFIX=\&#8221;/home/csamuelson/mat/libexec/gcc/\&#8221;  -DDEFAULT_TARGET_VERSION=\&#8221;4.6.2\&#8221;  -DDEFAULT_TARGET_MACHINE=\&#8221;arm-none-eabi\&#8221;  -DSTANDARD_BINDIR_PREFIX=\&#8221;/home/csamuelson/mat/bin/\&#8221;  -DTOOLDIR_BASE_PREFIX=\&#8221;../../../../\&#8221;     `test &#8220;X${SHLIB_LINK}&#8221; = &#8220;X&#8221; || test &#8220;yes&#8221; != &#8220;yes&#8221; || echo &#8220;-DENABLE_SHARED_LIBGCC&#8221;`  -DCONFIGURE_SPECS=&#8221;\&#8221;\&#8221;" \<br />
-c ../../gcc/gccspec.c -o gccspec.o)<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -Wl,&#8211;stack,12582912 -o xgcc.exe gcc.o opts-common.o gcc-options.o diagnostic.o pretty-print.o  input.o vec.o ggc-none.o \<br />
gccspec.o intl.o prefix.o version.o  ../libcpp/libcpp.a -lintl  ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a<br />
cp xgcc.exe gcc-cross.exe<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/cppspec.c -o cppspec.o<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -Wl,&#8211;stack,12582912 -o cpp.exe gcc.o opts-common.o gcc-options.o diagnostic.o pretty-print.o  input.o vec.o ggc-none.o \<br />
cppspec.o intl.o prefix.o version.o  ../libcpp/libcpp.a -lintl  ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a<br />
/home/arm/gcc-4.6.2/obj/./gcc/xgcc -B/home/arm/gcc-4.6.2/obj/./gcc/ -dumpspecs &gt; tmp-specs<br />
mv tmp-specs specs<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; addsf3.c<br />
echo &#8216;#include &#8220;config/soft-fp/addsf3.c&#8221;&#8216; &gt;&gt; addsf3.c<br />
echo &#8216;#endif&#8217; &gt;&gt; addsf3.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; divsf3.c<br />
echo &#8216;#include &#8220;config/soft-fp/divsf3.c&#8221;&#8216; &gt;&gt; divsf3.c<br />
echo &#8216;#endif&#8217; &gt;&gt; divsf3.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; eqsf2.c<br />
echo &#8216;#include &#8220;config/soft-fp/eqsf2.c&#8221;&#8216; &gt;&gt; eqsf2.c<br />
echo &#8216;#endif&#8217; &gt;&gt; eqsf2.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; gesf2.c<br />
echo &#8216;#include &#8220;config/soft-fp/gesf2.c&#8221;&#8216; &gt;&gt; gesf2.c<br />
echo &#8216;#endif&#8217; &gt;&gt; gesf2.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; lesf2.c<br />
echo &#8216;#include &#8220;config/soft-fp/lesf2.c&#8221;&#8216; &gt;&gt; lesf2.c<br />
echo &#8216;#endif&#8217; &gt;&gt; lesf2.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; mulsf3.c<br />
echo &#8216;#include &#8220;config/soft-fp/mulsf3.c&#8221;&#8216; &gt;&gt; mulsf3.c<br />
echo &#8216;#endif&#8217; &gt;&gt; mulsf3.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; negsf2.c<br />
echo &#8216;#include &#8220;config/soft-fp/negsf2.c&#8221;&#8216; &gt;&gt; negsf2.c<br />
echo &#8216;#endif&#8217; &gt;&gt; negsf2.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; subsf3.c<br />
echo &#8216;#include &#8220;config/soft-fp/subsf3.c&#8221;&#8216; &gt;&gt; subsf3.c<br />
echo &#8216;#endif&#8217; &gt;&gt; subsf3.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; unordsf2.c<br />
echo &#8216;#include &#8220;config/soft-fp/unordsf2.c&#8221;&#8216; &gt;&gt; unordsf2.c<br />
echo &#8216;#endif&#8217; &gt;&gt; unordsf2.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; fixsfsi.c<br />
echo &#8216;#include &#8220;config/soft-fp/fixsfsi.c&#8221;&#8216; &gt;&gt; fixsfsi.c<br />
echo &#8216;#endif&#8217; &gt;&gt; fixsfsi.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; floatsisf.c<br />
echo &#8216;#include &#8220;config/soft-fp/floatsisf.c&#8221;&#8216; &gt;&gt; floatsisf.c<br />
echo &#8216;#endif&#8217; &gt;&gt; floatsisf.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; floatunsisf.c<br />
echo &#8216;#include &#8220;config/soft-fp/floatunsisf.c&#8221;&#8216; &gt;&gt; floatunsisf.c<br />
echo &#8216;#endif&#8217; &gt;&gt; floatunsisf.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; adddf3.c<br />
echo &#8216;#include &#8220;config/soft-fp/adddf3.c&#8221;&#8216; &gt;&gt; adddf3.c<br />
echo &#8216;#endif&#8217; &gt;&gt; adddf3.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; divdf3.c<br />
echo &#8216;#include &#8220;config/soft-fp/divdf3.c&#8221;&#8216; &gt;&gt; divdf3.c<br />
echo &#8216;#endif&#8217; &gt;&gt; divdf3.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; eqdf2.c<br />
echo &#8216;#include &#8220;config/soft-fp/eqdf2.c&#8221;&#8216; &gt;&gt; eqdf2.c<br />
echo &#8216;#endif&#8217; &gt;&gt; eqdf2.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; gedf2.c<br />
echo &#8216;#include &#8220;config/soft-fp/gedf2.c&#8221;&#8216; &gt;&gt; gedf2.c<br />
echo &#8216;#endif&#8217; &gt;&gt; gedf2.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; ledf2.c<br />
echo &#8216;#include &#8220;config/soft-fp/ledf2.c&#8221;&#8216; &gt;&gt; ledf2.c<br />
echo &#8216;#endif&#8217; &gt;&gt; ledf2.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; muldf3.c<br />
echo &#8216;#include &#8220;config/soft-fp/muldf3.c&#8221;&#8216; &gt;&gt; muldf3.c<br />
echo &#8216;#endif&#8217; &gt;&gt; muldf3.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; negdf2.c<br />
echo &#8216;#include &#8220;config/soft-fp/negdf2.c&#8221;&#8216; &gt;&gt; negdf2.c<br />
echo &#8216;#endif&#8217; &gt;&gt; negdf2.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; subdf3.c<br />
echo &#8216;#include &#8220;config/soft-fp/subdf3.c&#8221;&#8216; &gt;&gt; subdf3.c<br />
echo &#8216;#endif&#8217; &gt;&gt; subdf3.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; unorddf2.c<br />
echo &#8216;#include &#8220;config/soft-fp/unorddf2.c&#8221;&#8216; &gt;&gt; unorddf2.c<br />
echo &#8216;#endif&#8217; &gt;&gt; unorddf2.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; fixdfsi.c<br />
echo &#8216;#include &#8220;config/soft-fp/fixdfsi.c&#8221;&#8216; &gt;&gt; fixdfsi.c<br />
echo &#8216;#endif&#8217; &gt;&gt; fixdfsi.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; floatsidf.c<br />
echo &#8216;#include &#8220;config/soft-fp/floatsidf.c&#8221;&#8216; &gt;&gt; floatsidf.c<br />
echo &#8216;#endif&#8217; &gt;&gt; floatsidf.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; floatunsidf.c<br />
echo &#8216;#include &#8220;config/soft-fp/floatunsidf.c&#8221;&#8216; &gt;&gt; floatunsidf.c<br />
echo &#8216;#endif&#8217; &gt;&gt; floatunsidf.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; extendsfdf2.c<br />
echo &#8216;#include &#8220;config/soft-fp/extendsfdf2.c&#8221;&#8216; &gt;&gt; extendsfdf2.c<br />
echo &#8216;#endif&#8217; &gt;&gt; extendsfdf2.c<br />
echo &#8216;#ifdef __ARM_ARCH_6M__&#8217; &gt; truncdfsf2.c<br />
echo &#8216;#include &#8220;config/soft-fp/truncdfsf2.c&#8221;&#8216; &gt;&gt; truncdfsf2.c<br />
echo &#8216;#endif&#8217; &gt;&gt; truncdfsf2.c<br />
: &gt; tmp-libgcc.mvars<br />
echo LIB1ASMFUNCS = &#8216;_thumb1_case_sqi _thumb1_case_uqi _thumb1_case_shi  _thumb1_case_uhi _thumb1_case_si _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_tls _bb_init_func  _call_via_rX _interwork_call_via_rX  _lshrdi3 _ashrdi3 _ashldi3  _arm_negdf2 _arm_addsubdf3 _arm_muldivdf3 _arm_cmpdf2 _arm_unorddf2  _arm_fixdfsi _arm_fixunsdfsi  _arm_truncdfsf2 _arm_negsf2 _arm_addsubsf3 _arm_muldivsf3  _arm_cmpsf2 _arm_unordsf2 _arm_fixsfsi _arm_fixunssfsi  _arm_floatdidf _arm_floatdisf _arm_floatundidf _arm_floatundisf  _clzsi2 _clzdi2  _aeabi_lcmp _aeabi_ulcmp _aeabi_ldivmod _aeabi_uldivmod&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo LIB1ASMSRC = &#8216;arm/lib1funcs.asm&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo LIB2FUNCS_ST = &#8216;_eprintf __gcc_bcmp&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo LIB2FUNCS_EXCLUDE = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo LIBGCOV = &#8216;_gcov _gcov_merge_add _gcov_merge_single _gcov_merge_delta  _gcov_fork _gcov_execl _gcov_execlp _gcov_execle  _gcov_execv _gcov_execvp _gcov_execve  _gcov_interval_profiler _gcov_pow2_profiler _gcov_one_value_profiler  _gcov_indirect_call_profiler _gcov_average_profiler _gcov_ior_profiler  _gcov_merge_ior&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo LIB2ADD = &#8216;$(gcc_srcdir)/config/arm/bpabi.c $(gcc_srcdir)/config/arm/unaligned-funcs.c  $(gcc_objdir)/addsf3.c $(gcc_objdir)/divsf3.c $(gcc_objdir)/eqsf2.c $(gcc_objdir)/gesf2.c $(gcc_objdir)/lesf2.c $(gcc_objdir)/mulsf3.c $(gcc_objdir)/negsf2.c $(gcc_objdir)/subsf3.c $(gcc_objdir)/unordsf2.c $(gcc_objdir)/fixsfsi.c $(gcc_objdir)/floatsisf.c $(gcc_objdir)/floatunsisf.c $(gcc_objdir)/adddf3.c $(gcc_objdir)/divdf3.c $(gcc_objdir)/eqdf2.c $(gcc_objdir)/gedf2.c $(gcc_objdir)/ledf2.c $(gcc_objdir)/muldf3.c $(gcc_objdir)/negdf2.c $(gcc_objdir)/subdf3.c $(gcc_objdir)/unorddf2.c $(gcc_objdir)/fixdfsi.c $(gcc_objdir)/floatsidf.c $(gcc_objdir)/floatunsidf.c $(gcc_objdir)/extendsfdf2.c $(gcc_objdir)/truncdfsf2.c&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo LIB2ADD_ST = &#8216;$(gcc_srcdir)/config/arm/fp16.c  &#8216; &gt;&gt; tmp-libgcc.mvars<br />
echo LIB2ADDEH = &#8216;$(gcc_srcdir)/config/arm/unwind-arm.c $(gcc_srcdir)/config/arm/libunwind.S $(gcc_srcdir)/config/arm/pr-support.c $(gcc_srcdir)/unwind-c.c $(gcc_srcdir)/emutls.c  &#8216; &gt;&gt; tmp-libgcc.mvars<br />
echo LIB2ADDEHSTATIC = &#8216;$(gcc_srcdir)/config/arm/unwind-arm.c $(gcc_srcdir)/config/arm/libunwind.S $(gcc_srcdir)/config/arm/pr-support.c $(gcc_srcdir)/unwind-c.c $(gcc_srcdir)/emutls.c  &#8216; &gt;&gt; tmp-libgcc.mvars<br />
echo LIB2ADDEHSHARED = &#8216;$(gcc_srcdir)/config/arm/unwind-arm.c $(gcc_srcdir)/config/arm/libunwind.S $(gcc_srcdir)/config/arm/pr-support.c $(gcc_srcdir)/unwind-c.c $(gcc_srcdir)/emutls.c  &#8216; &gt;&gt; tmp-libgcc.mvars<br />
echo LIB2_SIDITI_CONV_FUNCS = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo LIBUNWIND = &#8216;  &#8216; &gt;&gt; tmp-libgcc.mvars<br />
echo SHLIBUNWIND_LINK = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo SHLIBUNWIND_INSTALL = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo FPBIT = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo FPBIT_FUNCS = &#8216;_pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf  _fpcmp_parts_sf _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf  _lt_sf _le_sf _unord_sf _si_to_sf _sf_to_si _negate_sf _make_sf  _sf_to_df _sf_to_tf _thenan_sf _sf_to_usi _usi_to_sf&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo LIB2_DIVMOD_FUNCS = &#8216;_divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4&#8242; &gt;&gt; tmp-libgcc.mvars<br />
echo DPBIT = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo DPBIT_FUNCS = &#8216;_pack_df _unpack_df _addsub_df _mul_df _div_df  _fpcmp_parts_df _compare_df _eq_df _ne_df _gt_df _ge_df  _lt_df _le_df _unord_df _si_to_df _df_to_si _negate_df _make_df  _df_to_sf _df_to_tf _thenan_df _df_to_usi _usi_to_df&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo TPBIT = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo TPBIT_FUNCS = &#8216;_pack_tf _unpack_tf _addsub_tf _mul_tf _div_tf  _fpcmp_parts_tf _compare_tf _eq_tf _ne_tf _gt_tf _ge_tf  _lt_tf _le_tf _unord_tf _si_to_tf _tf_to_si _negate_tf _make_tf  _tf_to_df _tf_to_sf _thenan_tf _tf_to_usi _usi_to_tf&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo DFP_ENABLE = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo DFP_CFLAGS=&#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo D32PBIT=&#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo D32PBIT_FUNCS=&#8217;_addsub_sd _div_sd _mul_sd _plus_sd _minus_sd  _eq_sd _ne_sd _lt_sd _gt_sd _le_sd _ge_sd  _sd_to_si _sd_to_di _sd_to_usi _sd_to_udi  _si_to_sd _di_to_sd _usi_to_sd _udi_to_sd  _sd_to_sf _sd_to_df _sd_to_xf _sd_to_tf  _sf_to_sd _df_to_sd _xf_to_sd _tf_to_sd  _sd_to_dd _sd_to_td _unord_sd _conv_sd&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo D64PBIT=&#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo D64PBIT_FUNCS=&#8217;_addsub_dd _div_dd _mul_dd _plus_dd _minus_dd  _eq_dd _ne_dd _lt_dd _gt_dd _le_dd _ge_dd  _dd_to_si _dd_to_di _dd_to_usi _dd_to_udi  _si_to_dd _di_to_dd _usi_to_dd _udi_to_dd  _dd_to_sf _dd_to_df _dd_to_xf _dd_to_tf  _sf_to_dd _df_to_dd _xf_to_dd _tf_to_dd  _dd_to_sd _dd_to_td _unord_dd _conv_dd&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo D128PBIT=&#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo D128PBIT_FUNCS=&#8217;_addsub_td _div_td _mul_td _plus_td _minus_td  _eq_td _ne_td _lt_td _gt_td _le_td _ge_td  _td_to_si _td_to_di _td_to_usi _td_to_udi  _si_to_td _di_to_td _usi_to_td _udi_to_td  _td_to_sf _td_to_df _td_to_xf _td_to_tf  _sf_to_td _df_to_td _xf_to_td _tf_to_td  _td_to_sd _td_to_dd _unord_td _conv_td&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo GCC_EXTRA_PARTS = &#8216;crtbegin.o crtend.o crti.o crtn.o&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo SHLIB_LINK = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo SHLIB_INSTALL = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo SHLIB_DLLDIR = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo SHLIB_EXT = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo SHLIB_MKMAP = &#8216;  &#8216; &gt;&gt; tmp-libgcc.mvars<br />
echo SHLIB_MKMAP_OPTS = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo SHLIB_MAPFILES = &#8216;$(gcc_srcdir)/config/arm/libgcc-bpabi.ver  &#8216; &gt;&gt; tmp-libgcc.mvars<br />
echo SHLIB_NM_FLAGS = &#8216;-pg&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo LIBGCC2_CFLAGS = &#8216;-O2  -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include  -fno-inline -Wno-missing-prototypes  -g   -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED  -fno-stack-protector  &#8216; &gt;&gt; tmp-libgcc.mvars<br />
echo TARGET_LIBGCC2_CFLAGS = &#8216;-fno-inline -Wno-missing-prototypes&#8217; &gt;&gt; tmp-libgcc.mvars<br />
echo LIBGCC_SYNC = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo LIBGCC_SYNC_CFLAGS = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo CRTSTUFF_CFLAGS = &#8216;-O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include  -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     -g0  -finhibit-size-directive -fno-inline -fno-exceptions  -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize  -fno-stack-protector  &#8216; &gt;&gt; tmp-libgcc.mvars<br />
echo CRTSTUFF_T_CFLAGS = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo CRTSTUFF_T_CFLAGS_S = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
echo TARGET_SYSTEM_ROOT = &#8221; &gt;&gt; tmp-libgcc.mvars<br />
mv tmp-libgcc.mvars libgcc.mvars<br />
echo | /home/arm/gcc-4.6.2/obj/./gcc/xgcc -B/home/arm/gcc-4.6.2/obj/./gcc/ -E -dM &#8211; | \<br />
sed -n -e &#8217;s/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p&#8217; \<br />
-e &#8217;s/^#define \(_[^_A-Z][a-zA-Z0-9_]*\).*/\1/p&#8217; | \<br />
sort -u &gt; tmp-macro_list<br />
/bin/sh ../../gcc/../move-if-change tmp-macro_list macro_list<br />
echo timestamp &gt; s-macro_list<br />
if /home/arm/gcc-4.6.2/obj/./gcc/xgcc -B/home/arm/gcc-4.6.2/obj/./gcc/ -print-sysroot-headers-suffix &gt; /dev/null 2&gt;&amp;1; then \<br />
set -e; for ml in `/home/arm/gcc-4.6.2/obj/./gcc/xgcc -B/home/arm/gcc-4.6.2/obj/./gcc/ -print-multi-lib`; do \<br />
multi_dir=`echo ${ml} | sed -e &#8217;s/;.*$//&#8217;`; \<br />
flags=`echo ${ml} | sed -e &#8217;s/^[^;]*;//&#8217; -e &#8217;s/@/ -/g&#8217;`; \<br />
sfx=`/home/arm/gcc-4.6.2/obj/./gcc/xgcc -B/home/arm/gcc-4.6.2/obj/./gcc/ ${flags} -print-sysroot-headers-suffix`; \<br />
if [ "${multi_dir}" = "." ]; \<br />
then multi_dir=&#8221;"; \<br />
else \<br />
multi_dir=/${multi_dir}; \<br />
fi; \<br />
echo &#8220;${sfx};${multi_dir}&#8221;; \<br />
done; \<br />
else \<br />
echo &#8220;;&#8221;; \<br />
fi &gt; tmp-fixinc_list<br />
/bin/sh ../../gcc/../move-if-change tmp-fixinc_list fixinc_list<br />
echo timestamp &gt; s-fixinc_list<br />
rm -rf include-fixed; mkdir include-fixed<br />
chmod a+rx include-fixed<br />
if [ -d ../prev-gcc ]; then \<br />
cd ../prev-gcc &amp;&amp; \<br />
make real-install-headers-tar DESTDIR=`pwd`/../gcc/ \<br />
libsubdir=. ; \<br />
else \<br />
set -e; for ml in `cat fixinc_list`; do \<br />
sysroot_headers_suffix=`echo ${ml} | sed -e &#8217;s/;.*$//&#8217;`; \<br />
multi_dir=`echo ${ml} | sed -e &#8217;s/^[^;]*;//&#8217;`; \<br />
fix_dir=include-fixed${multi_dir}; \<br />
if ! false &amp;&amp; test ! -d `echo /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/sys-include | sed -e :a -e &#8217;s,[^/]*/\.\.\/,,&#8217; -e ta`; then \<br />
echo The directory that should contain system headers does not exist: &gt;&amp;2 ; \<br />
echo &#8220;  `echo /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/sys-include | sed -e :a -e &#8217;s,[^/]*/\.\.\/,,&#8217; -e ta`&#8221; &gt;&amp;2 ; \<br />
tooldir_sysinc=`echo &#8220;/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/sys-include&#8221; | sed -e :a -e &#8220;s,[^/]*/\.\.\/,,&#8221; -e ta`; \<br />
if test &#8220;x`echo /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/sys-include | sed -e :a -e &#8217;s,[^/]*/\.\.\/,,&#8217; -e ta`&#8221; = &#8220;x${tooldir_sysinc}&#8221;; \<br />
then sleep 1; else exit 1; fi; \<br />
fi; \<br />
/bin/sh ../../gcc/../mkinstalldirs ${fix_dir}; \<br />
chmod a+rx ${fix_dir} || true; \<br />
(TARGET_MACHINE=&#8217;arm-none-eabi&#8217;; srcdir=`cd ../../gcc; ${PWDCMD-pwd}`; \<br />
SHELL=&#8217;/bin/sh&#8217;; MACRO_LIST=`${PWDCMD-pwd}`/macro_list ; \<br />
gcc_dir=`${PWDCMD-pwd}` ; \<br />
export TARGET_MACHINE srcdir SHELL MACRO_LIST &amp;&amp; \<br />
cd ../build-i686-pc-cygwin/fixincludes &amp;&amp; \<br />
/bin/sh ./fixinc.sh &#8220;${gcc_dir}/${fix_dir}&#8221; \<br />
`echo /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/sys-include | sed -e :a -e &#8217;s,[^/]*/\.\.\/,,&#8217; -e ta`  ); \<br />
rm -f ${fix_dir}/syslimits.h; \<br />
if [ -f ${fix_dir}/limits.h ]; then \<br />
mv ${fix_dir}/limits.h ${fix_dir}/syslimits.h; \<br />
else \<br />
cp ../../gcc/gsyslimits.h ${fix_dir}/syslimits.h; \<br />
fi; \<br />
chmod a+r ${fix_dir}/syslimits.h; \<br />
done; \<br />
fi<br />
Fixing headers into /home/arm/gcc-4.6.2/obj/gcc/include-fixed for arm-none-eabi target<br />
No forbidden identifiers defined by this target<br />
Finding directories and links to directories<br />
Searching /home/csamuelson/mat/arm-none-eabi/sys-include/.<br />
Making symbolic directory links<br />
Fixing directory /home/csamuelson/mat/arm-none-eabi/sys-include into /home/arm/gcc-4.6.2/obj/gcc/include-fixed<br />
Applying sun_malloc               to malloc.h<br />
Applying sysv68_string            to string.h<br />
Cleaning up unneeded directories:<br />
fixincludes is done<br />
echo timestamp &gt; stmp-fixinc<br />
if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi<br />
if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi<br />
for file in .. ../../gcc/ginclude/float.h  ../../gcc/ginclude/iso646.h  ../../gcc/ginclude/stdarg.h  ../../gcc/ginclude/stdbool.h  ../../gcc/ginclude/stddef.h  ../../gcc/ginclude/varargs.h  ../../gcc/ginclude/stdfix.h  ../../gcc/config/arm/mmintrin.h ../../gcc/config/arm/arm_neon.h ../../gcc/ginclude/tgmath.h; do \<br />
if [ X$file != X.. ]; then \<br />
realfile=`echo $file | sed -e &#8217;s|.*/\([^/]*\)$|\1|&#8217;`; \<br />
echo timestamp &gt; include/$realfile; \<br />
rm -f include/$realfile; \<br />
cp $file include; \<br />
chmod a+r include/$realfile; \<br />
fi; \<br />
done<br />
for file in .. ; do \<br />
if [ X$file != X.. ]; then \<br />
mv include/$file include/x_$file; \<br />
echo &#8220;#include_next &lt;$file&gt;&#8221; &gt;include/$file; \<br />
cat include/x_$file &gt;&gt;include/$file; \<br />
rm -f include/x_$file; \<br />
chmod a+r include/$file; \<br />
fi; \<br />
done<br />
for file in .. ; do \<br />
if [ X$file != X.. ]; then \<br />
echo &#8220;#include_next &lt;$file&gt;&#8221; &gt;&gt;include/$file; \<br />
chmod a+r include/$file; \<br />
fi; \<br />
done<br />
rm -f include/unwind.h<br />
cp ../../gcc/config/arm/unwind-arm.h include/unwind.h<br />
chmod a+r include/unwind.h<br />
rm -f include/stdint.h<br />
if [ wrap = wrap ]; then \<br />
rm -f include/stdint-gcc.h; \<br />
cp ../../gcc/ginclude/stdint-gcc.h include/stdint-gcc.h; \<br />
chmod a+r include/stdint-gcc.h; \<br />
cp ../../gcc/ginclude/stdint-wrap.h include/stdint.h; \<br />
chmod a+r include/stdint.h; \<br />
elif [ wrap = provide ]; then \<br />
cp ../../gcc/ginclude/stdint-gcc.h include/stdint.h; \<br />
chmod a+r include/stdint.h; \<br />
fi<br />
set -e; for ml in `cat fixinc_list`; do \<br />
sysroot_headers_suffix=`echo ${ml} | sed -e &#8217;s/;.*$//&#8217;`; \<br />
multi_dir=`echo ${ml} | sed -e &#8217;s/^[^;]*;//&#8217;`; \<br />
fix_dir=include-fixed${multi_dir}; \<br />
if [ -f `echo /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/sys-include | sed -e :a -e 's,[^/]*/\.\.\/,,&#8217; -e ta`/limits.h ] ; then \<br />
cat ../../gcc/limitx.h ../../gcc/glimits.h ../../gcc/limity.h &gt; tmp-xlimits.h; \<br />
else \<br />
cat ../../gcc/glimits.h &gt; tmp-xlimits.h; \<br />
fi; \<br />
/bin/sh ../../gcc/../mkinstalldirs ${fix_dir}; \<br />
chmod a+rx ${fix_dir} || true; \<br />
rm -f ${fix_dir}/limits.h; \<br />
mv tmp-xlimits.h ${fix_dir}/limits.h; \<br />
chmod a+r ${fix_dir}/limits.h; \<br />
done<br />
rm -f include-fixed/README<br />
cp ../../gcc/../fixincludes/README-fixinc include-fixed/README<br />
chmod a+r include-fixed/README<br />
echo timestamp &gt; stmp-int-hdrs<br />
TARGET_CPU_DEFAULT=&#8221;" \<br />
HEADERS=&#8221;auto-host.h ansidecl.h&#8221; DEFINES=&#8221;USED_FOR_TARGET &#8221; \<br />
/bin/sh ../../gcc/mkconfig.sh tconfig.h<br />
cp ../../gcc/config/arm/sfp-machine.h sfp-machine.h<br />
(SHLIB_LINK=&#8221;; \<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     -DSTANDARD_STARTFILE_PREFIX=\&#8221;../../../\&#8221;  -DSTANDARD_EXEC_PREFIX=\&#8221;/home/csamuelson/mat/lib/gcc/\&#8221;  -DSTANDARD_LIBEXEC_PREFIX=\&#8221;/home/csamuelson/mat/libexec/gcc/\&#8221;  -DDEFAULT_TARGET_VERSION=\&#8221;4.6.2\&#8221;  -DDEFAULT_TARGET_MACHINE=\&#8221;arm-none-eabi\&#8221;  -DSTANDARD_BINDIR_PREFIX=\&#8221;/home/csamuelson/mat/bin/\&#8221;  -DTOOLDIR_BASE_PREFIX=\&#8221;../../../../\&#8221;     `test &#8220;X${SHLIB_LINK}&#8221; = &#8220;X&#8221; || test &#8220;yes&#8221; != &#8220;yes&#8221; || echo &#8220;-DENABLE_SHARED_LIBGCC&#8221;`  -DCONFIGURE_SPECS=&#8221;\&#8221;\&#8221;" \<br />
-I. -I. -I../../gcc -I../../gcc/.  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber    ../../gcc/cp/g++spec.c)<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -Wl,&#8211;stack,12582912 -o g++.exe \<br />
gcc.o opts-common.o gcc-options.o diagnostic.o pretty-print.o  input.o vec.o ggc-none.o g++spec.o intl.o prefix.o version.o  ../libcpp/libcpp.a -lintl  ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a<br />
rm -f g++-cross.exe<br />
cp g++.exe g++-cross.exe<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Ilto -I../../gcc -I../../gcc/lto  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/lto/lto-lang.c -o lto/lto-lang.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Ilto -I../../gcc -I../../gcc/lto  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/lto/lto.c -o lto/lto.o<br />
gcc -c    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -I. -Ilto -I../../gcc -I../../gcc/lto  -I../../gcc/../include   -I../../gcc/../libcpp/include -I/usr/local/gnu/include -I/usr/local/gnu/include -I/usr/local/gnu/include  -I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/dpd -I../libdecnumber     ../../gcc/lto/lto-object.c -o lto/lto-object.o<br />
gcc    -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -Wold-style-definition   -DHAVE_CONFIG_H -Wl,&#8211;stack,12582912 -o lto1.exe \<br />
lto/lto-lang.o lto/lto.o lto/lto-object.o attribs.o main.o  libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a   -L/usr/local/gnu/lib -L/usr/local/gnu/lib -L/usr/local/gnu/lib -lmpc -lmpfr -lgmp    -L../zlib -lz ../libcpp/libcpp.a -lintl  ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a<br />
(echo &#8220;@set version-GCC 4.6.2&#8243;; \<br />
if [ "" = "experimental" ]; \<br />
then echo &#8220;@set DEVELOPMENT&#8221;; \<br />
else echo &#8220;@clear DEVELOPMENT&#8221;; \<br />
fi) &gt; gcc-vers.texiT<br />
echo @set srcdir /home/arm/gcc-4.6.2/obj/gcc/../../gcc &gt;&gt; gcc-vers.texiT<br />
if [ -n "(GCC) " ]; then \<br />
echo &#8220;@set VERSION_PACKAGE (GCC) &#8221; &gt;&gt; gcc-vers.texiT; \<br />
fi<br />
echo &#8220;@set BUGURL @uref{http://gcc.gnu.org/bugs.html}&#8221; &gt;&gt; gcc-vers.texiT; \<br />
mv -f gcc-vers.texiT gcc-vers.texi<br />
if [ xinfo = xinfo ]; then \<br />
makeinfo &#8211;split-size=5000000 &#8211;no-split -I . -I ../../gcc/doc \<br />
-I ../../gcc/doc/include -o doc/cpp.info ../../gcc/doc/cpp.texi; \<br />
fi<br />
if [ xinfo = xinfo ]; then \<br />
makeinfo &#8211;split-size=5000000 &#8211;no-split -I . -I ../../gcc/doc \<br />
-I ../../gcc/doc/include -o doc/gcc.info ../../gcc/doc/gcc.texi; \<br />
fi<br />
build/genhooks.exe \<br />
../../gcc/doc/tm.texi.in &gt; tmp-tm.texi<br />
case `echo X|tr X &#8216;\101&#8242;` in \<br />
A) tr -d &#8216;\015&#8242; &lt; tmp-tm.texi &gt; tmp2-tm.texi ;; \<br />
*) tr -d &#8216;\r&#8217; &lt; tmp-tm.texi &gt; tmp2-tm.texi ;; \<br />
esac<br />
mv tmp2-tm.texi tmp-tm.texi<br />
/bin/sh ../../gcc/../move-if-change tmp-tm.texi tm.texi<br />
if [ xinfo = xinfo ]; then \<br />
makeinfo &#8211;split-size=5000000 &#8211;no-split -I . -I ../../gcc/doc \<br />
-I ../../gcc/doc/include -o doc/gccint.info ../../gcc/doc/gccint.texi; \<br />
fi<br />
if [ xinfo = xinfo ]; then \<br />
makeinfo &#8211;split-size=5000000 &#8211;no-split -I ../../gcc/doc \<br />
-I ../../gcc/doc/include -o doc/gccinstall.info ../../gcc/doc/install.texi; \<br />
fi<br />
if [ xinfo = xinfo ]; then \<br />
makeinfo &#8211;split-size=5000000 &#8211;no-split -I . -I ../../gcc/doc \<br />
-I ../../gcc/doc/include -o doc/cppinternals.info ../../gcc/doc/cppinternals.texi; \<br />
fi<br />
echo timestamp &gt; gcc.pod<br />
perl ../../gcc/../contrib/texi2pod.pl ../../gcc/doc/invoke.texi &gt; gcc.pod<br />
echo timestamp &gt; doc/gcc.1<br />
(pod2man &#8211;center=&#8221;GNU&#8221; &#8211;release=&#8221;gcc-4.6.2&#8243; &#8211;date=2011-10-26 &#8211;section=1 gcc.pod &gt; doc/gcc.1.T$$ &amp;&amp; \<br />
mv -f doc/gcc.1.T$$ doc/gcc.1) || \<br />
(rm -f doc/gcc.1.T$$ &amp;&amp; exit 1)<br />
echo timestamp &gt; gpl.pod<br />
perl ../../gcc/../contrib/texi2pod.pl ../../gcc/doc/include/gpl_v3.texi &gt; gpl.pod<br />
echo timestamp &gt; doc/gpl.7<br />
(pod2man &#8211;center=&#8221;GNU&#8221; &#8211;release=&#8221;gcc-4.6.2&#8243; &#8211;date=2011-10-26 &#8211;section=7 gpl.pod &gt; doc/gpl.7.T$$ &amp;&amp; \<br />
mv -f doc/gpl.7.T$$ doc/gpl.7) || \<br />
(rm -f doc/gpl.7.T$$ &amp;&amp; exit 1)<br />
cp doc/gcc.1 doc/g++.1<br />
rm gcc.pod<br />
make[1]: Leaving directory `/home/arm/gcc-4.6.2/obj/gcc&#8217;</p>
<p>SpiralRay@SpiralRay-PC /home/arm/gcc-4.6.2/obj<br />
$ make install-gcc<br />
/bin/sh ../mkinstalldirs /home/csamuelson/mat  /home/csamuelson/mat<br />
make[1]: Entering directory `/home/arm/gcc-4.6.2/obj/fixincludes&#8217;<br />
rm -rf /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/install-tools<br />
/bin/sh ../../fixincludes/../mkinstalldirs /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/install-tools<br />
mkdir -p &#8212; /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/install-tools<br />
/bin/sh ../../fixincludes/../mkinstalldirs /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/install-tools/include<br />
mkdir -p &#8212; /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/install-tools/include<br />
/usr/bin/install -c -m 644 ../../fixincludes/README-fixinc \<br />
/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/install-tools/include/README<br />
/usr/bin/install -c fixinc.sh /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/install-tools/fixinc.sh<br />
/usr/bin/install -c fixincl.exe \<br />
/home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/install-tools/fixincl.exe<br />
/usr/bin/install -c mkheaders /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/install-tools/mkheaders<br />
make[1]: Leaving directory `/home/arm/gcc-4.6.2/obj/fixincludes&#8217;<br />
make[1]: Entering directory `/home/arm/gcc-4.6.2/obj/lto-plugin&#8217;<br />
make[2]: Entering directory `/home/arm/gcc-4.6.2/obj/lto-plugin&#8217;<br />
test -z &#8220;/home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2&#8243; || /usr/bin/mkdir -p &#8220;/home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2&#8243;<br />
/bin/sh ./libtool &#8211;tag=disable-static  &#8211;mode=install /usr/bin/install -c   liblto_plugin.la &#8216;/home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2&#8242;<br />
libtool: install: /usr/bin/install -c .libs/liblto_plugin.dll.a /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/liblto_plugin.dll.a<br />
libtool: install: base_file=`basename liblto_plugin.la`<br />
libtool: install:<br />
dlpath=`/bin/sh 2&gt;&amp;1 -c &#8216;. .libs/&#8217;liblto_plugin.la&#8217;i; echo cyglto_plugin-0.dll&#8217;`<br />
libtool: install:<br />
dldir=/home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/`dirname cyglto_plugin-0.dll`<br />
libtool: install:<br />
test -d /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/. || mkdir -p /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/.<br />
libtool: install:<br />
/usr/bin/install -c .libs/cyglto_plugin-0.dll /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/./cyglto_plugin-0.dll<br />
libtool: install:<br />
chmod a+x /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/./cyglto_plugin-0.dll<br />
libtool: install:<br />
if test -n &#8221; &amp;&amp; test -n &#8217;strip &#8211;strip-unneeded&#8217;; then<br />
eval &#8217;strip &#8211;strip-unneeded /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/./cyglto_plugin-0.dll&#8217; || exit 0;<br />
fi<br />
libtool: install: /usr/bin/install -c .libs/liblto_plugin.lai /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/liblto_plugin.la<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Libraries have been installed in:<br />
/home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2</p>
<p>If you ever happen to want to link against installed libraries<br />
in a given directory, LIBDIR, you must either use libtool, and<br />
specify the full pathname of the library, or use the `-LLIBDIR&#8217;<br />
flag during linking and do at least one of the following:<br />
- add LIBDIR to the `PATH&#8217; environment variable<br />
during execution<br />
- add LIBDIR to the `LD_RUN_PATH&#8217; environment variable<br />
during linking<br />
- use the `-LLIBDIR&#8217; linker flag</p>
<p>See any operating system documentation about shared libraries for<br />
more information, such as the ld(1) and ld.so(8) manual pages.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
make[2]: Nothing to be done for `install-data-am&#8217;.<br />
make[2]: Leaving directory `/home/arm/gcc-4.6.2/obj/lto-plugin&#8217;<br />
make[1]: Leaving directory `/home/arm/gcc-4.6.2/obj/lto-plugin&#8217;<br />
make[1]: Entering directory `/home/arm/gcc-4.6.2/obj/gcc&#8217;<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/bin<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/include<br />
mkdir -p &#8212; /home/csamuelson/mat/include<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/info<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/arm-none-eabi/lib<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/man/man1<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/man/man7<br />
mkdir -p &#8212; /home/csamuelson/mat/share/man/man7<br />
rm -f /home/csamuelson/mat/bin/arm-none-eabi-g++.exe<br />
/usr/bin/install -c g++.exe /home/csamuelson/mat/bin/arm-none-eabi-g++.exe<br />
chmod a+x /home/csamuelson/mat/bin/arm-none-eabi-g++.exe<br />
rm -f /home/csamuelson/mat/bin/arm-none-eabi-c++.exe<br />
( cd /home/csamuelson/mat/bin &amp;&amp; \<br />
ln arm-none-eabi-g++.exe arm-none-eabi-c++.exe )<br />
if [ -f cc1plus.exe ] ; then \<br />
if [ -f g++-cross.exe ] ; then \<br />
if [ -d /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/bin/. ] ; then \<br />
rm -f /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/bin/g++.exe; \<br />
/usr/bin/install -c g++-cross.exe /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/bin/g++.exe; \<br />
rm -f /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/bin/c++.exe; \<br />
( cd /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/bin &amp;&amp; \<br />
ln g++.exe c++.exe ); \<br />
else true; fi; \<br />
else \<br />
rm -f /home/csamuelson/mat/bin/arm-none-eabi-arm-none-eabi-g++.exe; \<br />
( cd /home/csamuelson/mat/bin &amp;&amp; \<br />
ln arm-none-eabi-g++.exe arm-none-eabi-arm-none-eabi-g++.exe ); \<br />
rm -f /home/csamuelson/mat/bin/arm-none-eabi-arm-none-eabi-c++.exe; \<br />
( cd /home/csamuelson/mat/bin &amp;&amp; \<br />
ln arm-none-eabi-c++.exe arm-none-eabi-arm-none-eabi-c++.exe ); \<br />
fi ; \<br />
fi<br />
for file in cc1.exe  gnat1.exe cc1plus.exe f951.exe go1.exe jc1.exe jvgenmain.exe lto1.exe cc1obj.exe cc1objplus.exe; do \<br />
if [ -f $file ] ; then \<br />
rm -f /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/$file; \<br />
/usr/bin/install -c $file /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/$file; \<br />
else true; \<br />
fi; \<br />
done<br />
for file in   collect2.exe ..; do \<br />
if [ x"$file" != x.. ]; then \<br />
rm -f /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/$file; \<br />
/usr/bin/install -c $file /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/$file; \<br />
else true; fi; \<br />
done<br />
rm -f /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/specs<br />
if [ -f gcov.exe ]; \<br />
then \<br />
rm -f /home/csamuelson/mat/bin/arm-none-eabi-gcov.exe; \<br />
/usr/bin/install -c gcov.exe /home/csamuelson/mat/bin/arm-none-eabi-gcov.exe; \<br />
fi<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include<br />
mkdir -p &#8212; /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include<br />
rm -rf /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include-fixed<br />
mkdir /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include-fixed<br />
chmod a+rx /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include-fixed<br />
(cd `${PWDCMD-pwd}`/include ; \<br />
tar -cf &#8211; .; exit 0) | (cd /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include; tar xpf &#8211; )<br />
(cd `${PWDCMD-pwd}`/include-fixed ; \<br />
tar -cf &#8211; .; exit 0) | (cd /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include-fixed; tar xpf &#8211; )<br />
files=`cd /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include-fixed; find . -type l -print 2&gt;/dev/null`; \<br />
if [ $? -eq 0 ]; then \<br />
dir=`cd include-fixed; ${PWDCMD-pwd}`; \<br />
for i in $files; do \<br />
dest=`ls -ld /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include-fixed/$i | sed -n &#8217;s/.*-&gt; //p&#8217;`; \<br />
if expr &#8220;$dest&#8221; : &#8220;$dir.*&#8221; &gt; /dev/null; then \<br />
rm -f /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include-fixed/$i; \<br />
ln -s `echo $i | sed &#8220;s|/[^/]*|/..|g&#8221; | sed &#8217;s|/..$||&#8217;&#8220;echo &#8220;$dest&#8221; | sed &#8220;s|$dir||&#8221;` /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/include-fixed/$i; \<br />
fi; \<br />
done; \<br />
fi<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/install-tools/include<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/install-tools<br />
/usr/bin/install -c -m 644 ../../gcc/gsyslimits.h \<br />
/home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/install-tools/gsyslimits.h<br />
/usr/bin/install -c -m 644 macro_list /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/install-tools/macro_list<br />
/usr/bin/install -c -m 644 fixinc_list /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/install-tools/fixinc_list<br />
set -e; for ml in `cat fixinc_list`; do \<br />
multi_dir=`echo ${ml} | sed -e &#8217;s/^[^;]*;//&#8217;`; \<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/install-tools/include${multi_dir}; \<br />
/usr/bin/install -c -m 644 include-fixed${multidir}/limits.h /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/install-tools/include${multi_dir}/limits.h; \<br />
done<br />
/usr/bin/install -c ../../gcc/../mkinstalldirs \<br />
/home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/install-tools/mkinstalldirs ; \<br />
sysroot_headers_suffix=&#8217;${sysroot_headers_suffix}&#8217;; \<br />
echo &#8216;SYSTEM_HEADER_DIR=&#8221;&#8216;&#8221;`echo /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/sys-include | sed -e :a -e &#8217;s,[^/]*/\.\.\/,,&#8217; -e ta`&#8221;&#8216;&#8221;&#8216; \<br />
&gt; /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/install-tools/mkheaders.conf<br />
echo &#8216;OTHER_FIXINCLUDES_DIRS=&#8221;"&#8216; \<br />
&gt;&gt; /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/install-tools/mkheaders.conf<br />
echo &#8216;STMP_FIXINC=&#8221;stmp-fixinc&#8221;&#8216; \<br />
&gt;&gt; /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/install-tools/mkheaders.conf<br />
rm -f /home/csamuelson/mat/bin/arm-none-eabi-cpp.exe<br />
/usr/bin/install -c -m 755 cpp.exe /home/csamuelson/mat/bin/arm-none-eabi-cpp.exe<br />
if [ x != x ]; then \<br />
rm -f /home/csamuelson/mat//arm-none-eabi-cpp.exe; \<br />
/usr/bin/install -c -m 755 cpp.exe /home/csamuelson/mat//arm-none-eabi-cpp.exe; \<br />
else true; fi<br />
rm -f /home/csamuelson/mat/share/man/man1/arm-none-eabi-g++.1<br />
/usr/bin/install -c -m 644 doc/g++.1 /home/csamuelson/mat/share/man/man1/arm-none-eabi-g++.1<br />
chmod a-x /home/csamuelson/mat/share/man/man1/arm-none-eabi-g++.1<br />
rm -f /home/csamuelson/mat/share/man/man1/arm-none-eabi-gcc.1<br />
/usr/bin/install -c -m 644 doc/gcc.1 /home/csamuelson/mat/share/man/man1/arm-none-eabi-gcc.1<br />
chmod a-x /home/csamuelson/mat/share/man/man1/arm-none-eabi-gcc.1<br />
rm -f /home/csamuelson/mat/share/man/man1/arm-none-eabi-cpp.1<br />
/usr/bin/install -c -m 644 ../../gcc/doc/cpp.1 /home/csamuelson/mat/share/man/man1/arm-none-eabi-cpp.1<br />
chmod a-x /home/csamuelson/mat/share/man/man1/arm-none-eabi-cpp.1<br />
rm -f /home/csamuelson/mat/share/man/man1/arm-none-eabi-gcov.1<br />
/usr/bin/install -c -m 644 ../../gcc/doc/gcov.1 /home/csamuelson/mat/share/man/man1/arm-none-eabi-gcov.1<br />
chmod a-x /home/csamuelson/mat/share/man/man1/arm-none-eabi-gcov.1<br />
rm -f /home/csamuelson/mat/share/man/man7/fsf-funding.7<br />
/usr/bin/install -c -m 644 ../../gcc/doc/fsf-funding.7 /home/csamuelson/mat/share/man/man7/fsf-funding.7<br />
chmod a-x /home/csamuelson/mat/share/man/man7/fsf-funding.7<br />
rm -f /home/csamuelson/mat/share/man/man7/gfdl.7<br />
/usr/bin/install -c -m 644 ../../gcc/doc/gfdl.7 /home/csamuelson/mat/share/man/man7/gfdl.7<br />
chmod a-x /home/csamuelson/mat/share/man/man7/gfdl.7<br />
rm -f /home/csamuelson/mat/share/man/man7/gpl.7<br />
/usr/bin/install -c -m 644 doc/gpl.7 /home/csamuelson/mat/share/man/man7/gpl.7<br />
chmod a-x /home/csamuelson/mat/share/man/man7/gpl.7<br />
rm -f /home/csamuelson/mat/share/info/cpp.info<br />
if [ -f doc/cpp.info ]; then \<br />
for f in doc/cpp.info*; do \<br />
realfile=`echo $f | sed -e &#8217;s|.*/\([^/]*\)$|\1|&#8217;`; \<br />
/usr/bin/install -c -m 644 $f /home/csamuelson/mat/share/info/$realfile; \<br />
chmod a-x /home/csamuelson/mat/share/info/$realfile; \<br />
done; \<br />
else true; fi<br />
if /bin/sh -c &#8216;install-info &#8211;version&#8217; &gt;/dev/null 2&gt;&amp;1; then \<br />
if [ -f /home/csamuelson/mat/share/info/cpp.info ]; then \<br />
install-info &#8211;dir-file=/home/csamuelson/mat/share/info/dir /home/csamuelson/mat/share/info/cpp.info; \<br />
else true; fi; \<br />
else true; fi;<br />
rm -f /home/csamuelson/mat/share/info/gcc.info<br />
if [ -f doc/gcc.info ]; then \<br />
for f in doc/gcc.info*; do \<br />
realfile=`echo $f | sed -e &#8217;s|.*/\([^/]*\)$|\1|&#8217;`; \<br />
/usr/bin/install -c -m 644 $f /home/csamuelson/mat/share/info/$realfile; \<br />
chmod a-x /home/csamuelson/mat/share/info/$realfile; \<br />
done; \<br />
else true; fi<br />
if /bin/sh -c &#8216;install-info &#8211;version&#8217; &gt;/dev/null 2&gt;&amp;1; then \<br />
if [ -f /home/csamuelson/mat/share/info/gcc.info ]; then \<br />
install-info &#8211;dir-file=/home/csamuelson/mat/share/info/dir /home/csamuelson/mat/share/info/gcc.info; \<br />
else true; fi; \<br />
else true; fi;<br />
rm -f /home/csamuelson/mat/share/info/cppinternals.info<br />
if [ -f doc/cppinternals.info ]; then \<br />
for f in doc/cppinternals.info*; do \<br />
realfile=`echo $f | sed -e &#8217;s|.*/\([^/]*\)$|\1|&#8217;`; \<br />
/usr/bin/install -c -m 644 $f /home/csamuelson/mat/share/info/$realfile; \<br />
chmod a-x /home/csamuelson/mat/share/info/$realfile; \<br />
done; \<br />
else true; fi<br />
if /bin/sh -c &#8216;install-info &#8211;version&#8217; &gt;/dev/null 2&gt;&amp;1; then \<br />
if [ -f /home/csamuelson/mat/share/info/cppinternals.info ]; then \<br />
install-info &#8211;dir-file=/home/csamuelson/mat/share/info/dir /home/csamuelson/mat/share/info/cppinternals.info; \<br />
else true; fi; \<br />
else true; fi;<br />
rm -f /home/csamuelson/mat/share/info/gccinstall.info<br />
if [ -f doc/gccinstall.info ]; then \<br />
for f in doc/gccinstall.info*; do \<br />
realfile=`echo $f | sed -e &#8217;s|.*/\([^/]*\)$|\1|&#8217;`; \<br />
/usr/bin/install -c -m 644 $f /home/csamuelson/mat/share/info/$realfile; \<br />
chmod a-x /home/csamuelson/mat/share/info/$realfile; \<br />
done; \<br />
else true; fi<br />
if /bin/sh -c &#8216;install-info &#8211;version&#8217; &gt;/dev/null 2&gt;&amp;1; then \<br />
if [ -f /home/csamuelson/mat/share/info/gccinstall.info ]; then \<br />
install-info &#8211;dir-file=/home/csamuelson/mat/share/info/dir /home/csamuelson/mat/share/info/gccinstall.info; \<br />
else true; fi; \<br />
else true; fi;<br />
rm -f /home/csamuelson/mat/share/info/gccint.info<br />
if [ -f doc/gccint.info ]; then \<br />
for f in doc/gccint.info*; do \<br />
realfile=`echo $f | sed -e &#8217;s|.*/\([^/]*\)$|\1|&#8217;`; \<br />
/usr/bin/install -c -m 644 $f /home/csamuelson/mat/share/info/$realfile; \<br />
chmod a-x /home/csamuelson/mat/share/info/$realfile; \<br />
done; \<br />
else true; fi<br />
if /bin/sh -c &#8216;install-info &#8211;version&#8217; &gt;/dev/null 2&gt;&amp;1; then \<br />
if [ -f /home/csamuelson/mat/share/info/gccint.info ]; then \<br />
install-info &#8211;dir-file=/home/csamuelson/mat/share/info/dir /home/csamuelson/mat/share/info/gccint.info; \<br />
else true; fi; \<br />
else true; fi;<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share<br />
cats=&#8221;po/be.gmo po/da.gmo po/de.gmo po/el.gmo po/es.gmo po/fi.gmo po/fr.gmo po/id.gmo po/ja.gmo po/nl.gmo po/ru.gmo po/sr.gmo po/sv.gmo po/tr.gmo po/vi.gmo po/zh_CN.gmo po/zh_TW.gmo po/be.gmo po/da.gmo po/de.gmo po/el.gmo po/es.gmo po/fi.gmo po/fr.gmo po/id.gmo po/ja.gmo po/nl.gmo po/ru.gmo po/sr.gmo po/sv.gmo po/tr.gmo po/vi.gmo po/zh_CN.gmo po/zh_TW.gmo&#8221;; for cat in $cats; do \<br />
lang=`basename $cat | sed &#8217;s/\.gmo$//&#8217;`; \<br />
if [ -f $cat ]; then :; \<br />
elif [ -f ../../gcc/$cat ]; then cat=../../gcc/$cat; \<br />
else continue; \<br />
fi; \<br />
dir=/home/csamuelson/mat/share/locale/$lang/LC_MESSAGES; \<br />
echo /bin/sh ../../gcc/../mkinstalldirs $dir; \<br />
/bin/sh ../../gcc/../mkinstalldirs $dir || exit 1; \<br />
echo /usr/bin/install -c -m 644 $cat $dir/gcc.mo; \<br />
/usr/bin/install -c -m 644 $cat $dir/gcc.mo; \<br />
done<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/be/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/be/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/be.gmo /home/csamuelson/mat/share/locale/be/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/da/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/da/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/da.gmo /home/csamuelson/mat/share/locale/da/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/de/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/de/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/de.gmo /home/csamuelson/mat/share/locale/de/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/el/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/el/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/el.gmo /home/csamuelson/mat/share/locale/el/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/es/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/es/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/es.gmo /home/csamuelson/mat/share/locale/es/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/fi/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/fi/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/fi.gmo /home/csamuelson/mat/share/locale/fi/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/fr/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/fr/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/fr.gmo /home/csamuelson/mat/share/locale/fr/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/id/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/id/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/id.gmo /home/csamuelson/mat/share/locale/id/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/ja/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/ja/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/ja.gmo /home/csamuelson/mat/share/locale/ja/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/nl/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/nl/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/nl.gmo /home/csamuelson/mat/share/locale/nl/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/ru/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/ru/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/ru.gmo /home/csamuelson/mat/share/locale/ru/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/sr/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/sr/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/sr.gmo /home/csamuelson/mat/share/locale/sr/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/sv/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/sv/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/sv.gmo /home/csamuelson/mat/share/locale/sv/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/tr/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/tr/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/tr.gmo /home/csamuelson/mat/share/locale/tr/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/vi/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/vi/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/vi.gmo /home/csamuelson/mat/share/locale/vi/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/zh_CN/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/zh_CN/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/zh_CN.gmo /home/csamuelson/mat/share/locale/zh_CN/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/zh_TW/LC_MESSAGES<br />
mkdir -p &#8212; /home/csamuelson/mat/share/locale/zh_TW/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/zh_TW.gmo /home/csamuelson/mat/share/locale/zh_TW/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/be/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/be.gmo /home/csamuelson/mat/share/locale/be/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/da/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/da.gmo /home/csamuelson/mat/share/locale/da/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/de/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/de.gmo /home/csamuelson/mat/share/locale/de/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/el/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/el.gmo /home/csamuelson/mat/share/locale/el/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/es/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/es.gmo /home/csamuelson/mat/share/locale/es/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/fi/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/fi.gmo /home/csamuelson/mat/share/locale/fi/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/fr/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/fr.gmo /home/csamuelson/mat/share/locale/fr/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/id/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/id.gmo /home/csamuelson/mat/share/locale/id/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/ja/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/ja.gmo /home/csamuelson/mat/share/locale/ja/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/nl/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/nl.gmo /home/csamuelson/mat/share/locale/nl/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/ru/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/ru.gmo /home/csamuelson/mat/share/locale/ru/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/sr/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/sr.gmo /home/csamuelson/mat/share/locale/sr/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/sv/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/sv.gmo /home/csamuelson/mat/share/locale/sv/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/tr/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/tr.gmo /home/csamuelson/mat/share/locale/tr/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/vi/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/vi.gmo /home/csamuelson/mat/share/locale/vi/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/zh_CN/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/zh_CN.gmo /home/csamuelson/mat/share/locale/zh_CN/LC_MESSAGES/gcc.mo<br />
/bin/sh ../../gcc/../mkinstalldirs /home/csamuelson/mat/share/locale/zh_TW/LC_MESSAGES<br />
/usr/bin/install -c -m 644 ../../gcc/po/zh_TW.gmo /home/csamuelson/mat/share/locale/zh_TW/LC_MESSAGES/gcc.mo<br />
rm -f /home/csamuelson/mat/bin/arm-none-eabi-gcc.exe<br />
/usr/bin/install -c xgcc.exe /home/csamuelson/mat/bin/arm-none-eabi-gcc.exe<br />
rm -f /home/csamuelson/mat/bin/arm-none-eabi-gcc-4.6.2.exe<br />
( cd /home/csamuelson/mat/bin &amp;&amp; \<br />
ln arm-none-eabi-gcc.exe arm-none-eabi-gcc-4.6.2.exe )<br />
if [ -f gcc-cross.exe ] ; then \<br />
if [ -d /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/bin/. ] ; then \<br />
rm -f /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/bin/gcc.exe; \<br />
/usr/bin/install -c gcc-cross.exe /home/csamuelson/mat/lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/bin/gcc.exe; \<br />
else true; fi; \<br />
else \<br />
rm -f /home/csamuelson/mat/bin/arm-none-eabi-gcc-tmp.exe; \<br />
( cd /home/csamuelson/mat/bin &amp;&amp; \<br />
ln arm-none-eabi-gcc.exe arm-none-eabi-gcc-tmp.exe &amp;&amp; \<br />
mv -f arm-none-eabi-gcc-tmp.exe arm-none-eabi-arm-none-eabi-gcc.exe ); \<br />
fi<br />
/usr/bin/install -c lto-wrapper.exe /home/csamuelson/mat/libexec/gcc/arm-none-eabi/4.6.2/lto-wrapper.exe<br />
make[1]: Leaving directory `/home/arm/gcc-4.6.2/obj/gcc&#8217;</p>
<p>SpiralRay@SpiralRay-PC /home/arm/gcc-4.6.2/obj<br />
$ cd ../../newlib-1.20.0</p>
<p>SpiralRay@SpiralRay-PC /home/arm/newlib-1.20.0<br />
$ ./configure &#8211;target=arm-none-eabi &#8211;prefix=/home/csamuelson/mat &#8211;enable-interwork &#8211;enable-multilib &#8211;disable-libssp &#8211;disable-nls<br />
checking build system type&#8230; i686-pc-cygwin<br />
checking host system type&#8230; i686-pc-cygwin<br />
checking target system type&#8230; arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether ln works&#8230; yes<br />
checking whether ln -s works&#8230; yes<br />
checking for a sed that does not truncate output&#8230; /usr/bin/sed<br />
checking for gawk&#8230; gawk<br />
checking to see if cat works as expected&#8230; yes<br />
checking for gcc&#8230; gcc<br />
checking for C compiler default output file name&#8230; a.exe<br />
checking whether the C compiler works&#8230; yes<br />
checking whether we are cross compiling&#8230; no<br />
checking for suffix of executables&#8230; .exe<br />
checking for suffix of object files&#8230; o<br />
checking whether we are using the GNU C compiler&#8230; yes<br />
checking whether gcc accepts -g&#8230; yes<br />
checking for gcc option to accept ISO C89&#8230; none needed<br />
checking for g++&#8230; g++<br />
checking whether we are using the GNU C++ compiler&#8230; yes<br />
checking whether g++ accepts -g&#8230; yes<br />
checking for gnatbind&#8230; no<br />
checking for gnatmake&#8230; no<br />
checking whether compiler driver understands Ada&#8230; no<br />
checking how to compare bootstrapped objects&#8230; cmp &#8211;ignore-initial=16 $$f1 $$f2<br />
checking for objdir&#8230; .libs<br />
checking for PWL_handle_timeout in -lpwl&#8230; no<br />
checking for version 0.11 (revision 0 or later) of PPL&#8230; no<br />
checking for default BUILD_CONFIG&#8230;<br />
checking for bison&#8230; bison -y<br />
checking for bison&#8230; bison<br />
checking for gm4&#8230; no<br />
checking for gnum4&#8230; no<br />
checking for m4&#8230; m4<br />
checking for flex&#8230; flex<br />
checking for flex&#8230; flex<br />
checking for makeinfo&#8230; makeinfo<br />
checking for expect&#8230; no<br />
checking for runtest&#8230; no<br />
checking for ar&#8230; ar<br />
checking for as&#8230; as<br />
checking for dlltool&#8230; dlltool<br />
checking for ld&#8230; (cached) /usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/bin/ld.exe<br />
checking for lipo&#8230; no<br />
checking for nm&#8230; nm<br />
checking for ranlib&#8230; ranlib<br />
checking for strip&#8230; strip<br />
checking for windres&#8230; windres<br />
checking for windmc&#8230; windmc<br />
checking for objcopy&#8230; objcopy<br />
checking for objdump&#8230; objdump<br />
checking for readelf&#8230; readelf<br />
checking for arm-none-eabi-cc&#8230; no<br />
checking for arm-none-eabi-gcc&#8230; arm-none-eabi-gcc<br />
checking for arm-none-eabi-c++&#8230; arm-none-eabi-c++<br />
checking for arm-none-eabi-gcc&#8230; arm-none-eabi-gcc<br />
checking for arm-none-eabi-gcj&#8230; no<br />
checking for arm-none-eabi-gfortran&#8230; no<br />
checking for arm-none-eabi-gccgo&#8230; no<br />
checking for arm-none-eabi-ar&#8230; arm-none-eabi-ar<br />
checking for arm-none-eabi-as&#8230; arm-none-eabi-as<br />
checking for arm-none-eabi-dlltool&#8230; no<br />
checking for arm-none-eabi-ld&#8230; arm-none-eabi-ld<br />
checking for arm-none-eabi-lipo&#8230; no<br />
checking for arm-none-eabi-nm&#8230; arm-none-eabi-nm<br />
checking for arm-none-eabi-objdump&#8230; arm-none-eabi-objdump<br />
checking for arm-none-eabi-ranlib&#8230; arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; arm-none-eabi-readelf<br />
checking for arm-none-eabi-strip&#8230; arm-none-eabi-strip<br />
checking for arm-none-eabi-windres&#8230; no<br />
checking for arm-none-eabi-windmc&#8230; no<br />
checking where to find the target ar&#8230; pre-installed<br />
checking where to find the target as&#8230; pre-installed<br />
checking where to find the target cc&#8230; pre-installed<br />
checking where to find the target c++&#8230; pre-installed<br />
checking where to find the target c++ for libstdc++&#8230; pre-installed<br />
checking where to find the target dlltool&#8230; pre-installed<br />
checking where to find the target gcc&#8230; pre-installed<br />
checking where to find the target gcj&#8230; pre-installed<br />
checking where to find the target gfortran&#8230; pre-installed<br />
checking where to find the target gccgo&#8230; pre-installed<br />
checking where to find the target ld&#8230; pre-installed<br />
checking where to find the target lipo&#8230; pre-installed<br />
checking where to find the target nm&#8230; pre-installed<br />
checking where to find the target objdump&#8230; pre-installed<br />
checking where to find the target ranlib&#8230; pre-installed<br />
checking where to find the target readelf&#8230; pre-installed<br />
checking where to find the target strip&#8230; pre-installed<br />
checking where to find the target windres&#8230; pre-installed<br />
checking where to find the target windmc&#8230; pre-installed<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking whether -fkeep-inline-functions is supported&#8230; yes<br />
configure: creating ./config.status<br />
config.status: creating Makefile</p>
<p>SpiralRay@SpiralRay-PC /home/arm/newlib-1.20.0<br />
$ make<br />
make[1]: Entering directory `/home/arm/newlib-1.20.0&#8242;<br />
Configuring in ./etc<br />
configure: creating cache ./config.cache<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
configure: updating cache ./config.cache<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
make[2]: Entering directory `/home/arm/newlib-1.20.0/etc&#8217;<br />
for f in standards.info configure.info; do \<br />
if test -f ./`echo $f | sed -e &#8217;s/.info$/.texi/&#8217;`; then \<br />
if make &#8220;MAKEINFO=makeinfo &#8211;split-size=5000000 &#8211;split-size=5000000&#8243; $f; then \<br />
true; \<br />
else \<br />
exit 1; \<br />
fi; \<br />
fi; \<br />
done<br />
make[3]: Entering directory `/home/arm/newlib-1.20.0/etc&#8217;<br />
makeinfo &#8211;split-size=5000000 &#8211;split-size=5000000 &#8211;no-split -I. -o standards.info ./standards.texi<br />
make[3]: Leaving directory `/home/arm/newlib-1.20.0/etc&#8217;<br />
make[3]: Entering directory `/home/arm/newlib-1.20.0/etc&#8217;<br />
rm -f configdev.txt configbuild.txt<br />
cp ./configdev.tin configdev.txt<br />
cp ./configbuild.tin configbuild.txt<br />
makeinfo &#8211;split-size=5000000 &#8211;split-size=5000000 -I. -o configure.info ./configure.texi<br />
rm -f configdev.txt configbuild.txt<br />
make[3]: Leaving directory `/home/arm/newlib-1.20.0/etc&#8217;<br />
make[2]: Leaving directory `/home/arm/newlib-1.20.0/etc&#8217;<br />
Checking multilib configuration for newlib&#8230;<br />
mkdir -p &#8212; arm-none-eabi/newlib<br />
Configuring in arm-none-eabi/newlib<br />
configure: creating cache ./config.cache<br />
checking build system type&#8230; i686-pc-cygwin<br />
checking host system type&#8230; arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; /usr/bin/mkdir -p<br />
checking for gawk&#8230; gawk<br />
checking whether make sets $(MAKE)&#8230; yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm   &#8230; gcc3<br />
checking whether we are using GNU C&#8230; yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm    accepts -g&#8230; no<br />
checking for arm-none-eabi-as&#8230; arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking for gawk&#8230; (cached) gawk<br />
checking for .preinit_array/.init_array/.fini_array support&#8230; yes<br />
checking whether long double type exists&#8230; yes<br />
checking whether long double equals double&#8230; yes<br />
configure: updating cache ./config.cache<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
Adding multilib support to Makefile in ../.././newlib<br />
multidirs=cortex-m4 float-abi-hard float-abi-hard/fpuv4-sp-d16 cortex-m4/float-abi-hard cortex-m4/fpuv4-sp-d16 cortex-m4/float-abi-hard/fpuv4-sp-d16 thumb/cortex-m4 thumb/float-abi-hard thumb/float-abi-hard/fpuv4-sp-d16 thumb/cortex-m4/float-abi-hard thumb/cortex-m4/fpuv4-sp-d16 thumb/cortex-m4/float-abi-hard/fpuv4-sp-d16<br />
with_multisubdir=<br />
Running configure in multilib subdirs cortex-m4 float-abi-hard float-abi-hard/fpuv4-sp-d16 cortex-m4/float-abi-hard cortex-m4/fpuv4-sp-d16 cortex-m4/float-abi-hard/fpuv4-sp-d16 thumb/cortex-m4 thumb/float-abi-hard thumb/float-abi-hard/fpuv4-sp-d16 thumb/cortex-m4/float-abi-hard thumb/cortex-m4/fpuv4-sp-d16 thumb/cortex-m4/float-abi-hard/fpuv4-sp-d16<br />
pwd: /home/arm/newlib-1.20.0/arm-none-eabi/newlib<br />
Running configure in multilib subdir cortex-m4<br />
pwd: /home/arm/newlib-1.20.0/arm-none-eabi<br />
mkdir cortex-m4<br />
configure: creating cache ./config.cache<br />
checking build system type&#8230; i686-pc-cygwin<br />
checking host system type&#8230; arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; /usr/bin/mkdir -p<br />
checking for gawk&#8230; gawk<br />
checking whether make sets $(MAKE)&#8230; yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8230; none<br />
checking whether we are using GNU C&#8230; no<br />
checking for arm-none-eabi-as&#8230; arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking for gawk&#8230; (cached) gawk<br />
checking for .preinit_array/.init_array/.fini_array support&#8230; no<br />
checking whether long double type exists&#8230; no<br />
checking whether long double equals double&#8230; no<br />
configure: updating cache ./config.cache<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
Adding multilib support to Makefile in ../../.././newlib<br />
with_multisubdir=cortex-m4<br />
config.status: creating newlib.h<br />
config.status: executing depfiles commands<br />
=== configuring in libc (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/libc)<br />
configure: running /bin/sh ../../../.././newlib/libc/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../.././newlib/libc<br />
configure: loading cache .././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking Checking long double support&#8230; (cached) no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating argz/Makefile<br />
config.status: creating ctype/Makefile<br />
config.status: creating errno/Makefile<br />
config.status: creating locale/Makefile<br />
config.status: creating misc/Makefile<br />
config.status: creating reent/Makefile<br />
config.status: creating search/Makefile<br />
config.status: creating stdio/Makefile<br />
config.status: creating stdio64/Makefile<br />
config.status: creating stdlib/Makefile<br />
config.status: creating string/Makefile<br />
config.status: creating time/Makefile<br />
config.status: creating posix/Makefile<br />
config.status: creating signal/Makefile<br />
config.status: creating syscalls/Makefile<br />
config.status: creating unix/Makefile<br />
config.status: creating iconv/Makefile<br />
config.status: creating iconv/ces/Makefile<br />
config.status: creating iconv/ccs/Makefile<br />
config.status: creating iconv/ccs/binary/Makefile<br />
config.status: creating iconv/lib/Makefile<br />
config.status: creating xdr/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/libc/machine)<br />
configure: running /bin/sh ../../../../.././newlib/libc/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../.././newlib/libc/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/libc/machine/arm)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/machine/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/machine/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in sys (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/libc/sys)<br />
configure: running /bin/sh ../../../../.././newlib/libc/sys/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../.././newlib/libc/sys<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/libc/sys/arm)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/sys/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/sys/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in libm (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/libm)<br />
configure: running /bin/sh ../../../.././newlib/libm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../.././newlib/libm<br />
configure: loading cache .././config.cache<br />
checking Checking long double support&#8230; (cached) no<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating math/Makefile<br />
config.status: creating mathfp/Makefile<br />
config.status: creating common/Makefile<br />
config.status: creating complex/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/libm/machine)<br />
configure: running /bin/sh ../../../../.././newlib/libm/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../.././newlib/libm/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
Running configure in multilib subdir float-abi-hard<br />
pwd: /home/arm/newlib-1.20.0/arm-none-eabi<br />
mkdir float-abi-hard<br />
configure: creating cache ./config.cache<br />
checking build system type&#8230; i686-pc-cygwin<br />
checking host system type&#8230; arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; /usr/bin/mkdir -p<br />
checking for gawk&#8230; gawk<br />
checking whether make sets $(MAKE)&#8230; yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8230; gcc3<br />
checking whether we are using GNU C&#8230; yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard accepts -g&#8230; no<br />
checking for arm-none-eabi-as&#8230; arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking for gawk&#8230; (cached) gawk<br />
checking for .preinit_array/.init_array/.fini_array support&#8230; yes<br />
checking whether long double type exists&#8230; yes<br />
checking whether long double equals double&#8230; yes<br />
configure: updating cache ./config.cache<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
Adding multilib support to Makefile in ../../.././newlib<br />
with_multisubdir=float-abi-hard<br />
config.status: creating newlib.h<br />
config.status: executing depfiles commands<br />
=== configuring in libc (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/libc)<br />
configure: running /bin/sh ../../../.././newlib/libc/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;F77= -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../.././newlib/libc<br />
configure: loading cache .././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking Checking long double support&#8230; (cached) yes<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating argz/Makefile<br />
config.status: creating ctype/Makefile<br />
config.status: creating errno/Makefile<br />
config.status: creating locale/Makefile<br />
config.status: creating misc/Makefile<br />
config.status: creating reent/Makefile<br />
config.status: creating search/Makefile<br />
config.status: creating stdio/Makefile<br />
config.status: creating stdio64/Makefile<br />
config.status: creating stdlib/Makefile<br />
config.status: creating string/Makefile<br />
config.status: creating time/Makefile<br />
config.status: creating posix/Makefile<br />
config.status: creating signal/Makefile<br />
config.status: creating syscalls/Makefile<br />
config.status: creating unix/Makefile<br />
config.status: creating iconv/Makefile<br />
config.status: creating iconv/ces/Makefile<br />
config.status: creating iconv/ccs/Makefile<br />
config.status: creating iconv/ccs/binary/Makefile<br />
config.status: creating iconv/lib/Makefile<br />
config.status: creating xdr/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/libc/machine)<br />
configure: running /bin/sh ../../../../.././newlib/libc/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;F77= -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../.././newlib/libc/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/libc/machine/arm)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/machine/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;F77= -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/machine/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in sys (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/libc/sys)<br />
configure: running /bin/sh ../../../../.././newlib/libc/sys/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;F77= -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../.././newlib/libc/sys<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/libc/sys/arm)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/sys/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;F77= -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/sys/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in libm (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/libm)<br />
configure: running /bin/sh ../../../.././newlib/libm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;F77= -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../.././newlib/libm<br />
configure: loading cache .././config.cache<br />
checking Checking long double support&#8230; (cached) yes<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating math/Makefile<br />
config.status: creating mathfp/Makefile<br />
config.status: creating common/Makefile<br />
config.status: creating complex/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/libm/machine)<br />
configure: running /bin/sh ../../../../.././newlib/libm/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;F77= -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8217; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../.././newlib/libm/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
Running configure in multilib subdir float-abi-hard/fpuv4-sp-d16<br />
pwd: /home/arm/newlib-1.20.0/arm-none-eabi<br />
mkdir float-abi-hard/fpuv4-sp-d16<br />
configure: creating cache ./config.cache<br />
checking build system type&#8230; i686-pc-cygwin<br />
checking host system type&#8230; arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; /usr/bin/mkdir -p<br />
checking for gawk&#8230; gawk<br />
checking whether make sets $(MAKE)&#8230; yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; gcc3<br />
checking whether we are using GNU C&#8230; yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16 accepts -g&#8230; no<br />
checking for arm-none-eabi-as&#8230; arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking for gawk&#8230; (cached) gawk<br />
checking for .preinit_array/.init_array/.fini_array support&#8230; yes<br />
checking whether long double type exists&#8230; yes<br />
checking whether long double equals double&#8230; yes<br />
configure: updating cache ./config.cache<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
Adding multilib support to Makefile in ../../../.././newlib<br />
with_multisubdir=float-abi-hard/fpuv4-sp-d16<br />
config.status: creating newlib.h<br />
config.status: executing depfiles commands<br />
=== configuring in libc (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/libc)<br />
configure: running /bin/sh ../../../../.././newlib/libc/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../.././newlib/libc<br />
configure: loading cache .././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16 accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking Checking long double support&#8230; (cached) yes<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating argz/Makefile<br />
config.status: creating ctype/Makefile<br />
config.status: creating errno/Makefile<br />
config.status: creating locale/Makefile<br />
config.status: creating misc/Makefile<br />
config.status: creating reent/Makefile<br />
config.status: creating search/Makefile<br />
config.status: creating stdio/Makefile<br />
config.status: creating stdio64/Makefile<br />
config.status: creating stdlib/Makefile<br />
config.status: creating string/Makefile<br />
config.status: creating time/Makefile<br />
config.status: creating posix/Makefile<br />
config.status: creating signal/Makefile<br />
config.status: creating syscalls/Makefile<br />
config.status: creating unix/Makefile<br />
config.status: creating iconv/Makefile<br />
config.status: creating iconv/ces/Makefile<br />
config.status: creating iconv/ccs/Makefile<br />
config.status: creating iconv/ccs/binary/Makefile<br />
config.status: creating iconv/lib/Makefile<br />
config.status: creating xdr/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/libc/machine)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16 accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/libc/machine/arm)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/machine/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/machine/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16 accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in sys (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/libc/sys)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/sys/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/sys<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16 accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/libc/sys/arm)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/sys/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/sys/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16 accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in libm (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/libm)<br />
configure: running /bin/sh ../../../../.././newlib/libm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../.././newlib/libm<br />
configure: loading cache .././config.cache<br />
checking Checking long double support&#8230; (cached) yes<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16 accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating math/Makefile<br />
config.status: creating mathfp/Makefile<br />
config.status: creating common/Makefile<br />
config.status: creating complex/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/libm/machine)<br />
configure: running /bin/sh ../../../../../.././newlib/libm/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libm/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mfloat-abi=hard -mfpu=fpv4-sp-d16 accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
Running configure in multilib subdir cortex-m4/float-abi-hard<br />
pwd: /home/arm/newlib-1.20.0/arm-none-eabi<br />
mkdir cortex-m4/float-abi-hard<br />
configure: creating cache ./config.cache<br />
checking build system type&#8230; i686-pc-cygwin<br />
checking host system type&#8230; arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; /usr/bin/mkdir -p<br />
checking for gawk&#8230; gawk<br />
checking whether make sets $(MAKE)&#8230; yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8230; none<br />
checking whether we are using GNU C&#8230; no<br />
checking for arm-none-eabi-as&#8230; arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking for gawk&#8230; (cached) gawk<br />
checking for .preinit_array/.init_array/.fini_array support&#8230; no<br />
checking whether long double type exists&#8230; no<br />
checking whether long double equals double&#8230; no<br />
configure: updating cache ./config.cache<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
Adding multilib support to Makefile in ../../../.././newlib<br />
with_multisubdir=cortex-m4/float-abi-hard<br />
config.status: creating newlib.h<br />
config.status: executing depfiles commands<br />
=== configuring in libc (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/libc)<br />
configure: running /bin/sh ../../../../.././newlib/libc/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../.././newlib/libc<br />
configure: loading cache .././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking Checking long double support&#8230; (cached) no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating argz/Makefile<br />
config.status: creating ctype/Makefile<br />
config.status: creating errno/Makefile<br />
config.status: creating locale/Makefile<br />
config.status: creating misc/Makefile<br />
config.status: creating reent/Makefile<br />
config.status: creating search/Makefile<br />
config.status: creating stdio/Makefile<br />
config.status: creating stdio64/Makefile<br />
config.status: creating stdlib/Makefile<br />
config.status: creating string/Makefile<br />
config.status: creating time/Makefile<br />
config.status: creating posix/Makefile<br />
config.status: creating signal/Makefile<br />
config.status: creating syscalls/Makefile<br />
config.status: creating unix/Makefile<br />
config.status: creating iconv/Makefile<br />
config.status: creating iconv/ces/Makefile<br />
config.status: creating iconv/ccs/Makefile<br />
config.status: creating iconv/ccs/binary/Makefile<br />
config.status: creating iconv/lib/Makefile<br />
config.status: creating xdr/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/libc/machine)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/libc/machine/arm)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/machine/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/machine/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in sys (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/libc/sys)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/sys/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/sys<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/libc/sys/arm)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/sys/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/sys/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in libm (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/libm)<br />
configure: running /bin/sh ../../../../.././newlib/libm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../.././newlib/libm<br />
configure: loading cache .././config.cache<br />
checking Checking long double support&#8230; (cached) no<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating math/Makefile<br />
config.status: creating mathfp/Makefile<br />
config.status: creating common/Makefile<br />
config.status: creating complex/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/libm/machine)<br />
configure: running /bin/sh ../../../../../.././newlib/libm/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8217; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libm/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
Running configure in multilib subdir cortex-m4/fpuv4-sp-d16<br />
pwd: /home/arm/newlib-1.20.0/arm-none-eabi<br />
mkdir cortex-m4/fpuv4-sp-d16<br />
configure: creating cache ./config.cache<br />
checking build system type&#8230; i686-pc-cygwin<br />
checking host system type&#8230; arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; /usr/bin/mkdir -p<br />
checking for gawk&#8230; gawk<br />
checking whether make sets $(MAKE)&#8230; yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8230; none<br />
checking whether we are using GNU C&#8230; no<br />
checking for arm-none-eabi-as&#8230; arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking for gawk&#8230; (cached) gawk<br />
checking for .preinit_array/.init_array/.fini_array support&#8230; no<br />
checking whether long double type exists&#8230; no<br />
checking whether long double equals double&#8230; no<br />
configure: updating cache ./config.cache<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
Adding multilib support to Makefile in ../../../.././newlib<br />
with_multisubdir=cortex-m4/fpuv4-sp-d16<br />
config.status: creating newlib.h<br />
config.status: executing depfiles commands<br />
=== configuring in libc (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/libc)<br />
configure: running /bin/sh ../../../../.././newlib/libc/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../.././newlib/libc<br />
configure: loading cache .././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking Checking long double support&#8230; (cached) no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating argz/Makefile<br />
config.status: creating ctype/Makefile<br />
config.status: creating errno/Makefile<br />
config.status: creating locale/Makefile<br />
config.status: creating misc/Makefile<br />
config.status: creating reent/Makefile<br />
config.status: creating search/Makefile<br />
config.status: creating stdio/Makefile<br />
config.status: creating stdio64/Makefile<br />
config.status: creating stdlib/Makefile<br />
config.status: creating string/Makefile<br />
config.status: creating time/Makefile<br />
config.status: creating posix/Makefile<br />
config.status: creating signal/Makefile<br />
config.status: creating syscalls/Makefile<br />
config.status: creating unix/Makefile<br />
config.status: creating iconv/Makefile<br />
config.status: creating iconv/ces/Makefile<br />
config.status: creating iconv/ccs/Makefile<br />
config.status: creating iconv/ccs/binary/Makefile<br />
config.status: creating iconv/lib/Makefile<br />
config.status: creating xdr/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/libc/machine)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/libc/machine/arm)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/machine/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/machine/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in sys (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/libc/sys)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/sys/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/sys<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/libc/sys/arm)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/sys/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/sys/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in libm (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/libm)<br />
configure: running /bin/sh ../../../../.././newlib/libm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../.././newlib/libm<br />
configure: loading cache .././config.cache<br />
checking Checking long double support&#8230; (cached) no<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating math/Makefile<br />
config.status: creating mathfp/Makefile<br />
config.status: creating common/Makefile<br />
config.status: creating complex/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/libm/machine)<br />
configure: running /bin/sh ../../../../../.././newlib/libm/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libm/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
Running configure in multilib subdir cortex-m4/float-abi-hard/fpuv4-sp-d16<br />
pwd: /home/arm/newlib-1.20.0/arm-none-eabi<br />
mkdir cortex-m4/float-abi-hard/fpuv4-sp-d16<br />
configure: creating cache ./config.cache<br />
checking build system type&#8230; i686-pc-cygwin<br />
checking host system type&#8230; arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; /usr/bin/mkdir -p<br />
checking for gawk&#8230; gawk<br />
checking whether make sets $(MAKE)&#8230; yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; none<br />
checking whether we are using GNU C&#8230; no<br />
checking for arm-none-eabi-as&#8230; arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking for gawk&#8230; (cached) gawk<br />
checking for .preinit_array/.init_array/.fini_array support&#8230; no<br />
checking whether long double type exists&#8230; no<br />
checking whether long double equals double&#8230; no<br />
configure: updating cache ./config.cache<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
Adding multilib support to Makefile in ../../../../.././newlib<br />
with_multisubdir=cortex-m4/float-abi-hard/fpuv4-sp-d16<br />
config.status: creating newlib.h<br />
config.status: executing depfiles commands<br />
=== configuring in libc (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/libc)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../../.././newlib/libc<br />
configure: loading cache .././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking Checking long double support&#8230; (cached) no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating argz/Makefile<br />
config.status: creating ctype/Makefile<br />
config.status: creating errno/Makefile<br />
config.status: creating locale/Makefile<br />
config.status: creating misc/Makefile<br />
config.status: creating reent/Makefile<br />
config.status: creating search/Makefile<br />
config.status: creating stdio/Makefile<br />
config.status: creating stdio64/Makefile<br />
config.status: creating stdlib/Makefile<br />
config.status: creating string/Makefile<br />
config.status: creating time/Makefile<br />
config.status: creating posix/Makefile<br />
config.status: creating signal/Makefile<br />
config.status: creating syscalls/Makefile<br />
config.status: creating unix/Makefile<br />
config.status: creating iconv/Makefile<br />
config.status: creating iconv/ces/Makefile<br />
config.status: creating iconv/ccs/Makefile<br />
config.status: creating iconv/ccs/binary/Makefile<br />
config.status: creating iconv/lib/Makefile<br />
config.status: creating xdr/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/libc/machine)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/libc/machine/arm)<br />
configure: running /bin/sh ../../../../../../../.././newlib/libc/machine/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../../../.././newlib/libc/machine/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in sys (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/libc/sys)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/sys/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/sys<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/libc/sys/arm)<br />
configure: running /bin/sh ../../../../../../../.././newlib/libc/sys/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../../../.././newlib/libc/sys/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in libm (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/libm)<br />
configure: running /bin/sh ../../../../../.././newlib/libm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../../.././newlib/libm<br />
configure: loading cache .././config.cache<br />
checking Checking long double support&#8230; (cached) no<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating math/Makefile<br />
config.status: creating mathfp/Makefile<br />
config.status: creating common/Makefile<br />
config.status: creating complex/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/libm/machine)<br />
configure: running /bin/sh ../../../../../../.././newlib/libm/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=cortex-m4/float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libm/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
Running configure in multilib subdir thumb/cortex-m4<br />
pwd: /home/arm/newlib-1.20.0/arm-none-eabi<br />
mkdir thumb<br />
mkdir thumb/cortex-m4<br />
configure: creating cache ./config.cache<br />
checking build system type&#8230; i686-pc-cygwin<br />
checking host system type&#8230; arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; /usr/bin/mkdir -p<br />
checking for gawk&#8230; gawk<br />
checking whether make sets $(MAKE)&#8230; yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8230; none<br />
checking whether we are using GNU C&#8230; no<br />
checking for arm-none-eabi-as&#8230; arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking for gawk&#8230; (cached) gawk<br />
checking for .preinit_array/.init_array/.fini_array support&#8230; no<br />
checking whether long double type exists&#8230; no<br />
checking whether long double equals double&#8230; no<br />
configure: updating cache ./config.cache<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
Adding multilib support to Makefile in ../../../.././newlib<br />
with_multisubdir=thumb/cortex-m4<br />
config.status: creating newlib.h<br />
config.status: executing depfiles commands<br />
=== configuring in libc (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/libc)<br />
configure: running /bin/sh ../../../../.././newlib/libc/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../.././newlib/libc<br />
configure: loading cache .././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking Checking long double support&#8230; (cached) no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating argz/Makefile<br />
config.status: creating ctype/Makefile<br />
config.status: creating errno/Makefile<br />
config.status: creating locale/Makefile<br />
config.status: creating misc/Makefile<br />
config.status: creating reent/Makefile<br />
config.status: creating search/Makefile<br />
config.status: creating stdio/Makefile<br />
config.status: creating stdio64/Makefile<br />
config.status: creating stdlib/Makefile<br />
config.status: creating string/Makefile<br />
config.status: creating time/Makefile<br />
config.status: creating posix/Makefile<br />
config.status: creating signal/Makefile<br />
config.status: creating syscalls/Makefile<br />
config.status: creating unix/Makefile<br />
config.status: creating iconv/Makefile<br />
config.status: creating iconv/ces/Makefile<br />
config.status: creating iconv/ccs/Makefile<br />
config.status: creating iconv/ccs/binary/Makefile<br />
config.status: creating iconv/lib/Makefile<br />
config.status: creating xdr/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/libc/machine)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/libc/machine/arm)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/machine/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/machine/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in sys (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/libc/sys)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/sys/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/sys<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/libc/sys/arm)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/sys/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/sys/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
../../../../../../.././newlib/libc/sys/arm/configure: line 4550: /usr/bin/cat: Bad address<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in libm (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/libm)<br />
configure: running /bin/sh ../../../../.././newlib/libm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../.././newlib/libm<br />
configure: loading cache .././config.cache<br />
checking Checking long double support&#8230; (cached) no<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating math/Makefile<br />
config.status: creating mathfp/Makefile<br />
config.status: creating common/Makefile<br />
config.status: creating complex/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/libm/machine)<br />
configure: running /bin/sh ../../../../../.././newlib/libm/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/cortex-m4&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;F77= -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libm/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mcpu=mcpu=cortex-m4&#8230; (cached) none<br />
checking whether we are using GNU C&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
Running configure in multilib subdir thumb/float-abi-hard<br />
pwd: /home/arm/newlib-1.20.0/arm-none-eabi<br />
mkdir thumb/float-abi-hard<br />
configure: creating cache ./config.cache<br />
checking build system type&#8230; i686-pc-cygwin<br />
checking host system type&#8230; arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; /usr/bin/mkdir -p<br />
checking for gawk&#8230; gawk<br />
checking whether make sets $(MAKE)&#8230; yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8230; gcc3<br />
checking whether we are using GNU C&#8230; yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard accepts -g&#8230; no<br />
checking for arm-none-eabi-as&#8230; arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking for gawk&#8230; (cached) gawk<br />
checking for .preinit_array/.init_array/.fini_array support&#8230; no<br />
checking whether long double type exists&#8230; no<br />
checking whether long double equals double&#8230; yes<br />
configure: updating cache ./config.cache<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
Adding multilib support to Makefile in ../../../.././newlib<br />
with_multisubdir=thumb/float-abi-hard<br />
config.status: creating newlib.h<br />
config.status: executing depfiles commands<br />
=== configuring in libc (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/libc)<br />
configure: running /bin/sh ../../../../.././newlib/libc/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;F77= -mthumb -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../.././newlib/libc<br />
configure: loading cache .././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking Checking long double support&#8230; (cached) no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating argz/Makefile<br />
config.status: creating ctype/Makefile<br />
config.status: creating errno/Makefile<br />
config.status: creating locale/Makefile<br />
config.status: creating misc/Makefile<br />
config.status: creating reent/Makefile<br />
config.status: creating search/Makefile<br />
config.status: creating stdio/Makefile<br />
config.status: creating stdio64/Makefile<br />
config.status: creating stdlib/Makefile<br />
config.status: creating string/Makefile<br />
config.status: creating time/Makefile<br />
config.status: creating posix/Makefile<br />
config.status: creating signal/Makefile<br />
config.status: creating syscalls/Makefile<br />
config.status: creating unix/Makefile<br />
config.status: creating iconv/Makefile<br />
config.status: creating iconv/ces/Makefile<br />
config.status: creating iconv/ccs/Makefile<br />
config.status: creating iconv/ccs/binary/Makefile<br />
config.status: creating iconv/lib/Makefile<br />
config.status: creating xdr/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/libc/machine)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;F77= -mthumb -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/libc/machine/arm)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/machine/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;F77= -mthumb -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/machine/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in sys (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/libc/sys)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/sys/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;F77= -mthumb -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libc/sys<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in arm (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/libc/sys/arm)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/sys/arm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;F77= -mthumb -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8211;cache-file=../../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/sys/arm<br />
configure: loading cache ../../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in libm (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/libm)<br />
configure: running /bin/sh ../../../../.././newlib/libm/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;F77= -mthumb -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../.././newlib/libm<br />
configure: loading cache .././config.cache<br />
checking Checking long double support&#8230; (cached) no<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating math/Makefile<br />
config.status: creating mathfp/Makefile<br />
config.status: creating common/Makefile<br />
config.status: creating complex/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/libm/machine)<br />
configure: running /bin/sh ../../../../../.././newlib/libm/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/float-abi-hard&#8217; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;F77= -mthumb -mfloat-abi=hard&#8217; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8217; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../.././newlib/libm/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: executing depfiles commands<br />
Running configure in multilib subdir thumb/float-abi-hard/fpuv4-sp-d16<br />
pwd: /home/arm/newlib-1.20.0/arm-none-eabi<br />
mkdir thumb/float-abi-hard/fpuv4-sp-d16<br />
configure: creating cache ./config.cache<br />
checking build system type&#8230; i686-pc-cygwin<br />
checking host system type&#8230; arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; /usr/bin/mkdir -p<br />
checking for gawk&#8230; gawk<br />
checking whether make sets $(MAKE)&#8230; yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; gcc3<br />
checking whether we are using GNU C&#8230; yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 accepts -g&#8230; no<br />
checking for arm-none-eabi-as&#8230; arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking for gawk&#8230; (cached) gawk<br />
checking for .preinit_array/.init_array/.fini_array support&#8230; no<br />
checking whether long double type exists&#8230; no<br />
checking whether long double equals double&#8230; yes<br />
configure: updating cache ./config.cache<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
Adding multilib support to Makefile in ../../../../.././newlib<br />
with_multisubdir=thumb/float-abi-hard/fpuv4-sp-d16<br />
config.status: creating newlib.h<br />
config.status: executing depfiles commands<br />
=== configuring in libc (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/libc)<br />
configure: running /bin/sh ../../../../../.././newlib/libc/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=.././config.cache &#8211;srcdir=../../../../../.././newlib/libc<br />
configure: loading cache .././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
checking Checking long double support&#8230; (cached) no<br />
configure: creating ./config.status<br />
config.status: creating Makefile<br />
config.status: creating argz/Makefile<br />
config.status: creating ctype/Makefile<br />
config.status: creating errno/Makefile<br />
config.status: creating locale/Makefile<br />
config.status: creating misc/Makefile<br />
config.status: creating reent/Makefile<br />
config.status: creating search/Makefile<br />
config.status: creating stdio/Makefile<br />
config.status: creating stdio64/Makefile<br />
config.status: creating stdlib/Makefile<br />
config.status: creating string/Makefile<br />
config.status: creating time/Makefile<br />
config.status: creating posix/Makefile<br />
config.status: creating signal/Makefile<br />
config.status: creating syscalls/Makefile<br />
config.status: creating unix/Makefile<br />
config.status: creating iconv/Makefile<br />
config.status: creating iconv/ces/Makefile<br />
config.status: creating iconv/ccs/Makefile<br />
config.status: creating iconv/ccs/binary/Makefile<br />
config.status: creating iconv/lib/Makefile<br />
config.status: creating xdr/Makefile<br />
config.status: executing depfiles commands<br />
=== configuring in machine (/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/libc/machine)<br />
configure: running /bin/sh ../../../../../../.././newlib/libc/machine/configure &#8211;disable-option-checking &#8216;&#8211;prefix=/home/csamuelson/mat&#8217;  &#8216;&#8211;with-multisubdir=thumb/float-abi-hard/fpuv4-sp-d16&#8242; &#8216;&#8211;with-multisrctop=&#8217; &#8216;&#8211;with-newlib&#8217; &#8216;&#8211;with-cross-host=i686-pc-cygwin&#8217; &#8216;&#8211;enable-interwork&#8217; &#8216;&#8211;enable-multilib&#8217; &#8216;&#8211;disable-libssp&#8217; &#8216;&#8211;disable-nls&#8217; &#8216;&#8211;program-transform-name=s&amp;^&amp;arm-none-eabi-&amp;&#8217; &#8216;&#8211;with-target-subdir=arm-none-eabi&#8217; &#8216;&#8211;build=i686-pc-cygwin&#8217; &#8216;&#8211;host=arm-none-eabi&#8217; &#8216;&#8211;target=arm-none-eabi&#8217; &#8216;build_alias=i686-pc-cygwin&#8217; &#8216;host_alias=arm-none-eabi&#8217; &#8216;target_alias=arm-none-eabi&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm &#8216; &#8216;CFLAGS=-g -O2&#8242; &#8216;LDFLAGS=&#8217; &#8216;CPPFLAGS=&#8217; &#8216;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;CXX=arm-none-eabi-c++ -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;F77= -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GCJ=arm-none-eabi-gcj -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GFORTRAN=arm-none-eabi-gfortran -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8216;GOC=arm-none-eabi-gccgo -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8242; &#8211;cache-file=../.././config.cache &#8211;srcdir=../../../../../../.././newlib/libc/machine<br />
configure: loading cache ../.././config.cache<br />
checking build system type&#8230; (cached) i686-pc-cygwin<br />
checking host system type&#8230; (cached) arm-none-eabi<br />
checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
checking whether build environment is sane&#8230; yes<br />
checking for arm-none-eabi-strip&#8230; (cached) arm-none-eabi-strip<br />
checking for a thread-safe mkdir -p&#8230; (cached) /usr/bin/mkdir -p<br />
checking for gawk&#8230; (cached) gawk<br />
checking whether make sets $(MAKE)&#8230; (cached) yes<br />
checking for style of include used by make&#8230; GNU<br />
checking for gcc&#8230; (cached) arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16<br />
checking dependency style of arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16&#8230; (cached) gcc3<br />
checking whether we are using GNU C&#8230; (cached) yes<br />
checking whether arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/thumb/float-abi-hard/fpuv4-sp-d16/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 accepts -g&#8230; (cached) no<br />
checking for arm-none-eabi-as&#8230; (cached) arm-none-eabi-as<br />
checking for arm-none-eabi-ar&#8230; (cached) arm-none-eabi-ar<br />
checking for arm-none-eabi-ranlib&#8230; (cached) arm-none-eabi-ranlib<br />
checking for arm-none-eabi-readelf&#8230; (cached) arm-none-eabi-readelf<br />
checking whether to enable maintainer-specific portions of Makefiles&#8230; no<br />
checking for a sed that does not truncate output&#8230; (cached) /usr/bin/sed<br />
checking how to print strings&#8230; printf<br />
configure: creating ./config.status<br />
Makefile:6923: recipe for target `configure-target-newlib&#8217; failed<br />
make[1]: *** [configure-target-newlib] Error 1<br />
Makefile:843: recipe for target `all&#8217; failed<br />
make: *** [all] Interrupt</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
少し弄る<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>SpiralRay@SpiralRay-PC /home/arm/newlib-1.20.0<br />
$ make all<br />
make[1]: Entering directory `/home/arm/newlib-1.20.0&#8242;<br />
make[2]: Entering directory `/home/arm/newlib-1.20.0/etc&#8217;<br />
for f in standards.info configure.info; do \<br />
if test -f ./`echo $f | sed -e &#8217;s/.info$/.texi/&#8217;`; then \<br />
if make &#8220;MAKEINFO=makeinfo &#8211;split-size=5000000 &#8211;split-size=5000000&#8243; $f; then \<br />
true; \<br />
else \<br />
exit 1; \<br />
fi; \<br />
fi; \<br />
done<br />
make[3]: Entering directory `/home/arm/newlib-1.20.0/etc&#8217;<br />
make[3]: `standards.info&#8217; is up to date.<br />
make[3]: Leaving directory `/home/arm/newlib-1.20.0/etc&#8217;<br />
make[3]: Entering directory `/home/arm/newlib-1.20.0/etc&#8217;<br />
make[3]: `configure.info&#8217; is up to date.<br />
make[3]: Leaving directory `/home/arm/newlib-1.20.0/etc&#8217;<br />
make[2]: Leaving directory `/home/arm/newlib-1.20.0/etc&#8217;<br />
Checking multilib configuration for newlib&#8230;<br />
make[2]: Entering directory `/home/arm/newlib-1.20.0/arm-none-eabi/newlib&#8217;<br />
make &#8220;AR_FLAGS=rc&#8221;  &#8220;CC_FOR_BUILD=gcc&#8221;  &#8220;CFLAGS=-g -O2&#8243;  &#8220;CCASFLAGS=-g -O2&#8243;  &#8220;CFLAGS_FOR_BUILD=-g -O2&#8243;  &#8220;CFLAGS_FOR_TARGET=-g -O2&#8243;  &#8220;INSTALL=/usr/bin/install -c&#8221;  &#8220;LDFLAGS=&#8221;  &#8220;LIBCFLAGS=-g -O2&#8243;  &#8220;LIBCFLAGS_FOR_TARGET=-g -O2&#8243;  &#8220;MAKE=make&#8221;  &#8220;MAKEINFO=makeinfo &#8211;split-size=5000000 &#8211;split-size=5000000 &#8220;  &#8220;PICFLAG=&#8221;  &#8220;PICFLAG_FOR_TARGET=&#8221;  &#8220;SHELL=/bin/sh&#8221;  &#8220;EXPECT=expect&#8221;  &#8220;RUNTEST=runtest&#8221;  &#8220;RUNTESTFLAGS=&#8221;  &#8220;exec_prefix=/home/csamuelson/mat&#8221;  &#8220;infodir=/home/csamuelson/mat/share/info&#8221;  &#8220;libdir=/home/csamuelson/mat/lib&#8221;  &#8220;prefix=/home/csamuelson/mat&#8221;  &#8220;tooldir=/home/csamuelson/mat/arm-none-eabi&#8221;  &#8220;top_toollibdir=/home/csamuelson/mat/arm-none-eabi/lib&#8221;  &#8220;AR=arm-none-eabi-ar&#8221;  &#8220;AS=arm-none-eabi-as&#8221;  &#8220;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm   &#8220;  &#8220;LD=arm-none-eabi-ld&#8221;  &#8220;LIBCFLAGS=-g -O2&#8243;  &#8220;NM=arm-none-eabi-nm&#8221;  &#8220;PICFLAG=&#8221;  &#8220;RANLIB=arm-none-eabi-ranlib&#8221;  &#8220;DESTDIR=&#8221; all-recursive<br />
make[3]: Entering directory `/home/arm/newlib-1.20.0/arm-none-eabi/newlib&#8217;<br />
make &#8220;AR_FLAGS=rc&#8221;  &#8220;CC_FOR_BUILD=gcc&#8221;  &#8220;CFLAGS=-g -O2&#8243;  &#8220;CCASFLAGS=-g -O2&#8243;  &#8220;CFLAGS_FOR_BUILD=-g -O2&#8243;  &#8220;CFLAGS_FOR_TARGET=-g -O2&#8243;  &#8220;INSTALL=/usr/bin/install -c&#8221;  &#8220;LDFLAGS=&#8221;  &#8220;LIBCFLAGS=-g -O2&#8243;  &#8220;LIBCFLAGS_FOR_TARGET=-g -O2&#8243;  &#8220;MAKE=make&#8221;  &#8220;MAKEINFO=makeinfo &#8211;split-size=5000000 &#8211;split-size=5000000  &#8220;  &#8220;PICFLAG=&#8221;  &#8220;PICFLAG_FOR_TARGET=&#8221;  &#8220;SHELL=/bin/sh&#8221;  &#8220;EXPECT=expect&#8221;  &#8220;RUNTEST=runtest&#8221;  &#8220;RUNTESTFLAGS=&#8221;  &#8220;exec_prefix=/home/csamuelson/mat&#8221;  &#8220;infodir=/home/csamuelson/mat/share/info&#8221;  &#8220;libdir=/home/csamuelson/mat/lib&#8221;  &#8220;prefix=/home/csamuelson/mat&#8221;  &#8220;tooldir=/home/csamuelson/mat/arm-none-eabi&#8221;  &#8220;top_toollibdir=/home/csamuelson/mat/arm-none-eabi/lib&#8221;  &#8220;AR=arm-none-eabi-ar&#8221;  &#8220;AS=arm-none-eabi-as&#8221;  &#8220;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm   &#8220;  &#8220;LD=arm-none-eabi-ld&#8221;  &#8220;LIBCFLAGS=-g -O2&#8243;  &#8220;NM=arm-none-eabi-nm&#8221;  &#8220;PICFLAG=&#8221;  &#8220;RANLIB=arm-none-eabi-ranlib&#8221;  &#8220;DESTDIR=&#8221; DO=all multi-do # make<br />
make[4]: Entering directory `/home/arm/newlib-1.20.0/arm-none-eabi/newlib&#8217;<br />
if [ -z "cortex-m4 float-abi-hard float-abi-hard/fpuv4-sp-d16 cortex-m4/float-abi-hard cortex-m4/fpuv4-sp-d16 cortex-m4/float-abi-hard/fpuv4-sp-d16 thumb/cortex-m4 thumb/float-abi-hard thumb/float-abi-hard/fpuv4-sp-d16 thumb/cortex-m4/float-abi-hard thumb/cortex-m4/fpuv4-sp-d16 thumb/cortex-m4/float-abi-hard/fpuv4-sp-d16" ]; then \<br />
true; \<br />
else \<br />
rootpre=`${PWDCMD-pwd}`/; export rootpre; \<br />
srcrootpre=`cd ../.././newlib; ${PWDCMD-pwd}`/; export srcrootpre; \<br />
lib=`echo &#8220;${rootpre}&#8221; | sed -e &#8217;s,^.*/\([^/][^/]*\)/$,\1,&#8217;`; \<br />
compiler=&#8221;arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm   &#8220;; \<br />
for i in `${compiler} &#8211;print-multi-lib 2&gt;/dev/null`; do \<br />
dir=`echo $i | sed -e &#8217;s/;.*$//&#8217;`; \<br />
if [ "${dir}" = "." ]; then \<br />
true; \<br />
else \<br />
if [ -d ../${dir}/${lib} ]; then \<br />
flags=`echo $i | sed -e &#8217;s/^[^;]*;//&#8217; -e &#8217;s/@/ -/g&#8217;`; \<br />
if (cd ../${dir}/${lib}; make &#8220;AR_FLAGS=rc&#8221;  &#8220;CC_FOR_BUILD=gcc&#8221;  &#8220;CFLAGS=-g -O2&#8243;  &#8220;CCASFLAGS=-g -O2&#8243;  &#8220;CFLAGS_FOR_BUILD=-g -O2&#8243;  &#8220;CFLAGS_FOR_TARGET=-g -O2&#8243;  &#8220;INSTALL=/usr/bin/install -c&#8221;  &#8220;LDFLAGS=&#8221;  &#8220;LIBCFLAGS=-g -O2&#8243;  &#8220;LIBCFLAGS_FOR_TARGET=-g -O2&#8243;  &#8220;MAKE=make&#8221;  &#8220;MAKEINFO=makeinfo &#8211;split-size=5000000 &#8211;split-size=5000000   &#8220;  &#8220;PICFLAG=&#8221;  &#8220;PICFLAG_FOR_TARGET=&#8221;  &#8220;SHELL=/bin/sh&#8221;  &#8220;EXPECT=expect&#8221;  &#8220;RUNTEST=runtest&#8221;  &#8220;RUNTESTFLAGS=&#8221;  &#8220;exec_prefix=/home/csamuelson/mat&#8221;  &#8220;infodir=/home/csamuelson/mat/share/info&#8221;  &#8220;libdir=/home/csamuelson/mat/lib&#8221;  &#8220;prefix=/home/csamuelson/mat&#8221;  &#8220;tooldir=/home/csamuelson/mat/arm-none-eabi&#8221;  &#8220;top_toollibdir=/home/csamuelson/mat/arm-none-eabi/lib&#8221;  &#8220;AR=arm-none-eabi-ar&#8221;  &#8220;AS=arm-none-eabi-as&#8221;  &#8220;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm   &#8220;  &#8220;LD=arm-none-eabi-ld&#8221;  &#8220;LIBCFLAGS=-g -O2&#8243;  &#8220;NM=arm-none-eabi-nm&#8221;  &#8220;PICFLAG=&#8221;  &#8220;RANLIB=arm-none-eabi-ranlib&#8221;  &#8220;DESTDIR=&#8221; \<br />
CFLAGS=&#8221;-g -O2 ${flags}&#8221; \<br />
CCASFLAGS=&#8221;-g -O2 ${flags}&#8221; \<br />
FCFLAGS=&#8221; ${flags}&#8221; \<br />
FFLAGS=&#8221; ${flags}&#8221; \<br />
ADAFLAGS=&#8221; ${flags}&#8221; \<br />
prefix=&#8221;/home/csamuelson/mat&#8221; \<br />
exec_prefix=&#8221;/home/csamuelson/mat&#8221; \<br />
GCJFLAGS=&#8221; ${flags}&#8221; \<br />
GOCFLAGS=&#8221;-O2 -g ${flags}&#8221; \<br />
CXXFLAGS=&#8221;-g -O2 ${flags}&#8221; \<br />
LIBCFLAGS=&#8221;-g -O2 ${flags}&#8221; \<br />
LIBCXXFLAGS=&#8221;-g -O2 -fno-implicit-templates ${flags}&#8221; \<br />
LDFLAGS=&#8221; ${flags}&#8221; \<br />
MULTIFLAGS=&#8221;${flags}&#8221; \<br />
DESTDIR=&#8221;" \<br />
INSTALL=&#8221;/usr/bin/install -c&#8221; \<br />
INSTALL_DATA=&#8221;/usr/bin/install -c -m 644&#8243; \<br />
INSTALL_PROGRAM=&#8221;/usr/bin/install -c&#8221; \<br />
INSTALL_SCRIPT=&#8221;/usr/bin/install -c&#8221; \<br />
all); then \<br />
true; \<br />
else \<br />
exit 1; \<br />
fi; \<br />
else true; \<br />
fi; \<br />
fi; \<br />
done; \<br />
fi<br />
make[5]: Entering directory `/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib&#8217;<br />
make &#8220;AR_FLAGS=rc&#8221;  &#8220;CC_FOR_BUILD=gcc&#8221;  &#8220;CFLAGS=-g -O2  -mcpu=mcpu=cortex-m4&#8243;  &#8220;CCASFLAGS=-g -O2  -mcpu=mcpu=cortex-m4&#8243;  &#8220;CFLAGS_FOR_BUILD=-g -O2&#8243;  &#8220;CFLAGS_FOR_TARGET=-g -O2&#8243;  &#8220;INSTALL=/usr/bin/install -c&#8221;  &#8220;LDFLAGS=-mcpu=mcpu=cortex-m4&#8243;  &#8220;LIBCFLAGS=-g -O2  -mcpu=mcpu=cortex-m4&#8243;  &#8220;LIBCFLAGS_FOR_TARGET=-g -O2&#8243;  &#8220;MAKE=make&#8221;  &#8220;MAKEINFO=makeinfo &#8211;split-size=5000000 &#8211;split-size=5000000    &#8220;  &#8220;PICFLAG=&#8221;  &#8220;PICFLAG_FOR_TARGET=&#8221;  &#8220;SHELL=/bin/sh&#8221;  &#8220;EXPECT=expect&#8221;  &#8220;RUNTEST=runtest&#8221;  &#8220;RUNTESTFLAGS=&#8221;  &#8220;exec_prefix=/home/csamuelson/mat&#8221;  &#8220;infodir=/home/csamuelson/mat/share/info&#8221;  &#8220;libdir=/home/csamuelson/mat/lib&#8221;  &#8220;prefix=/home/csamuelson/mat&#8221;  &#8220;tooldir=/home/csamuelson/mat/arm-none-eabi&#8221;  &#8220;top_toollibdir=/home/csamuelson/mat/arm-none-eabi/lib/cortex-m4&#8243;  &#8220;AR=arm-none-eabi-ar&#8221;  &#8220;AS=arm-none-eabi-as&#8221;  &#8220;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8243;  &#8220;LD=arm-none-eabi-ld&#8221;  &#8220;LIBCFLAGS=-g -O2  -mcpu=mcpu=cortex-m4&#8243;  &#8220;NM=arm-none-eabi-nm&#8221;  &#8220;PICFLAG=&#8221;  &#8220;RANLIB=arm-none-eabi-ranlib&#8221;  &#8220;DESTDIR=&#8221; all-recursive<br />
make[6]: Entering directory `/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib&#8217;<br />
true &#8220;AR_FLAGS=rc&#8221;  &#8220;CC_FOR_BUILD=gcc&#8221;  &#8220;CFLAGS=-g -O2  -mcpu=mcpu=cortex-m4&#8243;  &#8220;CCASFLAGS=-g -O2  -mcpu=mcpu=cortex-m4&#8243;  &#8220;CFLAGS_FOR_BUILD=-g -O2&#8243;  &#8220;CFLAGS_FOR_TARGET=-g -O2&#8243;  &#8220;INSTALL=/usr/bin/install -c&#8221;  &#8220;LDFLAGS=-mcpu=mcpu=cortex-m4&#8243;  &#8220;LIBCFLAGS=-g -O2  -mcpu=mcpu=cortex-m4&#8243;  &#8220;LIBCFLAGS_FOR_TARGET=-g -O2&#8243;  &#8220;MAKE=make&#8221;  &#8220;MAKEINFO=makeinfo &#8211;split-size=5000000 &#8211;split-size=5000000     &#8220;  &#8220;PICFLAG=&#8221;  &#8220;PICFLAG_FOR_TARGET=&#8221;  &#8220;SHELL=/bin/sh&#8221;  &#8220;EXPECT=expect&#8221;  &#8220;RUNTEST=runtest&#8221;  &#8220;RUNTESTFLAGS=&#8221;  &#8220;exec_prefix=/home/csamuelson/mat&#8221;  &#8220;infodir=/home/csamuelson/mat/share/info&#8221;  &#8220;libdir=/home/csamuelson/mat/lib&#8221;  &#8220;prefix=/home/csamuelson/mat&#8221;  &#8220;tooldir=/home/csamuelson/mat/arm-none-eabi&#8221;  &#8220;top_toollibdir=/home/csamuelson/mat/arm-none-eabi/lib/cortex-m4&#8243;  &#8220;AR=arm-none-eabi-ar&#8221;  &#8220;AS=arm-none-eabi-as&#8221;  &#8220;CC=arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4&#8243;  &#8220;LD=arm-none-eabi-ld&#8221;  &#8220;LIBCFLAGS=-g -O2  -mcpu=mcpu=cortex-m4&#8243;  &#8220;NM=arm-none-eabi-nm&#8221;  &#8220;PICFLAG=&#8221;  &#8220;RANLIB=arm-none-eabi-ranlib&#8221;  &#8220;DESTDIR=&#8221; DO=all multi-do # make<br />
Making all in libc<br />
make[7]: Entering directory `/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/libc&#8217;<br />
Making all in argz<br />
make[8]: Entering directory `/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/libc/argz&#8217;<br />
arm-none-eabi-gcc -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/ -isystem /home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/targ-include -isystem /home/arm/newlib-1.20.0/newlib/libc/include -B/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/arm -L/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/libgloss/libnosys -L/home/arm/newlib-1.20.0/libgloss/arm  -mcpu=mcpu=cortex-m4 -DPACKAGE_NAME=\&#8221;newlib\&#8221; -DPACKAGE_TARNAME=\&#8221;newlib\&#8221; -DPACKAGE_VERSION=\&#8221;1.20.0\&#8221; -DPACKAGE_STRING=\&#8221;newlib\ 1.20.0\&#8221; -DPACKAGE_BUGREPORT=\&#8221;\&#8221; -DPACKAGE_URL=\&#8221;\&#8221; -I. -I../../../../.././newlib/libc/argz -DARM_RDI_MONITOR -fno-builtin      -g -O2  -mcpu=mcpu=cortex-m4 -c -o lib_a-dummy.o `test -f &#8216;dummy.c&#8217; || echo &#8216;../../../../.././newlib/libc/argz/&#8217;`dummy.c<br />
cc1: error: bad value (mcpu=cortex-m4) for -mcpu switch<br />
cc1: error: bad value (mcpu=cortex-m4) for -mcpu switch<br />
Makefile:363: recipe for target `lib_a-dummy.o&#8217; failed<br />
make[8]: *** [lib_a-dummy.o] Error 1<br />
make[8]: Leaving directory `/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/libc/argz&#8217;<br />
Makefile:649: recipe for target `all-recursive&#8217; failed<br />
make[7]: *** [all-recursive] Error 1<br />
make[7]: Leaving directory `/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib/libc&#8217;<br />
Makefile:594: recipe for target `all-recursive&#8217; failed<br />
make[6]: *** [all-recursive] Error 1<br />
make[6]: Leaving directory `/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib&#8217;<br />
Makefile:416: recipe for target `all&#8217; failed<br />
make[5]: *** [all] Error 2<br />
make[5]: Leaving directory `/home/arm/newlib-1.20.0/arm-none-eabi/cortex-m4/newlib&#8217;<br />
Makefile:1150: recipe for target `multi-do&#8217; failed<br />
make[4]: *** [multi-do] Error 1<br />
make[4]: Leaving directory `/home/arm/newlib-1.20.0/arm-none-eabi/newlib&#8217;<br />
Makefile:1066: recipe for target `all-multi&#8217; failed<br />
make[3]: *** [all-multi] Error 2<br />
make[3]: Leaving directory `/home/arm/newlib-1.20.0/arm-none-eabi/newlib&#8217;<br />
Makefile:416: recipe for target `all&#8217; failed<br />
make[2]: *** [all] Error 2<br />
make[2]: Leaving directory `/home/arm/newlib-1.20.0/arm-none-eabi/newlib&#8217;<br />
Makefile:6966: recipe for target `all-target-newlib&#8217; failed<br />
make[1]: *** [all-target-newlib] Error 2<br />
make[1]: Leaving directory `/home/arm/newlib-1.20.0&#8242;<br />
Makefile:843: recipe for target `all&#8217; failed<br />
make: *** [all] Error 2</p>
]]></content:encoded>
			<wfw:commentRss>http://spiralray.rakusei.net/blog/2012/01/01/newlib%e3%83%93%e3%83%ab%e3%83%89%e3%82%a8%e3%83%a9%e3%83%bc%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>クリスマス</title>
		<link>http://spiralray.rakusei.net/blog/2011/12/25/%e3%82%af%e3%83%aa%e3%82%b9%e3%83%9e%e3%82%b9/</link>
		<comments>http://spiralray.rakusei.net/blog/2011/12/25/%e3%82%af%e3%83%aa%e3%82%b9%e3%83%9e%e3%82%b9/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 15:09:15 +0000</pubDate>
		<dc:creator>SpiralRay</dc:creator>
				<category><![CDATA[Robot]]></category>

		<guid isPermaLink="false">http://spiralray.rakusei.net/blog/2011/12/25/%e3%82%af%e3%83%aa%e3%82%b9%e3%83%9e%e3%82%b9/</guid>
		<description><![CDATA[
メリクリです。

機体にトッテがつきました。

だいぶコンパクトなんではないでしょうか？
それだけです。
多分3月までこのまま放置ですね。
]]></description>
			<content:encoded><![CDATA[<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/20111225-000901.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/20111225-000901.jpg" alt="20111225-000901.jpg" class="alignnone size-full" /></a><br />
メリクリです。</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/20111225-001012.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/20111225-001012.jpg" alt="20111225-001012.jpg" class="alignnone size-full" /></a><br />
機体にトッテがつきました。</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/20111225-001100.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/20111225-001100.jpg" alt="20111225-001100.jpg" class="alignnone size-full" /></a><br />
だいぶコンパクトなんではないでしょうか？</p>
<p>それだけです。<br />
多分3月までこのまま放置ですね。</p>
]]></content:encoded>
			<wfw:commentRss>http://spiralray.rakusei.net/blog/2011/12/25/%e3%82%af%e3%83%aa%e3%82%b9%e3%83%9e%e3%82%b9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>マイコン徹底入門で配布されている開発環境でSTM32F4にST-LINK/V2でプログラムを書き込む</title>
		<link>http://spiralray.rakusei.net/blog/2011/12/17/%e3%83%9e%e3%82%a4%e3%82%b3%e3%83%b3%e5%be%b9%e5%ba%95%e5%85%a5%e9%96%80%e3%81%a7%e9%85%8d%e5%b8%83%e3%81%95%e3%82%8c%e3%81%a6%e3%81%84%e3%82%8b%e9%96%8b%e7%99%ba%e7%92%b0%e5%a2%83%e3%81%a7stm32f4/</link>
		<comments>http://spiralray.rakusei.net/blog/2011/12/17/%e3%83%9e%e3%82%a4%e3%82%b3%e3%83%b3%e5%be%b9%e5%ba%95%e5%85%a5%e9%96%80%e3%81%a7%e9%85%8d%e5%b8%83%e3%81%95%e3%82%8c%e3%81%a6%e3%81%84%e3%82%8b%e9%96%8b%e7%99%ba%e7%92%b0%e5%a2%83%e3%81%a7stm32f4/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 13:48:31 +0000</pubDate>
		<dc:creator>SpiralRay</dc:creator>
				<category><![CDATA[STM32]]></category>

		<guid isPermaLink="false">http://spiralray.rakusei.net/blog/?p=1348</guid>
		<description><![CDATA[マイコン徹底入門で配布されているEclipseの開発環境を普段から使っているのですが、F1にしか対応していないので、とりあえずF4用のプログラムをビルド・ST-LINK/V2で書き込みできるようにしました。
VC++が必 [...]]]></description>
			<content:encoded><![CDATA[<p><a  href="http://miqn.net/node/10">マイコン徹底入門で配布されているEclipseの開発環境</a>を普段から使っているのですが、F1にしか対応していないので、とりあえずF4用のプログラムをビルド・ST-LINK/V2で書き込みできるようにしました。</p>
<p>VC++が必要なので予めインストールを。</p>
<p>実装するにあたって、ねむいさんのプログラムをまるまる<span style="text-decoration: line-through;">パクらせて</span>使用させていただきました。</p>
<p>様々な設定がmakefileを弄るだけでできるめっちゃ汎用性の高いプログラム…見習いたい…</p>
<p>というか、<a  href="http://nemuisan.blog.bai.ne.jp/?eid=188089">懇切丁寧にPN2での開発環境の構築方法を説明してくださっている</a>のでそっちを使ったほうがいいと思います…</p>
<p>ビルド部分は<span style="text-decoration: line-through;">丸パクり</span>なのでねむいさんの説明の<strong>&#8220;</strong><strong>２．サポートツール群&#8221;</strong>は予め設定しておいてください。</p>
<p>ぁ、ST-LINKで書き込みはできましたが、デバッグできません。する気もありません(ぇ</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/pe.png"><img class="alignnone size-thumbnail wp-image-1349" title="pe" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/pe-150x150.png" alt="pe" width="150" height="150" /></a></p>
<p>まず、左のバー&#8221;Project Explorer&#8221;で元々あったF1のプロジェクトをコピー＆ペーストで複製。</p>
<p>複製した方のプロジェクトの中身を全削除します。(新規作成してもいいがめんどくさい)</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/copy.png"><img class="alignnone size-thumbnail wp-image-1350" title="copy" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/copy-150x150.png" alt="copy" width="150" height="150" /></a></p>
<p>もろもろコピー。</p>
<p>コピーが終わったらmakefile内で定義されているPATHを自分用に直してください。</p>
<p>TOOLDIR・MAKEDIRらへんですね。</p>
<p>おそらくこの段階で<span style="color: #ff0000;">右のバー</span>”Make Target”で&#8221;all&#8221;を押したらビルドはできるはずです。</p>
<p>私はできなかったですが…</p>
<p>できなかかった場合は</p>
<p>TCHAIN  = C:\Program Files\CodeSourcery\Sourcery G++ Lite\bin\arm-none-eabi</p>
<p>とか</p>
<p>PATHにC:\Program Files\CodeSourcery\Sourcery G++ Lite\bin;を追加するとか、</p>
<p>絶対パスを設定したら、なんだかんだでうまくいきます。主にTHCHAIN。</p>
<p>（こういうときにProgram Filesってスペースあったらめんどくさい…）</p>
<p>まぁビルドの設定は丸パクりなので誰でもできるはず。</p>
<p>次に、<strong>ST-LINK/V2でプログラムを書き込めるように</strong>します。</p>
<p>”Make Target”のリスト一覧を</p>
<p>&#8220;all&#8221; &#8220;build&#8221; &#8220;clean&#8221; &#8220;program&#8221; &#8220;stvp&#8221;　にしてください。</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/mt.png"><img class="alignnone size-thumbnail wp-image-1352" title="mt" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/mt-150x150.png" alt="mt" width="150" height="150" /></a></p>
<p>stvpを押すと書き込みが開始するように設定します。</p>
<p>&#8220;miqnnet\STVP&#8221;が書き込みするプログラムなのですが、バージョンが古いためF2,F4に対応していません。よって自前ビルドします。</p>
<p><a  href="http://www.st.com/jp/evalboard/product/210568.jsp">STのページ</a>から</p>
<p><a  href="http://www.st.com/jp/com/SOFTWARE_RESOURCES/TOOL/TOOLSET/sttoolset.zip"><span id="TABLE_TOOLSETS" style="display: block;">ST Toolset</span></a></p>
<p><span id="TABLE_TOOLSETS" style="display: block;">と</span></p>
<p><a  href="http://www.st.com/jp/com/SOFTWARE_RESOURCES/TOOL/DEVICE_PROGRAMMER/um0151.zip"><span id="TABLE_DEVICE_PROGRAMMERS" style="display: block;">STVP programming toolkit</span></a></p>
<p><span style="display: block;">をダウンロード</span></p>
<p><span style="display: block;"><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/down.png"><img class="alignnone size-thumbnail wp-image-1354" title="down" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/down-150x150.png" alt="down" width="150" height="150" /></a></span></p>
<p><span id="TABLE_TOOLSETS" style="display: block;">ST Toolsetをインストール。</span></p>
<p><span style="display: block;">その後、<br />
</span></p>
<p><span id="TABLE_DEVICE_PROGRAMMERS" style="display: block;">STVP programming toolkitをVC++でビルド。生成された</span>&#8220;APISample.exe&#8221;をパス&#8221;C:\STVP&#8221;にコピー。</p>
<p>さらに、&#8221;STMicroelectronics\st_toolset\stvp&#8221;から&#8221;C:\STVP&#8221;にdll全て・bin全て・dbcfile.cnf・tools.cnfをコピー。</p>
<p>これでSTVP最新版の配置完了です。</p>
<p>あとはmakefileの下の方に</p>
<p><span style="color: #ff0000;">.PHONY: stvp<br />
stvp :<br />
@copy $(MAIN_HEX) C:\STVP<br />
@cd C:\STVP<br />
@C:\STVP\APISample.exe -BoardName=ST-LINK -Device=$(CHIP_NAME) -Port=USB -ProgMode=SWD -no_loop -no_log -progress -erase<br />
@C:\STVP\APISample.exe -BoardName=ST-LINK -Device=$(CHIP_NAME) -Port=USB -ProgMode=SWD -no_loop -no_log -progress -FileProg=main.hex<br />
@del C:\STVP\main.hex</span></p>
<p>を追加してください。</p>
<p>そしたら書き込みできるようになってるはずです。</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/stvp_f4.png"><img class="alignnone size-thumbnail wp-image-1361" title="stvp_f4" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/stvp_f4-150x150.png" alt="stvp_f4" width="150" height="150" /></a></p>
<p>だいぶテキトーに書いたかので駄目かも？</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/lcd.jpg"><img class="alignnone size-thumbnail wp-image-1363" title="lcd" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/12/lcd-150x150.jpg" alt="lcd" width="150" height="150" /></a></p>
<p>F4DISCOVERYに<a  href="http://www.aitendo.co.jp/product/1975">YHY024006A</a>をつなげた様子。</p>
<p>ねむいさんのF2のプログラムを<span style="text-decoration: line-through;">コピペ</span>参考にすればプログラムは一瞬でできます。</p>
<p>自分でやる気なんてない（ぉぃ</p>
<p>オーディオジャック使わないのでとっぱらいました。上に基板付けるのに邪魔だったので。</p>
<p>次はFPU対応でも目指しましょうか…？</p>
<p><span style="text-decoration: line-through;">ぁ、センター1ヶ月前切ってる…</span></p>
]]></content:encoded>
			<wfw:commentRss>http://spiralray.rakusei.net/blog/2011/12/17/%e3%83%9e%e3%82%a4%e3%82%b3%e3%83%b3%e5%be%b9%e5%ba%95%e5%85%a5%e9%96%80%e3%81%a7%e9%85%8d%e5%b8%83%e3%81%95%e3%82%8c%e3%81%a6%e3%81%84%e3%82%8b%e9%96%8b%e7%99%ba%e7%92%b0%e5%a2%83%e3%81%a7stm32f4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SH-2Aによるゴール認識とUART通信によるデータ同期</title>
		<link>http://spiralray.rakusei.net/blog/2011/12/01/sh-2a%e3%81%ab%e3%82%88%e3%82%8b%e3%82%b4%e3%83%bc%e3%83%ab%e8%aa%8d%e8%ad%98%e3%81%a8uart%e9%80%9a%e4%bf%a1%e3%81%ab%e3%82%88%e3%82%8b%e3%83%87%e3%83%bc%e3%82%bf%e5%90%8c%e6%9c%9f/</link>
		<comments>http://spiralray.rakusei.net/blog/2011/12/01/sh-2a%e3%81%ab%e3%82%88%e3%82%8b%e3%82%b4%e3%83%bc%e3%83%ab%e8%aa%8d%e8%ad%98%e3%81%a8uart%e9%80%9a%e4%bf%a1%e3%81%ab%e3%82%88%e3%82%8b%e3%83%87%e3%83%bc%e3%82%bf%e5%90%8c%e6%9c%9f/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 16:14:10 +0000</pubDate>
		<dc:creator>SpiralRay</dc:creator>
				<category><![CDATA[Robot]]></category>
		<category><![CDATA[STM32]]></category>

		<guid isPermaLink="false">http://spiralray.rakusei.net/blog/?p=1344</guid>
		<description><![CDATA[
結構前にプログラム完成していたのですが…
プリント基板だとプログラムの確認が即行できるのがいいですね。
SH-2Aでゴールを認識して、STM32(メインマイコン)とUARTで通信して、ゴール中央のx座標、y座標、正面が [...]]]></description>
			<content:encoded><![CDATA[<p><iframe width="640" height="360" src="http://www.youtube.com/embed/Ifiq2jfUmFM" frameborder="0" allowfullscreen></iframe><br />
結構前にプログラム完成していたのですが…<br />
プリント基板だとプログラムの確認が即行できるのがいいですね。</p>
<p>SH-2Aでゴールを認識して、STM32(メインマイコン)とUARTで通信して、ゴール中央のx座標、y座標、正面がゴールの中心かどうか、の3つの変数を通信してい­ます。<br />
ゴール中央が前にあるとSTBeeのLEDが光ります。<br />
画面にゴール中央部分に印が表示されてはいるのですが、見えるかな&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://spiralray.rakusei.net/blog/2011/12/01/sh-2a%e3%81%ab%e3%82%88%e3%82%8b%e3%82%b4%e3%83%bc%e3%83%ab%e8%aa%8d%e8%ad%98%e3%81%a8uart%e9%80%9a%e4%bf%a1%e3%81%ab%e3%82%88%e3%82%8b%e3%83%87%e3%83%bc%e3%82%bf%e5%90%8c%e6%9c%9f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>機体</title>
		<link>http://spiralray.rakusei.net/blog/2011/11/06/%e6%a9%9f%e4%bd%93/</link>
		<comments>http://spiralray.rakusei.net/blog/2011/11/06/%e6%a9%9f%e4%bd%93/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 13:12:08 +0000</pubDate>
		<dc:creator>SpiralRay</dc:creator>
				<category><![CDATA[Robot]]></category>

		<guid isPermaLink="false">http://spiralray.rakusei.net/blog/2011/11/06/%e6%a9%9f%e4%bd%93/</guid>
		<description><![CDATA[キタコレ！

モタドラ用基板、動作しました。
肝心のモタドラは動いてませんが…(まぁ僕の管轄ではないので)

ぃゃー、プリント基板いいですね。クセニナッチャイソウ

アホ毛

モタドラを除けば、ゴールのバーより下に収まり [...]]]></description>
			<content:encoded><![CDATA[<p>キタコレ！<br />
<a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/11/20111106-220613.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/11/20111106-220613.jpg" alt="20111106-220613.jpg" class="alignnone size-full" /></a></p>
<p>モタドラ用基板、動作しました。<br />
肝心のモタドラは動いてませんが…(まぁ僕の管轄ではないので)</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/11/20111106-2208491.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/11/20111106-2208491.jpg" alt="20111106-220849.jpg" class="alignnone size-full" /></a><br />
ぃゃー、プリント基板いいですね。クセニナッチャイソウ</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/11/20111106-221024.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/11/20111106-221024.jpg" alt="20111106-221024.jpg" class="alignnone size-full" /></a><br />
アホ毛</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/11/20111106-221049.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/11/20111106-221049.jpg" alt="20111106-221049.jpg" class="alignnone size-full" /></a><br />
モタドラを除けば、ゴールのバーより下に収まりますｗ</p>
<p>(勉強しろ俺)</p>
]]></content:encoded>
			<wfw:commentRss>http://spiralray.rakusei.net/blog/2011/11/06/%e6%a9%9f%e4%bd%93/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>サッカー専用基板とか作成</title>
		<link>http://spiralray.rakusei.net/blog/2011/10/24/%e3%82%b5%e3%83%83%e3%82%ab%e3%83%bc%e5%b0%82%e7%94%a8%e5%9f%ba%e6%9d%bf%e3%81%a8%e3%81%8b%e4%bd%9c%e6%88%90/</link>
		<comments>http://spiralray.rakusei.net/blog/2011/10/24/%e3%82%b5%e3%83%83%e3%82%ab%e3%83%bc%e5%b0%82%e7%94%a8%e5%9f%ba%e6%9d%bf%e3%81%a8%e3%81%8b%e4%bd%9c%e6%88%90/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 14:19:31 +0000</pubDate>
		<dc:creator>SpiralRay</dc:creator>
				<category><![CDATA[Robot]]></category>

		<guid isPermaLink="false">http://spiralray.rakusei.net/blog/?p=1330</guid>
		<description><![CDATA[
基板が届いたので画像を適当に貼っときます。

サッカー専用基板つくりました。
このように距離センサーも直接つきます

eagleが作ったモータードライバも直接繋げることが可能

ボールセンサはこの距離でもきちんと反応し [...]]]></description>
			<content:encoded><![CDATA[<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111025-205825.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111025-205825.jpg" alt="20111025-205825.jpg" class="alignnone size-full" /></a></p>
<p>基板が届いたので画像を適当に貼っときます。<br />
<a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-230408.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-230408.jpg" alt="20111024-230408.jpg" class="alignnone size-full" /></a></p>
<p>サッカー専用基板つくりました。<a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-230636.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-230636.jpg" alt="20111024-230636.jpg" class="alignnone size-full" /></a><br />
このように距離センサーも直接つきます</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-230816.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-230816.jpg" alt="20111024-230816.jpg" class="alignnone size-full" /></a><br />
eagleが作ったモータードライバも直接繋げることが可能</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-231026.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-231026.jpg" alt="20111024-231026.jpg" class="alignnone size-full" /></a><br />
ボールセンサはこの距離でもきちんと反応しました。2m以上ありますね。部屋が汚いのは仕様です。(試験期間にプリント散らかしたので)</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-231146.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-231146.jpg" alt="20111024-231146.jpg" class="alignnone size-full" /></a><br />
ロゴが入っていますよー</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-231233.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-231233.jpg" alt="20111024-231233.jpg" class="alignnone size-full" /></a><br />
けど実はミスだらけという…ｗ<br />
基板設計するの始めてだったので仕方がない、ということにしてください…</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-231349.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-231349.jpg" alt="20111024-231349.jpg" class="alignnone size-full" /></a><br />
フリスクMP3プレーヤー基板。USB充電対応(のはず)</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-231449.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-231449.jpg" alt="20111024-231449.jpg" class="alignnone size-full" /></a><br />
モータードライバ制御用STM32基板。PID制御をこっちのモタドラでやってメインのマイコンの負担を減らそうと思ったり。というか、これを使えばサッカー基板の配線ミスを克服出来る。</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-231624.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111024-231624.jpg" alt="20111024-231624.jpg" class="alignnone size-full" /></a><br />
CANのコネクタです。<br />
STBeeでも簡単に使えるように。</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111025-205533.jpg"><img src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/20111025-205533.jpg" alt="20111025-205533.jpg" class="alignnone size-full" /></a><br />
動かないXBee-FT232基板。USB刺しても認識すらしない。。<br />
動かない基板に意味はあるのでしょうか？</p>
<p>ロボット動いたらまた更新します。</p>
]]></content:encoded>
			<wfw:commentRss>http://spiralray.rakusei.net/blog/2011/10/24/%e3%82%b5%e3%83%83%e3%82%ab%e3%83%bc%e5%b0%82%e7%94%a8%e5%9f%ba%e6%9d%bf%e3%81%a8%e3%81%8b%e4%bd%9c%e6%88%90/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>画像解析とかロボカップとか</title>
		<link>http://spiralray.rakusei.net/blog/2011/10/01/%e7%94%bb%e5%83%8f%e8%a7%a3%e6%9e%90%e3%81%a8%e3%81%8b%e3%83%ad%e3%83%9c%e3%82%ab%e3%83%83%e3%83%97%e3%81%a8%e3%81%8b/</link>
		<comments>http://spiralray.rakusei.net/blog/2011/10/01/%e7%94%bb%e5%83%8f%e8%a7%a3%e6%9e%90%e3%81%a8%e3%81%8b%e3%83%ad%e3%83%9c%e3%82%ab%e3%83%83%e3%83%97%e3%81%a8%e3%81%8b/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 11:44:03 +0000</pubDate>
		<dc:creator>SpiralRay</dc:creator>
				<category><![CDATA[Robot]]></category>

		<guid isPermaLink="false">http://spiralray.rakusei.net/blog/?p=1292</guid>
		<description><![CDATA[こんにちは。
今まで僕が作ったなかで一番まともなプログラム、マイコンを利用した画像解析による高速ゴール検出プログラムについてきちんと書いておこうかとおもいます。RCJ参加者向けなツマラナイ話です。
使用マイコンはSH-2 [...]]]></description>
			<content:encoded><![CDATA[<p>こんにちは。<br />
今まで僕が作ったなかで一番まともなプログラム、マイコンを利用した画像解析による高速ゴール検出プログラムについてきちんと書いておこうかとおもいます。RCJ参加者向けなツマラナイ話です。</p>
<p>使用マイコンはSH-2A(SH7262)<br />
2010年6月号のInterfaceの付録についていたものです。<br />
何故SH-2Aを使用するか、理由は二点あります。<br />
一点目は処理速度の面です。<br />
SH7262は144ＭＨzはミドルクラスのマイコンとしては最高レベルの速度を誇っています。<br />
僕は主にSTM32も使用していますが、現在主流のF1シリーズの周波数は72MHzであり、SH-2Aの半分にしか及んでいません。(そんな単純なものじゃありませんが)<br />
FPU搭載など、計算速度なら他の低価格マイコンにはそう簡単には負けないでしょう。(STM32F4くらい？)</p>
<p>二点目はVDC(Video Display Controller)を搭載していることです。<br />
これが重要です。<br />
ロボカップジュニア(サッカー)では、過去にTrevaを使って画像解析をしているチームがあったようですが、機体停止時に2fpsしか出せないなど、非常に処理が遅いです。UARTで画像を取得するのにかなりの時間が必要となってしまうようです(工夫すれば少しは改善されるとは思いますが)<br />
しかしVDCを使うことによって、初期化さえすればマイコンでカメラの画像を取得することなく、勝手にメモリ上にカメラからの画像が更新されていきます。つまり、高画質にも関わらずマイコンでの処理は0ということになります。<br />
今回はカメラの画像は352&#215;240で取得しています。</p>
<p>問題点もいくつかあります。<br />
まず、配線がヤヴァい点です。<br />
RGB565、同期信号などで最低でも25本くらいはつなげないといけません。また、カメラも同様にヤバいです。<br />
あと、外部からプログラムを起動しないといけないので、SDカードスロットも必要となります。</p>
<p>更に、対応しているカメラが少ない点です。<br />
ノンインターレース方式のITU-656方式のカメラが必要になりますが、カメラで主流(?)なオムにビジョン社のカメラOV系はインターレース方式を採用しているので使用することができません。<br />
国内で簡単に手に入れられるのは秋月で売っているカメラ、<a  href="http://akizukidenshi.com/catalog/g/gM-00578/">MTV-54K0DN</a>くらいでしょう。</p>
<p>これらの問題を解決するために<a  href="http://www.tacinc.jp/">株式会社TAC</a>の拡張基板<a  href="http://www.tacinc.jp/T-SRS/T-SRS.htm">T-SRS</a>を使用します。<br />
<a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1164.JPG"><img class="alignnone size-full wp-image-1293" title="IMG_1164" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1164.JPG" alt="IMG_1164" width="50%" height="50%" /></a><br />
<a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1167.JPG"><img class="alignnone size-full wp-image-1297" title="IMG_1167" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1167.JPG" alt="IMG_1167" width="50%" height="50%" /></a><br />
T-SRSにはMicroSDカードスロット、タッチパネル付4.3インチ液晶、NTSC入力端子が付いてます。<br />
これによって配線の複雑化が防げ、なおかつ使用できるカメラが圧倒的に広がります。<br />
また、32MByteの外部RAMが付いています。<br />
何があってもRAMに困ることはないです。</p>
<p>プログラムの特徴を書いておきます。<br />
主な点はTOPPERS/ASPを使用しています。<br />
RTOSを使用することで、画像処理タスクと画面(タッチパネル)処理・シリアル送信タスクの２つのタスクに分けています。<br />
(シリアル送信も別にタスクにしたかったが、試したところ何故か送信されなかった)</p>
<p>画像処理のアルゴリズムは…自分で考えてください。<br />
書いたところで意味がないので…<br />
注意するべき点だけ書いておきます。<br />
広角カメラを使用した場合、屈折率の関係で青色のラインができてしまいます。これをプログラム的に除去する必要があります。<br />
また、フィールド外に青が黄色がある可能性があります。それにもある程度対処する必要があります。</p>
<p>実際にこれらを対処したプログラムを書いたところ、秒間15回の処理をできています。<br />
画像の縮小などはしていません。352&#215;240を解析しています。</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1208.JPG"><img class="alignnone size-full wp-image-1299" title="IMG_1208" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1208.JPG" alt="IMG_1208" width="50%" height="50%" /></a><br />
操作方法ですが、タッチパネルによるボタン操作になっています。ここのプログラムは僕が作ったものではないため触れません。<br />
右下にあるボタンBT11を押すことによって黄色のゴールを検出するか青色のゴールを検出するかの設定が変わります。<br />
その他のボタンはあまり関係ないので無視します。</p>
<p>一番左上に表示されている数字がfpsの値を示しています。<br />
ゴールがある場合は15fps程度で安定します。</p>
<p>デカデカと写っているカメラの画像の中に紫色の四角が描かれていますがそれがゴールの位置となっています。</p>
<p>色の閾値調整していないのでゴールの中央が必ずしもキレイに出るわけではないですが、実際に解析している画像を貼っておきます。</p>
<p>自ゴール側のどの位置からでも相手ゴールの位置を検出することができています。これで正確な方向にシュートすることができます。</p>
<p>ちなみに、この解析結果はシリアル通信でメインマイコンに伝えられます。</p>
<p>実行中の画像</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1172.JPG"><img class="alignnone size-full wp-image-1301" title="IMG_1172" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1172.JPG" alt="IMG_1172" width="50%" height="50%" /></a></p>
<p>斜めからでも</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1175.JPG"><img class="alignnone size-full wp-image-1302" title="IMG_1175" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1175.JPG" alt="IMG_1175" width="50%" height="50%" /></a></p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1171.JPG"><img class="alignnone size-full wp-image-1303" title="IMG_1171" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1171.JPG" alt="IMG_1171" width="50%" height="50%" /></a></p>
<p>フィールド真ん中<br />
<a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1179.JPG"><img class="alignnone size-full wp-image-1305" title="IMG_1179" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1179.JPG" alt="IMG_1179" width="50%" height="50%" /></a></p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1205.JPG"><img class="alignnone size-full wp-image-1306" title="IMG_1205" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1205.JPG" alt="IMG_1205" width="50%" height="50%" /></a></p>
<p>遠くからでもー！！(画像ぼけてる)</p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1181.JPG"><img class="alignnone size-full wp-image-1308" title="IMG_1181" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1181.JPG" alt="IMG_1181" width="50%" height="50%" /></a></p>
<p><a  href="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1193.JPG"><img class="alignnone size-full wp-image-1307" title="IMG_1193" src="http://spiralray.rakusei.net/blog/wp-content/uploads/2011/10/IMG_1193.JPG" alt="IMG_1193" width="50%" height="50%" /></a></p>
<p>昔YouTubeに上げた動画です。見にくいですが…ｗ<br />
<iframe width="420" height="315" src="http://www.youtube.com/embed/fiVQr_GMNEQ" frameborder="0" allowfullscreen></iframe></p>
<p>画像解析についてはここまでにします。</p>
<p>他には<br />
SDから半角、全角のフォントのロード、画面への描写機能<br />
SD内のbmpファイル表示機能(480&#215;272に限る)<br />
ms3再生機能<br />
があります。</p>
<p>カメラを利用したプログラムとして、他にはライントレーサーも作りました。</p>
<p>PID制御を搭載してスムーズに動くようにしました。(動画が古く、プログラムにミスがあったときのものしかなくカクカクしていますが…)</p>
<p>これくらいでカメラに関しては終わりにします。<br />
以下話が変わります。</p>
<p>最近のRCJサッカーはモーターばかりに気を取られていて、制御がきちんとできているチームが無いように感じられます。(僕の個人的感想ですが)フィールドB、世界二位のチームすらきちんとゴールに向かっていません。</p>
<p>RCJ参加者のみなさんには(最悪でも)AVRくらいは扱えるようになって欲しいです。「おもちゃで遊ぶ」はやめて、きちんと計画的に学ぶ姿勢をしっかりと持ってください。</p>
<p>言わなくても持っているとはおもいますがー（棒</p>
<p>ぐちぐち言ってもしかたないんで、これくらいで。<br />
では。</p>
]]></content:encoded>
			<wfw:commentRss>http://spiralray.rakusei.net/blog/2011/10/01/%e7%94%bb%e5%83%8f%e8%a7%a3%e6%9e%90%e3%81%a8%e3%81%8b%e3%83%ad%e3%83%9c%e3%82%ab%e3%83%83%e3%83%97%e3%81%a8%e3%81%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

