<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.gumstix.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jersacct</id>
		<title>Gumstix User Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.gumstix.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jersacct"/>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php/Special:Contributions/Jersacct"/>
		<updated>2026-04-07T04:03:53Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.25.3</generator>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Creating_Native_Build_Environment&amp;diff=140</id>
		<title>Creating Native Build Environment</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Creating_Native_Build_Environment&amp;diff=140"/>
				<updated>2008-03-03T07:18:22Z</updated>
		
		<summary type="html">&lt;p&gt;Jersacct: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How_to_-_general]]&lt;br /&gt;
__FORCETOC__&lt;br /&gt;
==Starting from a clean image==&lt;br /&gt;
===Installing build packages to MMC/SD===&lt;br /&gt;
&lt;br /&gt;
Issue the following commands to download and install the necessary packages:&lt;br /&gt;
&lt;br /&gt;
 $ ipkg update&lt;br /&gt;
 $ ipkg -d mmc install gcc libc6-dev binutils libgcc-s-dev&lt;br /&gt;
&lt;br /&gt;
Next, we need to create links on the root filesystem to the installed packages:&lt;br /&gt;
 &lt;br /&gt;
 $ ipkg-link mount /media/card&lt;br /&gt;
&lt;br /&gt;
The libgcc-s-dev package does not install the proper symbolic links when installed on MMC/SD. Execute the following commands to create the proper link:&lt;br /&gt;
&lt;br /&gt;
 $ rm /media/card/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
 $ ln -s /lib/libgcc_s.so.1 /media/card/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
&lt;br /&gt;
===Installing build packages to CF===&lt;br /&gt;
&lt;br /&gt;
Issue the following commands to download and install the necessary packages:&lt;br /&gt;
&lt;br /&gt;
 $ ipkg update&lt;br /&gt;
 $ ipkg -d mmc install gcc libc6-dev binutils libgcc-s-dev&lt;br /&gt;
&lt;br /&gt;
Next, we need to create links on the root filesystem to the installed packages:&lt;br /&gt;
 &lt;br /&gt;
 $ ipkg-link mount /media/cf&lt;br /&gt;
&lt;br /&gt;
The libgcc-s-dev package does not install the proper symbolic links when installed on CF. Execute the following commands to create the proper link:&lt;br /&gt;
&lt;br /&gt;
 $ rm /media/cf/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
 $ ln -s /lib/libgcc_s.so.1 /media/cf/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
&lt;br /&gt;
===Installing build packages to root filesystem===&lt;br /&gt;
&lt;br /&gt;
Issue the following commands to download and install the necessary packages:&lt;br /&gt;
&lt;br /&gt;
 $ ipkg update&lt;br /&gt;
 $ ipkg install gcc libc6-dev binutils libgcc-s-dev&lt;br /&gt;
&lt;br /&gt;
==Completing setup==&lt;br /&gt;
&lt;br /&gt;
All the required packages are installed to compile simpler programs.&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
Please note that lib6c-dev will satisfy a few dependencies:&lt;br /&gt;
 glibc-extra-nss&lt;br /&gt;
 libthread-db1&lt;br /&gt;
 linux-libc-headers-dev&lt;/div&gt;</summary>
		<author><name>Jersacct</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Creating_Native_Build_Environment&amp;diff=139</id>
		<title>Creating Native Build Environment</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Creating_Native_Build_Environment&amp;diff=139"/>
				<updated>2008-03-03T07:17:07Z</updated>
		
		<summary type="html">&lt;p&gt;Jersacct: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How_to_-_general]]&lt;br /&gt;
__FORCETOC__&lt;br /&gt;
==Starting from a clean image==&lt;br /&gt;
===Installing build packages to MMC/SD===&lt;br /&gt;
&lt;br /&gt;
Issue the following commands to download and install the necessary packages:&lt;br /&gt;
&lt;br /&gt;
 $ ipkg update&lt;br /&gt;
 $ ipkg -d mmc install gcc libc6-dev binutils libgcc-s-dev&lt;br /&gt;
&lt;br /&gt;
Next, we need to create links on the root filesystem to the installed packages:&lt;br /&gt;
 &lt;br /&gt;
 $ ipkg-link mount /media/card&lt;br /&gt;
&lt;br /&gt;
The libgcc-s-dev package does not install the proper symbolic links when installed on MMC/SD. Execute the following commands to create the proper link:&lt;br /&gt;
&lt;br /&gt;
 $ rm /media/card/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
 $ ln -s /lib/libgcc_s.so.1 /media/card/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
&lt;br /&gt;
===Installing build packages to CF===&lt;br /&gt;
&lt;br /&gt;
Issue the following commands to download and install the necessary packages:&lt;br /&gt;
&lt;br /&gt;
 $ ipkg update&lt;br /&gt;
 $ ipkg -d mmc install gcc libc6-dev binutils libgcc-s-dev&lt;br /&gt;
&lt;br /&gt;
Next, we need to create links on the root filesystem to the installed packages:&lt;br /&gt;
 &lt;br /&gt;
 $ ipkg-link mount /media/card&lt;br /&gt;
&lt;br /&gt;
The libgcc-s-dev package does not install the proper symbolic links when installed on CF. Execute the following commands to create the proper link:&lt;br /&gt;
&lt;br /&gt;
 $ rm /media/cf/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
 $ ln -s /lib/libgcc_s.so.1 /media/cf/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
&lt;br /&gt;
===Installing build packages to root filesystem===&lt;br /&gt;
&lt;br /&gt;
Issue the following commands to download and install the necessary packages:&lt;br /&gt;
&lt;br /&gt;
 $ ipkg update&lt;br /&gt;
 $ ipkg install gcc libc6-dev binutils libgcc-s-dev&lt;br /&gt;
&lt;br /&gt;
==Completing setup==&lt;br /&gt;
&lt;br /&gt;
All the required packages are installed to compile simpler programs.&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
Please note that lib6c-dev will satisfy a few dependencies:&lt;br /&gt;
 glibc-extra-nss&lt;br /&gt;
 libthread-db1&lt;br /&gt;
 linux-libc-headers-dev&lt;/div&gt;</summary>
		<author><name>Jersacct</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Creating_Native_Build_Environment&amp;diff=138</id>
		<title>Creating Native Build Environment</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Creating_Native_Build_Environment&amp;diff=138"/>
				<updated>2008-03-03T06:39:21Z</updated>
		
		<summary type="html">&lt;p&gt;Jersacct: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How_to_-_general]]&lt;br /&gt;
From a clean image, the following packages must be installed via ipkg (after performing 'ipkg update'):&lt;br /&gt;
&lt;br /&gt;
Installing to root filesystem:&lt;br /&gt;
     ipkg install gcc libc6-dev binutils libgcc-s-dev&lt;br /&gt;
&lt;br /&gt;
Installing to MMC/SD/CF:&lt;br /&gt;
     ipkg -d mmc install gcc libc6-dev binutils libgcc-s-dev&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please note that lib6c-dev will satisfy a few dependencies if they are not already present:&lt;br /&gt;
     glibc-extra-nss&lt;br /&gt;
     libthread-db1&lt;br /&gt;
     linux-libc-headers-dev&lt;br /&gt;
&lt;br /&gt;
If these packages were installed to a CF, SD, or MMC device, you will need to issue the appropriate 'ipkg-link' commands. &lt;br /&gt;
&lt;br /&gt;
A symbolic link is broken if not installed to the root filesystem, so it needs to be fixed using the following commands:&lt;br /&gt;
&lt;br /&gt;
For MMC/SD Users:&lt;br /&gt;
     rm /media/card/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
     ln -s /lib/libgcc_s.so.1 /media/card/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
&lt;br /&gt;
For CF Users:&lt;br /&gt;
     rm /media/cf/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
     ln -s /lib/libgcc_s.so.1 /media/cf/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;/div&gt;</summary>
		<author><name>Jersacct</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Creating_Native_Build_Environment&amp;diff=137</id>
		<title>Creating Native Build Environment</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Creating_Native_Build_Environment&amp;diff=137"/>
				<updated>2008-03-03T06:38:08Z</updated>
		
		<summary type="html">&lt;p&gt;Jersacct: This page lists the steps necessary to create a native build environment for OE builds using glibc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;From a clean image, the following packages must be installed via ipkg (after performing 'ipkg update'):&lt;br /&gt;
&lt;br /&gt;
Installing to root filesystem:&lt;br /&gt;
     ipkg install gcc libc6-dev binutils libgcc-s-dev&lt;br /&gt;
&lt;br /&gt;
Installing to MMC/SD/CF:&lt;br /&gt;
     ipkg -d mmc install gcc libc6-dev binutils libgcc-s-dev&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please note that lib6c-dev will satisfy a few dependencies if they are not already present:&lt;br /&gt;
     glibc-extra-nss&lt;br /&gt;
     libthread-db1&lt;br /&gt;
     linux-libc-headers-dev&lt;br /&gt;
&lt;br /&gt;
If these packages were installed to a CF, SD, or MMC device, you will need to issue the appropriate 'ipkg-link' commands. &lt;br /&gt;
&lt;br /&gt;
A symbolic link is broken if not installed to the root filesystem, so it needs to be fixed using the following commands:&lt;br /&gt;
&lt;br /&gt;
For MMC/SD Users:&lt;br /&gt;
     rm /media/card/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
     ln -s /lib/libgcc_s.so.1 /media/card/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
&lt;br /&gt;
For CF Users:&lt;br /&gt;
     rm /media/cf/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;br /&gt;
     ln -s /lib/libgcc_s.so.1 /media/cf/usr/lib/gcc/arm-angstrom-linux-gnueabi/4.1.2/libgcc_s.so&lt;/div&gt;</summary>
		<author><name>Jersacct</name></author>	</entry>

	</feed>