<?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>Krishna Sunuwar &#187; Linux</title>
	<atom:link href="http://www.krishnasunuwar.com.np/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.krishnasunuwar.com.np</link>
	<description>PHP programmer bloging programming, open soruce technologies</description>
	<lastBuildDate>Wed, 08 Sep 2010 16:06:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Debian or Ubuntu &#8211; build essential for develoepr</title>
		<link>http://www.krishnasunuwar.com.np/2009/12/debain-or-ubuntu-build-essential-for-develoepr/</link>
		<comments>http://www.krishnasunuwar.com.np/2009/12/debain-or-ubuntu-build-essential-for-develoepr/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 15:40:21 +0000</pubDate>
		<dc:creator>Krish</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.krishnasunuwar.com.np/?p=223</guid>
		<description><![CDATA[Compiling source code and creating build is not easy in Linux box. If you are developer and new to Debian or Ubuntu machine, following command may interest you. sudo aptitude install build-essential What does it do? It actually install all c/c++ compiler which are necessary to compile source. You can give try. Suppose you have [...]]]></description>
			<content:encoded><![CDATA[<p>Compiling source code and creating build is not easy in Linux box. If you are developer and new to Debian or Ubuntu machine, following command may interest you.</p>
<pre class="bash">sudo aptitude install build-essential</pre>
<p>What does it do? It actually install all c/c++ compiler which are necessary to compile source. You can give try.</p>
<p>Suppose you have create helloword.c file. Just do this</p>
<pre class="bash">cc -c helloworld.c
cc -o helloword helloworld.c
./helloworld
</pre>
<p>Instead, if you have helloworld.cpp (C++ code)</p>
<pre class="bash">
g++ helloworld.cpp -o helloworld
./helloworld
</pre>
<p>Happy programming!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krishnasunuwar.com.np/2009/12/debain-or-ubuntu-build-essential-for-develoepr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
