<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://andromeda.df.lu.lv/wiki/index.php?action=history&amp;feed=atom&amp;title=ARM_development_environment_on_Ubuntu</id>
	<title>ARM development environment on Ubuntu - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://andromeda.df.lu.lv/wiki/index.php?action=history&amp;feed=atom&amp;title=ARM_development_environment_on_Ubuntu"/>
	<link rel="alternate" type="text/html" href="http://andromeda.df.lu.lv/wiki/index.php?title=ARM_development_environment_on_Ubuntu&amp;action=history"/>
	<updated>2026-05-13T14:57:29Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>http://andromeda.df.lu.lv/wiki/index.php?title=ARM_development_environment_on_Ubuntu&amp;diff=10297&amp;oldid=prev</id>
		<title>Leo: Created page with &quot;{{TocRight}}  Arm development and test environment on Ubuntu can be set up the following way. We will need the cross-chain tools and libraries for compilation and emulation  T...&quot;</title>
		<link rel="alternate" type="text/html" href="http://andromeda.df.lu.lv/wiki/index.php?title=ARM_development_environment_on_Ubuntu&amp;diff=10297&amp;oldid=prev"/>
		<updated>2022-09-30T13:02:52Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;{{TocRight}}  Arm development and test environment on Ubuntu can be set up the following way. We will need the cross-chain tools and libraries for compilation and emulation  T...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{TocRight}}&lt;br /&gt;
&lt;br /&gt;
Arm development and test environment on Ubuntu can be set up the following way.&lt;br /&gt;
We will need the cross-chain tools and libraries for compilation and emulation&lt;br /&gt;
&lt;br /&gt;
This was tested on Ubuntu 22.04&lt;br /&gt;
 sudo apt-get install gcc-arm-linux-gnueabi linux-libc-dev-armel-cross qemu-user &lt;br /&gt;
&lt;br /&gt;
For the gdb-multiarch debugger:&lt;br /&gt;
 sudo apt-get install gdb-multiarch&lt;br /&gt;
&lt;br /&gt;
You may find the following tools useful as well, but the chances are you have them already:&lt;br /&gt;
 sudo apt-get install build-essential binutils gcc git ddd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
Let us compile a program myprog.c for ARM Xscale processor, like so:&lt;br /&gt;
&lt;br /&gt;
 arm-linux-gnueabi-gcc -g -mcpu=xscale -O0 -Wall -o myprog.o -c myprog.c&lt;br /&gt;
 arm-linux-gnueabi-gcc  -o myprog myprog.o&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now we can run the new ARM program in the qemu emulator&lt;br /&gt;
&lt;br /&gt;
 qemu-arm -L /usr/arm-linux-gnueabi myprog&lt;br /&gt;
&lt;br /&gt;
The parameter -L may be required to find the needed libraries for the ARM platform&lt;/div&gt;</summary>
		<author><name>Leo</name></author>
		
	</entry>
</feed>