<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: ARM-wrestling with OpenCV</title>
	<atom:link href="http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/</link>
	<description>Rhonda Ltd., computer vision software blog</description>
	<lastBuildDate>Fri, 05 Mar 2010 21:06:21 +1000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Igor Stepura</title>
		<link>http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/comment-page-1/#comment-563</link>
		<dc:creator>Igor Stepura</dc:creator>
		<pubDate>Wed, 24 Feb 2010 03:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://computer-vision-software.com/blog/?p=18#comment-563</guid>
		<description>Lucas, it looks like your camera outputs video in its own weird format. You can check http://hansdegoede.livejournal.com/3636.html and http://forum.skype.com/index.php?showtopic=225971 on how people deal with that.</description>
		<content:encoded><![CDATA[<p>Lucas, it looks like your camera outputs video in its own weird format. You can check <a href="http://hansdegoede.livejournal.com/3636.html" rel="nofollow">http://hansdegoede.livejournal.com/3636.html</a> and <a href="http://forum.skype.com/index.php?showtopic=225971" rel="nofollow">http://forum.skype.com/index.php?showtopic=225971</a> on how people deal with that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lucas azevedo</title>
		<link>http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/comment-page-1/#comment-561</link>
		<dc:creator>lucas azevedo</dc:creator>
		<pubDate>Fri, 19 Feb 2010 20:26:12 +0000</pubDate>
		<guid isPermaLink="false">http://computer-vision-software.com/blog/?p=18#comment-561</guid>
		<description>Igor, I am using the -with-v4l option in the configure parameters, and also  I&#039;ve managed to compile a patched 2.6.32.3 kernel with the modules:
gspca_pac207, gspca_main, v4l1-compat, v4l2-common, v4l2-int-device, videodev (it looks like the gspca_pac207 driver needs the v4l1-compat module).

But when I try to run that test application, a new error appears:

HIGHGUI ERROR: V4L2: Pixel format of incoming image is unsupported by OpenCV
Unable to stop the stream.: Bad file descriptor
HIGHGUI ERROR: V4L: Unable to determine size of incoming image
cvCapture failed

I am using the 1.1pre1 opencv version.</description>
		<content:encoded><![CDATA[<p>Igor, I am using the -with-v4l option in the configure parameters, and also  I&#8217;ve managed to compile a patched 2.6.32.3 kernel with the modules:<br />
gspca_pac207, gspca_main, v4l1-compat, v4l2-common, v4l2-int-device, videodev (it looks like the gspca_pac207 driver needs the v4l1-compat module).</p>
<p>But when I try to run that test application, a new error appears:</p>
<p>HIGHGUI ERROR: V4L2: Pixel format of incoming image is unsupported by OpenCV<br />
Unable to stop the stream.: Bad file descriptor<br />
HIGHGUI ERROR: V4L: Unable to determine size of incoming image<br />
cvCapture failed</p>
<p>I am using the 1.1pre1 opencv version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor Stepura</title>
		<link>http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/comment-page-1/#comment-547</link>
		<dc:creator>Igor Stepura</dc:creator>
		<pubDate>Thu, 04 Feb 2010 02:15:11 +0000</pubDate>
		<guid isPermaLink="false">http://computer-vision-software.com/blog/?p=18#comment-547</guid>
		<description>Lucas, if you&#039;re going to use web-camera as video source for OpenCV you need to:
1) Make sure that your kernel has v4l2 support (check kernel config) 
2) Enable v4l support in OpenCV (it&#039;s disabled in my script). Add  &quot;--with-v4l&quot; option to ./configure  parameters</description>
		<content:encoded><![CDATA[<p>Lucas, if you&#8217;re going to use web-camera as video source for OpenCV you need to:<br />
1) Make sure that your kernel has v4l2 support (check kernel config)<br />
2) Enable v4l support in OpenCV (it&#8217;s disabled in my script). Add  &#8220;&#8211;with-v4l&#8221; option to ./configure  parameters</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lucas azevedo</title>
		<link>http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/comment-page-1/#comment-546</link>
		<dc:creator>lucas azevedo</dc:creator>
		<pubDate>Thu, 04 Feb 2010 01:27:22 +0000</pubDate>
		<guid isPermaLink="false">http://computer-vision-software.com/blog/?p=18#comment-546</guid>
		<description>Hello Igor!
Thanks for the information, it&#039;s been very useful.
I&#039;m trying to setup opencv on a ts7250 board, to use it for some small processing and then streaming it to another program on my computer to make heavier processing on the video.
After a LOT of tweaking, I managed to compile the example code that I obtained in http://nashruddin.com/StrEAMinG_oPENcv_vIdEos_ovER_tHe_nEtWoRk as a first try, but I&#039;m not displaying the video on the board (I&#039;ve commented it out of stream_server.c code) because it does not have a video output. I&#039;ve used a OABI compiler and the shared opencv libraries. 
The problem is: cvCapture fails. So I thought &quot;I guess it means that I need to compile the videodev driver, modprobe it, and then run the program again.&quot;
Well, I did it, but still no success.
You have any pointers on what should I do now? :)</description>
		<content:encoded><![CDATA[<p>Hello Igor!<br />
Thanks for the information, it&#8217;s been very useful.<br />
I&#8217;m trying to setup opencv on a ts7250 board, to use it for some small processing and then streaming it to another program on my computer to make heavier processing on the video.<br />
After a LOT of tweaking, I managed to compile the example code that I obtained in <a href="http://nashruddin.com/StrEAMinG_oPENcv_vIdEos_ovER_tHe_nEtWoRk" rel="nofollow">http://nashruddin.com/StrEAMinG_oPENcv_vIdEos_ovER_tHe_nEtWoRk</a> as a first try, but I&#8217;m not displaying the video on the board (I&#8217;ve commented it out of stream_server.c code) because it does not have a video output. I&#8217;ve used a OABI compiler and the shared opencv libraries.<br />
The problem is: cvCapture fails. So I thought &#8220;I guess it means that I need to compile the videodev driver, modprobe it, and then run the program again.&#8221;<br />
Well, I did it, but still no success.<br />
You have any pointers on what should I do now? <img src='http://www.computer-vision-software.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor Stepura</title>
		<link>http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/comment-page-1/#comment-477</link>
		<dc:creator>Igor Stepura</dc:creator>
		<pubDate>Mon, 30 Nov 2009 04:59:10 +0000</pubDate>
		<guid isPermaLink="false">http://computer-vision-software.com/blog/?p=18#comment-477</guid>
		<description>I reckon you&#039;re using Cygwin host. Have you set CYGPATH variable before running the script?  Section 2.6.1.2 &quot;Working with Cygwin&quot; of Sourcery G++ Lite &quot;Getting Started&quot; document.</description>
		<content:encoded><![CDATA[<p>I reckon you&#8217;re using Cygwin host. Have you set CYGPATH variable before running the script?  Section 2.6.1.2 &#8220;Working with Cygwin&#8221; of Sourcery G++ Lite &#8220;Getting Started&#8221; document.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor Stepura</title>
		<link>http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/comment-page-1/#comment-476</link>
		<dc:creator>Igor Stepura</dc:creator>
		<pubDate>Mon, 30 Nov 2009 04:43:54 +0000</pubDate>
		<guid isPermaLink="false">http://computer-vision-software.com/blog/?p=18#comment-476</guid>
		<description>Good catch! I checked with autoconf documentation and you&#039;re right - the --host parameter specifies &quot;the type of system on which the package runs&quot;. So in my case it should be set to $APP_PREFIX and --build should be set to $GCC_HOST. 

It didn&#039;t cause errors with CodeSourcery toolchains,  however, since they always compile for arm-linux and --host could be set to any value only to enable cross-compilation mode for &quot;configure&quot; script.

http://www.gnu.org/software/autoconf/manual/html_node/Specifying-Target-Triplets.html#Specifying-Target-Triplets</description>
		<content:encoded><![CDATA[<p>Good catch! I checked with autoconf documentation and you&#8217;re right &#8211; the &#8211;host parameter specifies &#8220;the type of system on which the package runs&#8221;. So in my case it should be set to $APP_PREFIX and &#8211;build should be set to $GCC_HOST. </p>
<p>It didn&#8217;t cause errors with CodeSourcery toolchains,  however, since they always compile for arm-linux and &#8211;host could be set to any value only to enable cross-compilation mode for &#8220;configure&#8221; script.</p>
<p><a href="http://www.gnu.org/software/autoconf/manual/html_node/Specifying-Target-Triplets.html#Specifying-Target-Triplets" rel="nofollow">http://www.gnu.org/software/autoconf/manual/html_node/Specifying-Target-Triplets.html#Specifying-Target-Triplets</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: virgoptrex</title>
		<link>http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/comment-page-1/#comment-460</link>
		<dc:creator>virgoptrex</dc:creator>
		<pubDate>Thu, 19 Nov 2009 19:19:20 +0000</pubDate>
		<guid isPermaLink="false">http://computer-vision-software.com/blog/?p=18#comment-460</guid>
		<description>I am bit confused why most websites who have an article state argument to./configure attribute  --host = arm-linux. while in your case you states --host=i686-pc-linux. Now is the host the real host (e.g. x86 based laptop on which we are compiling) or is it the target which hosts the compiled program - either after NFS mounted or other method (e.g. Gumstix, Davinci, Beagleboard) ?</description>
		<content:encoded><![CDATA[<p>I am bit confused why most websites who have an article state argument to./configure attribute  &#8211;host = arm-linux. while in your case you states &#8211;host=i686-pc-linux. Now is the host the real host (e.g. x86 based laptop on which we are compiling) or is it the target which hosts the compiled program &#8211; either after NFS mounted or other method (e.g. Gumstix, Davinci, Beagleboard) ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthias</title>
		<link>http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/comment-page-1/#comment-448</link>
		<dc:creator>Matthias</dc:creator>
		<pubDate>Wed, 11 Nov 2009 12:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://computer-vision-software.com/blog/?p=18#comment-448</guid>
		<description>Hi, this helped me, but brought me an other error:

cxcore/cxmatmul.cpp: in function &#039;void cv::gemm(const cv::Mat&amp;, const cv::Mat&amp;, double, const cv::Mat6):
cxcore/cxmatmul.cpp:624: error: requested for member &#039;data&#039; in &#039;32&#039;, which is of non-class type &#039;int&#039;
[...]</description>
		<content:encoded><![CDATA[<p>Hi, this helped me, but brought me an other error:</p>
<p>cxcore/cxmatmul.cpp: in function &#8216;void cv::gemm(const cv::Mat&amp;, const cv::Mat&amp;, double, const cv::Mat6):<br />
cxcore/cxmatmul.cpp:624: error: requested for member &#8216;data&#8217; in &#8216;32&#8242;, which is of non-class type &#8216;int&#8217;<br />
[...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hype</title>
		<link>http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/comment-page-1/#comment-447</link>
		<dc:creator>Hype</dc:creator>
		<pubDate>Wed, 11 Nov 2009 10:57:27 +0000</pubDate>
		<guid isPermaLink="false">http://computer-vision-software.com/blog/?p=18#comment-447</guid>
		<description>Hi there,

thanks for your great script. I get opencv 1.1pre1 configured in no time, but i&#039;m having trouble compiling it.

When typing &quot;make&quot; I get the following errors:

cxerror.cpp:96: error: &#039;pthread_key_t&#039; does not name a type
cxerror.cpp:424: error: &#039;g_TlsIndex&#039; was not declared in this scope
cxerror.cpp:424: error: &#039;phtread_key_create&#039; was not declared in this scope

Do you have any idea why this happens?</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>thanks for your great script. I get opencv 1.1pre1 configured in no time, but i&#8217;m having trouble compiling it.</p>
<p>When typing &#8220;make&#8221; I get the following errors:</p>
<p>cxerror.cpp:96: error: &#8216;pthread_key_t&#8217; does not name a type<br />
cxerror.cpp:424: error: &#8216;g_TlsIndex&#8217; was not declared in this scope<br />
cxerror.cpp:424: error: &#8216;phtread_key_create&#8217; was not declared in this scope</p>
<p>Do you have any idea why this happens?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthias</title>
		<link>http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/comment-page-1/#comment-446</link>
		<dc:creator>Matthias</dc:creator>
		<pubDate>Wed, 11 Nov 2009 08:16:41 +0000</pubDate>
		<guid isPermaLink="false">http://computer-vision-software.com/blog/?p=18#comment-446</guid>
		<description>Hi there,

first of all thanks for your skript. It helped me to understand how to get going with compiling opencv for ARM. Nonetheless i&#039;m stucking right at the beginning. I used your script and modified it to fit my needs. 

Here it comes:

#!/bin/bash
### Windows (Cygwin) host.
export APP_PREFIX=arm-none-eabi
export DEVROOT=/cygdrive/c/_devtools/CodeSourcery/SourceryG++Lite
export CYGPATH=C:/Program\ Files/cygwin/bin/

./configure \
--target=$APP_PREFIX \
--host=$GCC_HOST \
--disable-shared \
--enable-static \
--without-imageio  --without-carbon \
--without-quicktime --without-python \
--without-gtk --without-swig \
--without-v4l \
--disable-openmp \
--disable-apps \
--prefix=$DEVROOT/$APP_PREFIX \
CC=$DEVROOT/$APP_PREFIX/bin/gcc \
CXXFLAGS=&quot;-fsigned-char $OFLAGS -pipe&quot; \
LD=$DEVROOT/$APP_PREFIX/bin/ld \
CPP=$DEVROOT/$APP_PREFIX/bin/cpp \
CXXCPP=$DEVROOT/$APP_PREFIX/bin/cpp \
CXX=$DEVROOT/$APP_PREFIX/bin/g++ \
AR=$DEVROOT/$APP_PREFIX/bin/ar \
RANLIB=$DEVROOT/$APP_PREFIX/bin/ranlib \
NM=$DEVROOT/$APP_PREFIX/bin/nm \
STRIP=$DEVROOT/$APP_PREFIX/bin/strip \
AS=$DEVROOT/$APP_PREFIX/bin/as

When executing the script file opencv won&#039;t configure correctly but end with an error:

configure: error: in /cygdrive/opencv
configure: error: C++ compiler cannot create executables.

The config.log shows:

configure:3079: $? = 0
configure:3086: /cygdrive/c/_devtools/CodeSourcery/SourceryG++Lite/arm-none-eabi/bin/g++ -v &gt;&amp;5
Using built-in specs.
Target: arm-none-eabi
Configured with: /scratch/maxim/arm-lite/src-4.3-arm-none-eabi-lite/gcc-4.3/configure --build=i686-pc-linux-gnu --host=i686-mingw32 --target=arm-none-eabi --enable-threads --disable-libmudflap --disable-libssp --disable-libstdcxx-pch --with-gnu-as --with-gnu-ld --enable-languages=c,c++ --disable-shared --with-newlib --with-pkgversion=&#039;Sourcery G++ Lite 2009q1-161&#039; --with-bugurl=https://support.codesourcery.com/GNUToolchain/ --disable-nls --prefix=/opt/codesourcery --with-headers=yes --with-sysroot=/opt/codesourcery/arm-none-eabi --with-build-sysroot=/scratch/maxim/arm-lite/install-4.3-arm-none-eabi-lite/host-i686-mingw32/arm-none-eabi --with-libiconv-prefix=/scratch/maxim/arm-lite/obj-4.3-arm-none-eabi-lite/host-libs-2009q1-161-arm-none-eabi-i686-mingw32/usr --with-gmp=/scratch/maxim/arm-lite/obj-4.3-arm-none-eabi-lite/host-libs-2009q1-161-arm-none-eabi-i686-mingw32/usr --with-mpfr=/scratch/maxim/arm-lite/obj-4.3-arm-none-eabi-lite/host-libs-2009q1-161-arm-none-eabi-i686-mingw32/usr --disable-libgomp --enable-poison-system-directories --with-build-time-tools=/scratch/maxim/arm-lite/obj-4.3-arm-none-eabi-lite/tools-i686-pc-linux-gnu-2009q1-161-arm-none-eabi-i686-mingw32/arm-none-eabi/bin --with-build-time-tools=/scratch/maxim/arm-lite/obj-4.3-arm-none-eabi-lite/tools-i686-pc-linux-gnu-2009q1-161-arm-none-eabi-i686-mingw32/arm-none-eabi/bin
Thread model: single
gcc version 4.3.3 (Sourcery G++ Lite 2009q1-161) 
configure:3090: $? = 0
configure:3097: /cygdrive/c/_devtools/CodeSourcery/SourceryG++Lite/arm-none-eabi/bin/g++ -V &gt;&amp;5
g++.exe: &#039;-V&#039; option must have argument
configure:3101: $? = 1
configure:3124: checking for C++ compiler default output file name
configure:3146: /cygdrive/c/_devtools/CodeSourcery/SourceryG++Lite/arm-none-eabi/bin/g++ -fsigned-char  -pipe   conftest.cpp  &gt;&amp;5
g++.exe: CreateProcess: No such file or directory
configure:3150: $? = 1
configure:3188: result: 
configure: failed program was:

Do you have an idea what i&#039;ve done wrong?</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>first of all thanks for your skript. It helped me to understand how to get going with compiling opencv for ARM. Nonetheless i&#8217;m stucking right at the beginning. I used your script and modified it to fit my needs. </p>
<p>Here it comes:</p>
<p>#!/bin/bash<br />
### Windows (Cygwin) host.<br />
export APP_PREFIX=arm-none-eabi<br />
export DEVROOT=/cygdrive/c/_devtools/CodeSourcery/SourceryG++Lite<br />
export CYGPATH=C:/Program\ Files/cygwin/bin/</p>
<p>./configure \<br />
&#8211;target=$APP_PREFIX \<br />
&#8211;host=$GCC_HOST \<br />
&#8211;disable-shared \<br />
&#8211;enable-static \<br />
&#8211;without-imageio  &#8211;without-carbon \<br />
&#8211;without-quicktime &#8211;without-python \<br />
&#8211;without-gtk &#8211;without-swig \<br />
&#8211;without-v4l \<br />
&#8211;disable-openmp \<br />
&#8211;disable-apps \<br />
&#8211;prefix=$DEVROOT/$APP_PREFIX \<br />
CC=$DEVROOT/$APP_PREFIX/bin/gcc \<br />
CXXFLAGS=&#8221;-fsigned-char $OFLAGS -pipe&#8221; \<br />
LD=$DEVROOT/$APP_PREFIX/bin/ld \<br />
CPP=$DEVROOT/$APP_PREFIX/bin/cpp \<br />
CXXCPP=$DEVROOT/$APP_PREFIX/bin/cpp \<br />
CXX=$DEVROOT/$APP_PREFIX/bin/g++ \<br />
AR=$DEVROOT/$APP_PREFIX/bin/ar \<br />
RANLIB=$DEVROOT/$APP_PREFIX/bin/ranlib \<br />
NM=$DEVROOT/$APP_PREFIX/bin/nm \<br />
STRIP=$DEVROOT/$APP_PREFIX/bin/strip \<br />
AS=$DEVROOT/$APP_PREFIX/bin/as</p>
<p>When executing the script file opencv won&#8217;t configure correctly but end with an error:</p>
<p>configure: error: in /cygdrive/opencv<br />
configure: error: C++ compiler cannot create executables.</p>
<p>The config.log shows:</p>
<p>configure:3079: $? = 0<br />
configure:3086: /cygdrive/c/_devtools/CodeSourcery/SourceryG++Lite/arm-none-eabi/bin/g++ -v &gt;&amp;5<br />
Using built-in specs.<br />
Target: arm-none-eabi<br />
Configured with: /scratch/maxim/arm-lite/src-4.3-arm-none-eabi-lite/gcc-4.3/configure &#8211;build=i686-pc-linux-gnu &#8211;host=i686-mingw32 &#8211;target=arm-none-eabi &#8211;enable-threads &#8211;disable-libmudflap &#8211;disable-libssp &#8211;disable-libstdcxx-pch &#8211;with-gnu-as &#8211;with-gnu-ld &#8211;enable-languages=c,c++ &#8211;disable-shared &#8211;with-newlib &#8211;with-pkgversion=&#8217;Sourcery G++ Lite 2009q1-161&#8242; &#8211;with-bugurl=https://support.codesourcery.com/GNUToolchain/ &#8211;disable-nls &#8211;prefix=/opt/codesourcery &#8211;with-headers=yes &#8211;with-sysroot=/opt/codesourcery/arm-none-eabi &#8211;with-build-sysroot=/scratch/maxim/arm-lite/install-4.3-arm-none-eabi-lite/host-i686-mingw32/arm-none-eabi &#8211;with-libiconv-prefix=/scratch/maxim/arm-lite/obj-4.3-arm-none-eabi-lite/host-libs-2009q1-161-arm-none-eabi-i686-mingw32/usr &#8211;with-gmp=/scratch/maxim/arm-lite/obj-4.3-arm-none-eabi-lite/host-libs-2009q1-161-arm-none-eabi-i686-mingw32/usr &#8211;with-mpfr=/scratch/maxim/arm-lite/obj-4.3-arm-none-eabi-lite/host-libs-2009q1-161-arm-none-eabi-i686-mingw32/usr &#8211;disable-libgomp &#8211;enable-poison-system-directories &#8211;with-build-time-tools=/scratch/maxim/arm-lite/obj-4.3-arm-none-eabi-lite/tools-i686-pc-linux-gnu-2009q1-161-arm-none-eabi-i686-mingw32/arm-none-eabi/bin &#8211;with-build-time-tools=/scratch/maxim/arm-lite/obj-4.3-arm-none-eabi-lite/tools-i686-pc-linux-gnu-2009q1-161-arm-none-eabi-i686-mingw32/arm-none-eabi/bin<br />
Thread model: single<br />
gcc version 4.3.3 (Sourcery G++ Lite 2009q1-161)<br />
configure:3090: $? = 0<br />
configure:3097: /cygdrive/c/_devtools/CodeSourcery/SourceryG++Lite/arm-none-eabi/bin/g++ -V &gt;&amp;5<br />
g++.exe: &#8216;-V&#8217; option must have argument<br />
configure:3101: $? = 1<br />
configure:3124: checking for C++ compiler default output file name<br />
configure:3146: /cygdrive/c/_devtools/CodeSourcery/SourceryG++Lite/arm-none-eabi/bin/g++ -fsigned-char  -pipe   conftest.cpp  &gt;&amp;5<br />
g++.exe: CreateProcess: No such file or directory<br />
configure:3150: $? = 1<br />
configure:3188: result:<br />
configure: failed program was:</p>
<p>Do you have an idea what i&#8217;ve done wrong?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
