<?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 for electrons on radio</title>
	<atom:link href="http://www.electronsonradio.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.electronsonradio.com</link>
	<description>a blog about math, science and engineering</description>
	<lastBuildDate>Sun, 01 Apr 2012 09:08:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on BeagleBoard character faults on serial after boot (UART wakeup issue) by Quick start to Angstrom on the BeagleBoard &#124; electrons on radio</title>
		<link>http://www.electronsonradio.com/2011/06/beagleboard-character-faults-on-serial-after-boot-uart-wakeup-issue/#comment-249</link>
		<dc:creator>Quick start to Angstrom on the BeagleBoard &#124; electrons on radio</dc:creator>
		<pubDate>Sun, 01 Apr 2012 09:08:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.electronsonradio.com/?p=64#comment-249</guid>
		<description>[...] If having problem with serial, check post on serial issues. [...]</description>
		<content:encoded><![CDATA[<p>[...] If having problem with serial, check post on serial issues. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building Ångström for the BeagleBoard using OpenEmbedded by Alex Bresee</title>
		<link>http://www.electronsonradio.com/2011/04/building-angstrom-for-the-beagleboard-using-openembedded/#comment-248</link>
		<dc:creator>Alex Bresee</dc:creator>
		<pubDate>Tue, 27 Mar 2012 15:50:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.electronsonradio.com/?p=43#comment-248</guid>
		<description>I&#039;m trying to follow these instructions -- it looks like it works, but... where does it actually put the files it generates?</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to follow these instructions &#8212; it looks like it works, but&#8230; where does it actually put the files it generates?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Intro to basic cross-compiling for the BeagleBoard by Mayank Prabhakar</title>
		<link>http://www.electronsonradio.com/2011/04/intro-to-basic-cross-compiling-for-the-beagleboard/#comment-235</link>
		<dc:creator>Mayank Prabhakar</dc:creator>
		<pubDate>Tue, 20 Mar 2012 09:14:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.electronsonradio.com/?p=36#comment-235</guid>
		<description>Hi,
 	I have compiled my application on Linux (Intel) machine using this command
gcc –g myapp.c –O3 –o myapp mylib.a ‘pkg-config –cflags gtk+-2.0’ ‘pkg-config –libs gtk+-2.0 gthread-2.0’ 
myapp is running successfully on Linux machine.

Now I want to compile myapp for Angstrom (A Linux version running on Beagleboard). 

So I am using angstrom-2011.03-i686-linux-armv7a-linux-gnueabi-toolchain (is a cross-compiler for angstrom) cross-compiler  to compile myapp.I have set path successfully using this command 
./usr/local/angstrom/arm/environment-setup 

And I have used this command to compile myapp.c for angstrom
-----
 [root@acmemsys internetTV_partialDecoding]# ./arm-angstrom-linux-gnueabi-gcc -g myapp.c -O3 -o myapp mylib.a &#039;pkg-config --cflags gtk+-2.0&#039; &#039;pkg-config --libs gtk+-2.0 gthread-2.0&#039;
Errors:
arm-angstrom-linux-gnueabi-gcc: mylib.a: No such file or directory
arm-angstrom-linux-gnueabi-gcc: pkg-config --cflags gtk+-2.0: No such file or directory
arm-angstrom-linux-gnueabi-gcc: pkg-config --libs gtk+-2.0 gthread-2.0: No such file or directory
arm-angstrom-linux-gnueabi-gcc: error trying to exec &#039;cc1&#039;: execvp: No such file or directory

So want to ask that:
1.	How this error will be removed 
 arm-angstrom-linux-gnueabi-gcc: mylib.a: No such file or directory 
        Note:- mylib.a is a library used for myapp.
2.	 which packages or command will be used on the place of  pkg-config --cflags gtk+-2.0  and pkg-config --libs gtk+-2.0 for angstrom.
3.	And why this Error
        arm-angstrom-linux-gnueabi-gcc: error trying to exec &#039;cc1&#039;: execvp: No such file or directory 
       is coming.

Please help me to short out this problem.

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi,<br />
 	I have compiled my application on Linux (Intel) machine using this command<br />
gcc –g myapp.c –O3 –o myapp mylib.a ‘pkg-config –cflags gtk+-2.0’ ‘pkg-config –libs gtk+-2.0 gthread-2.0’<br />
myapp is running successfully on Linux machine.</p>
<p>Now I want to compile myapp for Angstrom (A Linux version running on Beagleboard). </p>
<p>So I am using angstrom-2011.03-i686-linux-armv7a-linux-gnueabi-toolchain (is a cross-compiler for angstrom) cross-compiler  to compile myapp.I have set path successfully using this command<br />
./usr/local/angstrom/arm/environment-setup </p>
<p>And I have used this command to compile myapp.c for angstrom<br />
&#8212;&#8211;<br />
 [root@acmemsys internetTV_partialDecoding]# ./arm-angstrom-linux-gnueabi-gcc -g myapp.c -O3 -o myapp mylib.a &#8216;pkg-config &#8211;cflags gtk+-2.0&#8242; &#8216;pkg-config &#8211;libs gtk+-2.0 gthread-2.0&#8242;<br />
Errors:<br />
arm-angstrom-linux-gnueabi-gcc: mylib.a: No such file or directory<br />
arm-angstrom-linux-gnueabi-gcc: pkg-config &#8211;cflags gtk+-2.0: No such file or directory<br />
arm-angstrom-linux-gnueabi-gcc: pkg-config &#8211;libs gtk+-2.0 gthread-2.0: No such file or directory<br />
arm-angstrom-linux-gnueabi-gcc: error trying to exec &#8216;cc1&#8242;: execvp: No such file or directory</p>
<p>So want to ask that:<br />
1.	How this error will be removed<br />
 arm-angstrom-linux-gnueabi-gcc: mylib.a: No such file or directory<br />
        Note:- mylib.a is a library used for myapp.<br />
2.	 which packages or command will be used on the place of  pkg-config &#8211;cflags gtk+-2.0  and pkg-config &#8211;libs gtk+-2.0 for angstrom.<br />
3.	And why this Error<br />
        arm-angstrom-linux-gnueabi-gcc: error trying to exec &#8216;cc1&#8242;: execvp: No such file or directory<br />
       is coming.</p>
<p>Please help me to short out this problem.</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Intro to basic cross-compiling for the BeagleBoard by Ivan L</title>
		<link>http://www.electronsonradio.com/2011/04/intro-to-basic-cross-compiling-for-the-beagleboard/#comment-232</link>
		<dc:creator>Ivan L</dc:creator>
		<pubDate>Mon, 12 Mar 2012 11:30:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.electronsonradio.com/?p=36#comment-232</guid>
		<description>Hello Dave

Thanks for an easy guide.

Just want to say that modifying prefix to /home/whatever is bad practice

use DESTDIR instead

make DESTIDR=/home/user install

Many programs rely on the prefix path to work properly,

Best regards
Ivan</description>
		<content:encoded><![CDATA[<p>Hello Dave</p>
<p>Thanks for an easy guide.</p>
<p>Just want to say that modifying prefix to /home/whatever is bad practice</p>
<p>use DESTDIR instead</p>
<p>make DESTIDR=/home/user install</p>
<p>Many programs rely on the prefix path to work properly,</p>
<p>Best regards<br />
Ivan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RT2573 Wireless Dongle with the BeagleBoard by Jeremy</title>
		<link>http://www.electronsonradio.com/2011/03/rt2573-wireless-dongle-with-the-beagleboard/#comment-226</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Fri, 02 Mar 2012 16:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.electronsonradio.com/?p=32#comment-226</guid>
		<description>This worked for me.  Thanks for posting!</description>
		<content:encoded><![CDATA[<p>This worked for me.  Thanks for posting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building Ångström for the BeagleBoard using OpenEmbedded by Lab 2/7 &#124; Autonomous Quadrocopter</title>
		<link>http://www.electronsonradio.com/2011/04/building-angstrom-for-the-beagleboard-using-openembedded/#comment-221</link>
		<dc:creator>Lab 2/7 &#124; Autonomous Quadrocopter</dc:creator>
		<pubDate>Tue, 07 Feb 2012 22:12:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.electronsonradio.com/?p=43#comment-221</guid>
		<description>[...] a while I found a guide to using OpenEmbedded to install Angstrom on the BeagleBoard which had a lot of good information on it. I plan to utilize the information in this guide on [...]</description>
		<content:encoded><![CDATA[<p>[...] a while I found a guide to using OpenEmbedded to install Angstrom on the BeagleBoard which had a lot of good information on it. I plan to utilize the information in this guide on [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Intro to basic cross-compiling for the BeagleBoard by Dave</title>
		<link>http://www.electronsonradio.com/2011/04/intro-to-basic-cross-compiling-for-the-beagleboard/#comment-212</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 18 Jan 2012 06:08:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.electronsonradio.com/?p=36#comment-212</guid>
		<description>This question seems to be asked a lot, is this for a class?
I personally haven&#039;t built opencv, but to build your own applications for the BeagleBoard you&#039;ll need a development environment like the Narciss SDK or OpenEmbedded which contains opencv libraries which you can link. I would search the Angstrom / BeagleBoard mailing lists as you&#039;ll find this is a very popular topic.</description>
		<content:encoded><![CDATA[<p>This question seems to be asked a lot, is this for a class?<br />
I personally haven&#8217;t built opencv, but to build your own applications for the BeagleBoard you&#8217;ll need a development environment like the Narciss SDK or OpenEmbedded which contains opencv libraries which you can link. I would search the Angstrom / BeagleBoard mailing lists as you&#8217;ll find this is a very popular topic.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Intro to basic cross-compiling for the BeagleBoard by nikhila</title>
		<link>http://www.electronsonradio.com/2011/04/intro-to-basic-cross-compiling-for-the-beagleboard/#comment-211</link>
		<dc:creator>nikhila</dc:creator>
		<pubDate>Wed, 18 Jan 2012 05:52:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.electronsonradio.com/?p=36#comment-211</guid>
		<description>hi

I&#039;m a newbee on the beagleboard and the software toolchain flow. I need to port Angstrom/Ubuntu on the Beagle board and run opencv on it. 

Should I use the Narciss SDK or is there any alternative to it? I need step by step instructions on installing opencv.

Till now, I&#039;ve got angstrom running using a prebuilt image from the beagleboard website.

I&#039;m stuck. Can u please help me?</description>
		<content:encoded><![CDATA[<p>hi</p>
<p>I&#8217;m a newbee on the beagleboard and the software toolchain flow. I need to port Angstrom/Ubuntu on the Beagle board and run opencv on it. </p>
<p>Should I use the Narciss SDK or is there any alternative to it? I need step by step instructions on installing opencv.</p>
<p>Till now, I&#8217;ve got angstrom running using a prebuilt image from the beagleboard website.</p>
<p>I&#8217;m stuck. Can u please help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BeagleBoard: DVI Video modes by Josh Palmer</title>
		<link>http://www.electronsonradio.com/2011/02/beagleboard-dvi-video-modes/#comment-205</link>
		<dc:creator>Josh Palmer</dc:creator>
		<pubDate>Sun, 01 Jan 2012 23:09:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.electronsonradio.com/?p=16#comment-205</guid>
		<description>Words cannot describe how excellent this post it. Thank you sir.</description>
		<content:encoded><![CDATA[<p>Words cannot describe how excellent this post it. Thank you sir.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Intro to basic cross-compiling for the BeagleBoard by Dave</title>
		<link>http://www.electronsonradio.com/2011/04/intro-to-basic-cross-compiling-for-the-beagleboard/#comment-204</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 28 Dec 2011 12:02:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.electronsonradio.com/?p=36#comment-204</guid>
		<description>I&#039;ve never tried to compile anything &lt;strong&gt;on&lt;/strong&gt; the BeagleBoard before. I know this doesn&#039;t answer your question, but if you want to make changes on the fly maybe a scripting language for your programs would be more appropriate- maybe even python? You could try to cross-compile GCC (ie using your desktop to compile to the ARM tagket), which is how the binaries in the OPKG repo would have been built. Openembedded has the package in its repo which would be easy to build. See &lt;a href=&quot;http://www.angstrom-distribution.org/repo/?pkgname=gcc&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve never tried to compile anything <strong>on</strong> the BeagleBoard before. I know this doesn&#8217;t answer your question, but if you want to make changes on the fly maybe a scripting language for your programs would be more appropriate- maybe even python? You could try to cross-compile GCC (ie using your desktop to compile to the ARM tagket), which is how the binaries in the OPKG repo would have been built. Openembedded has the package in its repo which would be easy to build. See <a href="http://www.angstrom-distribution.org/repo/?pkgname=gcc" rel="nofollow">here</a>.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

