<?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: what is a compiler</title>
	<atom:link href="https://www.emblogic.com/blog/07/what-is-a-compiler/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.emblogic.com/blog/07/what-is-a-compiler/</link>
	<description>Embedded System and ARM Training</description>
	<lastBuildDate>Mon, 07 Oct 2013 04:00:03 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
	<item>
		<title>By: Vaibhav Singh</title>
		<link>https://www.emblogic.com/blog/07/what-is-a-compiler/#comment-980</link>
		<dc:creator><![CDATA[Vaibhav Singh]]></dc:creator>
		<pubDate>Fri, 13 Jul 2012 07:17:41 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=3876#comment-980</guid>
		<description><![CDATA[Compiler is used to high level language (.c ) file to .s file which is low level assembly language file (.s format) 
use command 

#gcc -S hello.c //to get hello.s file

In case of assembler this assembly language (.s) file will be converted into object file (.o) .
use command 

#gcc -c hello.c // to get hello.o file

compiler and assembler are used to perform 2 steps of compilation Process .]]></description>
		<content:encoded><![CDATA[<p>Compiler is used to high level language (.c ) file to .s file which is low level assembly language file (.s format)<br />
use command </p>
<p>#gcc -S hello.c //to get hello.s file</p>
<p>In case of assembler this assembly language (.s) file will be converted into object file (.o) .<br />
use command </p>
<p>#gcc -c hello.c // to get hello.o file</p>
<p>compiler and assembler are used to perform 2 steps of compilation Process .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chetan.malik</title>
		<link>https://www.emblogic.com/blog/07/what-is-a-compiler/#comment-964</link>
		<dc:creator><![CDATA[chetan.malik]]></dc:creator>
		<pubDate>Thu, 12 Jul 2012 08:35:16 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=3876#comment-964</guid>
		<description><![CDATA[Compiler converts source code in high level language(.c format) to an executable machine code(.elf format).

Assembler on the other hand converts low level language like assembly language code to a object code(.out format)which needs to be linked by a linker for generating machine code(.so format).]]></description>
		<content:encoded><![CDATA[<p>Compiler converts source code in high level language(.c format) to an executable machine code(.elf format).</p>
<p>Assembler on the other hand converts low level language like assembly language code to a object code(.out format)which needs to be linked by a linker for generating machine code(.so format).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
