红联Linux门户
Linux帮助

一步一步建立基于ARM+Linux的cross toolchain

发布时间:2006-10-21 01:08:44来源:红联作者:舍其里奥
声明:本文在参考网上资料的基础上,以梁元恩的《如何为嵌入式开发建立交叉编译环境》为蓝本修改而成。对于自己在建立过程中遇到的问题进行了详细的说明,本文随自己学习的深入会进行相应的更新。

1 引言

由于一般嵌入式开发系统存储容量有限,在裁减和定制Linux,运用于嵌入式系统前,通常需要在PC机上建立一个用于目标机的交叉编译环境,也就是将各种二进制工具程序集成为工具链,其中包括如GNU的链接器(ld)、GNU的汇编器(as)、ar(产生修改和解开一个存档文件)、C编译器(gcc)以及C链接库(glibc)。本文以在Linux系统上针对目标机arm为例,介绍了跨平台开发工具链的建立过程。

2 基本概念

2.1 什么是交叉编译?

简单地说,交叉编译就是在一个平台上生成在另一个平台上执行的代码。这里的平台包括体系结构(Architecture)和操作系统(OS)。同一个体系结构可以运行不同的操作系统,同样,同一个操作系统也可以在不同的体系结构上运行。举例来说,x86 Linux平台是Intel x86 体系结构和Linux for x86操作系统的统称。

2.2 为什么要用交叉编译?

原因有两个。一是目标平台所需要的bootloader以及OS核心还没有建立时,需要作交叉编译。二是目标机设备不具备一定的处理器能力和存储空间,即单独在目标板上无法完成程序开发,所以只好求助宿主机。这样可以在宿主机上对即将在目标机上运行的应用程序进行编译,生成可以在目标机上运行的代码格式,然后移植到目标板上,也就是目前嵌入式程序开发的Host/Target模式。

2.3 对于i386的理解

如果单纯说i386、i686,就是指平时所说的CPU类型。从Linux内核设计上讲,i386是架构,i486/586/686这些CPU的架构都是i386,所以很多linux方面的设计都是基于i386。简单地说,i386跟ppc,alpha,arm等放在一起时就是指架构,跟i586,i686放在一起指处理器型号,一个是横向的,一个是纵向的。

3 建立过程

3.1 选定软件版本

要想选用适当的版本,以保证建立的工具链可用,就必须找到适合主机和目标板的组合。这些可以自己测试,也可以从网上寻找已经测试过的版本组合,即binutils、gcc、glibc的版本组合。我用的宿主机为redhat-9.0,目标机arm,选择的版本如下:

--------------------------------------------------------------------------------

binutils-2.11.2.tar.gz 包含有ld、ar、as等一些产生或者处理二进制文件的工具。

gcc-core-2.95.3.tar.gz 包含GCC的主体部分。

gcc-g++2.95.3.tar.gz 可以使GCC编译C++程序。

glibc-2.2.4.tar.gz libc是很多用户层应用都要用到的库,即C链接库。

glibc-linuxthreads-2.2.4.tar.gz libc用于支持Posix线程单独发布的压缩包。

linux-2.4.21.tar.gz+rmk1 Linux的内核及其支持ARM的补丁包。

--------------------------------------------------------------------------------

你可以尝试选定更新的版本,编译无法通过时,依次使用较旧的版本。即时发现新版本组合能够编译成功,仍然需要测试建立的工具链是否可以使用。

你可以从FTP网ftp://ftp.gnu.org/gnu/或者任何其他的镜像网站下载GNU工具链的各个组件:binutils包位于binutils目录,gcc包位于gcc目录,而glibc包与glibc-linuxthreads包放在glibc目录。下面给出上面选用的各个版本的下载路径。

--------------------------------------------------------------------------------

binutils-2.11.2.tar.gz

ftp://ftp.gnu.org/gnu/binutils/binutils-2.11.2.tar.gz

gcc-core-2.95.3.tar.gz

ftp://ftp.gnu.org/gnu/gcc/gcc-2.95.3/gcc-core-2.95.3.tar.gz

gcc-g++2.95.3.tar.gz

ftp://ftp.gnu.org/gnu/gcc/gcc-2.95.3/gcc-g++-2.95.3.tar.gz

glibc-2.2.4.tar.gz

ftp://ftp.gnu.org/gnu/glibc/glibc-2.2.4.tar.gz

glibc-linuxthreads-2.2.4.tar.gz

ftp://ftp.gnu.org/gnu/glibc/glibc-linuxthreads-2.2.4.tar.gz

linux-2.4.21.tar.gz+rmk1

ftp://ftp.kernle.org/pub/linux/kernel/v2.4/linux-2.4.21.tar.gz

ftp://ftp.arm.linux.org.uk/pub/linux/arm/kernel/v2.4/patch-2.4.21-rmk1.gz

--------------------------------------------------------------------------------

3.2 建立工作目录

我的用户名为lqm,所以所有的工作都在/home/lqm下面建立完成。

************************************************************

$cd /home/lqm 进入工作目录

$pwd 查看当前目录

/home/lqm

$mkdir embedded-system 创建工具链文件夹

$ls 查看/home/lqm建立的所有文件

embedded-system

************************************************************

现在已经建立了顶层文件夹embedded-system,下面在此文件夹下建立如下几个目录:

--------------------------------------------------------------------------------

setup-dir 存放下载的压缩包

src-dir 存放binutils、gcc、glibc解压之后的源文件

kernel 存放内核文件,对内核的配置和编译工作也在此完成

build-dir 编译src-dir下面的源文件。这是GNU推荐的源文件目录与编译目录分离的做法。

tool-chain 交叉编译工具链的安装位置

program 存放编写程序

doc 说明文档和脚本文件

--------------------------------------------------------------------------------

下面建立目录,并且下载源文件。

************************************************************

$pwd

/home/lqm/

$cd embedded-system

$mkdir setup-dir src-dir kernel build-dir tool-chain program doc

$ls

build-dir doc kernel program setup-dir src-dir tool-chain

$cd setup-dir

$wgetftp://ftp.gnu.org/gnu/binutils/binutils-2.11.2.tar.gz 下载源文件

$wgetftp://ftp.gnu.org/gnu/gcc/gcc-2.95.3/gcc-core-2.95.3.tar.gz

$wgetftp://ftp.gnu.org/gnu/gcc/gcc-2.95.3/gcc-g++-2.95.3.tar.gz

$wgetftp://ftp.gnu.org/gnu/glibc/glibc-2.2.4.tar.gz

$wgetftp://ftp.gnu.org/gnu/glibc/glibc-linuxthreads-2.2.4.tar.gz

$wgetftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-2.4.21.tar.gz

$wgetftp://ftp.arm.linux.org.uk/pub/linux/arm/kernel/v2.4/ patch-2.4.21-rmk1.gz

$ls

binutils-2.11.2.tar.gz gcc-g++-2.95.3.tar.gz glibc-linuxthreads-2.2.4.tar.gz

patch-2.4.21-rmk1.gz gcc-core-2.95.3.tar.gz glibc-2.2.4.tar.gz linux-2.4.21.tar.gz

$cd ../build-dir

$mkdir build-binutils build-gcc build-glibc 建立编译目录

************************************************************

3.3 输出环境变量

在建立与使用某些工具程序时,可能会用到这些目录的路径,如果设计一个简短的命令脚本,设定适当的环境变量,则可以简化操作过程。下面就建立命令脚本hjbl:

************************************************************

$pwd

/home/lqm/embedded-system/build-dir

$cd ../doc

$mkdir scripts

$cd scripts

$emacs hjbl 用文本编辑器emacs编译环境变量脚本

--------------------------------------------------------------------------------

在随后打开的emacs编辑窗口中输入下面内容(如果在命令行界面下,则必须要用到vi文本编辑器,emacs则不可以):

export PRJROOT=/home/lqm/embedded-system

export TARGET=arm-linux

export PREFIX=$PRJROOT/tool-chain

export TARGET_PREFIX=$PREFIX/$TARGET

export PATH=$PREFIX/bin:$PATH

保存后关闭emacs窗口,如果要在目前的窗口中执行此脚本,即让环境变量生效,还需要执行下面的语句:

--------------------------------------------------------------------------------

$. hjbl(注意:在点和hjbl之间有一个空格)

$cd $PRJROOT 验证环境变量是否生效

$ls

build-dir doc kernel program setup-dir src-dir tool-chain

************************************************************

该环境变量的作用时间仅仅在Terminal当前窗口,如果将窗口关闭,开启一个新的窗口,则环境变量实效,需要重新执行下面的命令:

$. /home/lqm/embedded-system/doc/scripts/hjbl

说明:

TARGET变量用来定义目标板的类型,以后会根据此目标板的类型来建立工具链。参看表1。目标板的定义与主机的类型是没有关系的,但是如果更改TARGET的值,GNU工具链必须重新建立一次。

PREFIX变量提供了指针,指向目标板工具程序将被安装的目录。

TARGET_PREFIX变量指向与目标板相关的头文件和链接库将被安装的目录。

PATH变量指向二进制文件(可执行文件)将被安装的目录。

表1 TARGET变量值
实际的目标板 TARGET变量值
[table=200][tr][td] PowerPC [/td][td] powerpc- linux
[/td][/tr][tr][td] ARM
[/td][td] arm-linux
[/td][/tr][tr][td] MIPS(bigendian)
[/td][td] mips-linux
[/td][/tr][tr][td] MIPS(littleendian)
[/td][td] mipsel-linux
[/td][/tr][tr][td] SuperH 4
[/td][td] sh4-linux[/td][/tr][/table]

3.4 内核头文件的配置

内核头文件的配置是建立工具链的第一步。它与后面将要执行的其他步骤有着类似性,大多需要执行下面几步操作:

1、 解压缩包

2、 为跨平台开发设定包的配置

3、 建立包

4、 安装包

************************************************************

$pwd

/home/lqm/embedded-system/

$cd kernel

$tar xvzf ../setup-dir/ linux-2.4.21.tar.gz 解压缩

$gunzip ../setup-dir/ patch-2.4.21-rmk1.gz

$cd linux-2.4.21

$patch -p1 < ../../setup-dir/patch-2.4.21-rmk1 给Linux内核打补丁

$make ARCH=arm CROSS_COMPILE=arm-linux- menuconfig 配置

$make dep

--------------------------------------------------------------------------------

变量ARCH和CROSS_COMPILE的值与目标板的架构类型有关。如果使用PPC目标板,则ARCH=ppc CROSS_COMPILE=ppc-linux-。如果使用i386目标板,则ARCH=i386 CROSS_COMPILE=i386-linux-。

make menuconfig是以文本菜单方式配置。

make xconfig是以图形界面方式配置。

make config是纯文本方式界面配置。

一般选择make menuconfig,注意在选项System Types中选择正确的硬件类型。配置完退出并保存,检查一下的内核目录中的 kernel/linux-2.4.21/include/linux/version.h 和autoconf.h 文件是不是生成了,这是编译glibc是要用到。version.h 和 autoconf.h 文件的存在,说明你生成了正确的头文件。

然后,建立工具链需要的include目录,并将内核头文件复制过去。

--------------------------------------------------------------------------------

$cd include

$ln -s asm-arm asm #可以查看一下,经过编译可以自动生成。如果已经生成连接,则不必写

$cd asm

$ln -s arch-epxa arch #同上说明

$ln -s proc-armv proc #同上说明

#这些是针对makefile文件作出的修改

$mkdir -p $TARGET_PREFIX/include

$cp -r $PRJROOT/kernel/linux-2.4.21/include/linux $TARGET_PREFIX/include

$cp -r $PRJROOT/kernrl/linux-2.4.21/include/asm-arm $TARGET_PREFIX/include/asm

************************************************************

注意:

1、不必再每次重新设定内核配置之后重建工具链,除非你变更了处理器或系统的类型。工具链只需要一组可供目标板使用的有效头文件即可,这些头文件在前面的程序中早就已经提供了。

2、asm-linux文件夹放到目标文件夹$TARGET_PREFIX/include/时要更改名称为asm,因为配置文件的include包含都是方式。这也是交叉编译的不同之处。否则就会出现类似下面的错误提示:

--------------------------------------------------------------------------------

.........

done

_udivsi3

_divsi3

_umodsi3

_modsi3

_dwmd_lnx

libgcc1.s:438:asm/unistd.h:No such file or directory

make [1] *** [libgcc1-asm.a] error 1

--------------------------------------------------------------------------------

3.5 binutils(二进制工具程序)的设置

binutils包中的工具常用来操作二进制目标文件。该包中最重要的两个工具就是GNU汇编器as和链接器ld。

************************************************************

$cd $PRJROOT/src-dir

$tar xvzf ../setup-dir/binutils-2.11.2.tar.gz

$cd $PRJROOT/build-dir/build-binutils

$../../src-dir/binutils-2.11.2/configure --target=$TARGET --prefix=$PREFIX

$make

$make install

$ls $PREFIX/bin 验证安装的结果是否正确

arm-linux-addr2line arm-linux-ld arm-linux-readelf

arm-linux-ar arm-linux-nm arm-linux-size

arm-linux-as arm-linux-objcopy arm-linux-strings

arm-linux-c++filt arm-linux-objdump arm-linux-strip

arm-linux-gasp arm-linux-ranlib

************************************************************

注意:每个工具的文件名的前缀都是前面为TARGET变量设定的值。如果目标板是i386-linux,那么这些工具的文件名前缀就会是i386-linux-。这样就可以根据目标板类型找到正确的工具程序。

3.6 初始编译器的建立

开始只能建立支持C语言的引导编译器,因为缺少C链接库(glibc)的支持。等到glibc编译好之后,可以重新编译gcc并提供完整的C++支持。

************************************************************

$cd $PRJROOT/setup-dir

$mv gcc-core-2.95.3.tar.gz gcc-2.95.3.tar.gz #重命名

$cd $PRJROOT/src-dir

$tar xvzf ../setup-dir/gcc-2.95.3.tar.gz

$cd $PRJROOT/build-dir/build-gcc

$../../src-dir/gcc-2.95.3/configure --target=$TARGET --prefix=$PREFIX --without-headers
--enable-languages=c

--------------------------------------------------------------------------------

因为是交叉编译器,还不需要目标板的系统头文件,所以需要使用 --without-headers这个选项。--enable-language=c用来告诉配置脚本,需要产生的编译器支持何种语言,现在只能支持C语言。--disable-threads是因为threads需要glibc的支持。

准备好了Makefile文件,进行编译之前,需要修改src-dir/gcc-2.95.3/gcc/config/arm/t-linux文件,在TARGET_LIBGCC2_CFLAGS中添加两个定义:-Dinhibit_libc -D__gthr_posix_h,否则会报错。

--------------------------------------------------------------------------------

$make

$make install

************************************************************

3.7 建立C库(glibc)

这一步是最为繁琐的过程。目标板必须靠它来执行或者是开发大部分的应用程序。glibc套件常被称为C链接库,但是glibc实际产生很多链接库,其中之一是C链接库libc。因为嵌入式系统的限制,标准GNU C链接库显得太大,不适合应用在目标板上。所以需要寻找C链接库的替代品,比如uClibc。在这里,现以标准GNU C为例建立工具链。

************************************************************

$cd $PRJROOT/src-dir

$tar xvzf ../setup-dir/glibc-2.2.4.tar.gz

$tar xvzf ../setup-dir/glibc-linuxthreads-2.2.4.tar.gz --directory=glibc-2.2.4

$cd $PRJROOT/build-dir/build-glibc

$CC=arm-linux-gcc ../../src-dir/glibc-2.2.4/configure --host=$TARGET --prefix=”/usr”
--enable-add-ons --with-headers=$TARGET_PREFIX/include

$make

$make install_root=$TARGET_PREFIX prefix=”” install

--------------------------------------------------------------------------------

在这里设定了install_root变量,指向链接库组件目前所要安装的目录。这样可以让链接库及其头文件安装到通过TARGET_PREFIX指定的与目标板有关的目录,而不是建立系统本身的/usr目录。因为之前使用--prefix选项来设定prefix变量的值,而且prefix的值会被附加到install_root的值之后,成为链接库组件的安装目录,所以需要重新设定prefix的值。这样所有的glibc组件将会安装到$TARGET_PREFIX指定的目录下。

--------------------------------------------------------------------------------

$cd $TARGET_PREFIX/lib

$cp ./libc.so ./libc.so.orig

--------------------------------------------------------------------------------

编辑文件libc.so,更改如下:

/* GNU ld script

Use the shared library,but some functions are only in

the static library,so try that secondarily.*/

GROUP(libc.so.6 libc_nonshared.a)

--------------------------------------------------------------------------------

************************************************************

3.8 完整编译器的设置

现在可以为目标板安装支持C和C++的完整编译器了。这个步骤相对于前面来建立过程要简单一些。

************************************************************

$cd $PRJROOT/build-dir/build-gcc

$../../src-dir/gcc-2.95.3/configure --target=$TARGET --prefix=$PREFIX
--enable-languages=c,c++

$make all

$make install

************************************************************

3.9 完成工具链的设置

************************************************************

$cd $TARGET_PREFIX/bin

$file as ar gcc ld nm ranlib strip 查看文件是否为二进制文件

$arm-linux-gcc -print-search-dirs 查看缺省的搜寻路径

$mv as ar gcc ld nm ranlib strip $PREFIX/lib/gcc-lib/arm-linux/2.95.3 转移文件

$for file in as ar gcc ld nm ranlib strip

>do

>ln -s $PREFIX/lib/gcc-lib/arm-linux/2.95.3/$file

>done

************************************************************

3.10 使用工具链

下面编写一个简单的C程序,使用建立的工具链。、

************************************************************

$cd $PRJROOT/program

$emacs hello.c

--------------------------------------------------------------------------------

在文本编辑器emacs中编写:

#include

int main()
{
int i;
for(i=1;i<9;i++)
printf(“Hello World %d times!\n”,i);
}

保存退出
--------------------------------------------------------------------------------

$gcc -g hello.c -o hello

$gdb

(gdb)file hello

(gdb)l

#include
int main()
{
int i;
for(i=1;i<9;i++)
printf(“Hello World %d times!\n”,i);
}

(gdb)r

(gdb)q

$arm-linux-gcc -g hello.c -o hello-linux

$file hello-linux

hello-linux:ELF 32-bit LSB executable,ARM,version 1(ARM),for GNU/Linux 2.0.0,dynamically linked(uses shared libs),not stripped

************************************************************

上面的输出说明你编译了一个能在 arm 体系结构下运行的 hello-linux,证明你的编译工具做成功了。

4 总结

通过上面的操作,已经能够建立全功能的跨平台开发工具链,在以后的嵌入式开发中将会经常用到。

说明:-----之间为说明文字

***之间为源程序
文章评论

共有 1929 条评论

  1. 67.68.161.* 于 2007-07-08 11:23:14发表:

    plz karte bayern plz karte bayern http://www.deutsch-land-ticket.info/book/4811.html music store portland oregon music store portland oregon http://www.german-genre-music.info/today/music-store-portland-oregon mostrar musica hip hop mostrar musica hip hop http://www.1video-de-musica.info/mostrar-musica-hip-hop.asp mercedes classe r noleggio mercedes classe r noleggio http://www.1vendita-automobile.info/4/156803.html annuncio lavoro concorso faedo annuncio lavoro concorso faedo http://www.1-lavoro-it.info/14907.php bmw serie 3 executive edition bmw serie 3 executive edition http://www.coche-de-ocasion1.info/tag/142743.php descarga software webcam cyberlink descarga software webcam cyberlink http://www.1tax-software-es.info/today/descarga-software-webcam-cyberlink.php musique monde gratuite musique monde gratuite http://www.1music-video-fr.info/online/musique-monde-gratuite.php alicia key ticket chicago alicia key ticket chicago http://www.spain-concert-tickets.info/7/alicia-key-ticket-chicago.asp instrument musique guitare cuenca instrument musique guitare cuenca http://www.fr-musique-gratuite.info/204985.php

  2. 68.239.8.* 于 2007-07-08 10:18:57发表:

    occasion mercedes 100354123 occasion mercedes 100354123 http://www.car-fr.info/post/occasion-mercedes-100354123.html coche res renfe coche res renfe http://www.coche-de-ocasion1.info/142637.asp securite incendie code du travail securite incendie code du travail http://www.1-droit-travail.info/9/securite-incendie-code-du-travail.asp accessorio x bmw x5 accessorio x bmw x5 http://www.noleggio-automobile-1.info/latest/153870.html trabajo noche limpieza trabajo noche limpieza http://www.1-trabajo.info/7066.asp billet avion turquie billet avion turquie http://www.1ticketavion-fr.info/billet-avion-turquie.asp logiciel and creation and album and photo logiciel and creation and album and photo http://www.1logiciel-antivirus-fr.info/blog/258847 music video to download music video to download http://www.1demusik.info/10/music-video-to-download.asp bhv software xp firewall optimizer bhv software xp firewall optimizer http://www.1-softwarede.info/comment/220502.php equipo de trabajo equipo de trabajo http://www.1-trabajo-spain.info/equipo-de-trabajo

  3. 82.66.197.* 于 2007-07-08 07:50:09发表:

    opel auto de opel auto de http://www.de-car.info/latest/110155.php travel agent job travel agent job http://www.job-suche-de.info/7/60990.html tom tom one karte niederlande tom tom one karte niederlande http://www.german-ticket.info/book/tom-tom-one-karte-niederlande.html billet grand prix de france f1 billet grand prix de france f1 http://www.1ticketonline-fr.info/10/billet-grand-prix-de-france-f1.asp roma san diego biglietto aereo roma san diego biglietto aereo http://www.1airlineticket-it.info/10/50919.php letra de musica de mago de oz letra de musica de mago de oz http://www.musica-latina.info/8/191072 colorado spring job search colorado spring job search http://www.1restaurant-job-de.info/cat/colorado-spring-job-search.html bubbles car wash edmonton bubbles car wash edmonton http://www.bobby-car-de.info/articles/111467.php fahrer job suchen fahrer job suchen http://www.1jobsuche.info/fahrer-job-suchen.asp billet avion bruxelles geneve billet avion bruxelles geneve http://www.plan-ticket-fr.info/10/billet-avion-bruxelles-geneve.php

  4. 24.27.131.* 于 2007-07-08 04:31:52发表:

    plan travail granit toulouse plan travail granit toulouse http://www.1travailadomicile.info/new/plan-travail-granit-toulouse voiture occasion 206 peugeot bleu voiture occasion 206 peugeot bleu http://www.voitureneuve-fr.info/123405.php annuncio lavoro potenza quero annuncio lavoro potenza quero http://www.job-search-it.info/comment/22893.html advantage car rental coupon discount code advantage car rental coupon discount code http://www.voiture-fr.info/latest/126807.php job search luxembourg job search luxembourg http://www.fr-contrat-travail.info/95331.php nyc discount broadway ticket nyc discount broadway ticket http://www.es-1-ticket.info/article/16022.php lancia nuova delta lancia nuova delta http://www.automobile-usata-it.info/9/154666.php biglietto comunione stampare biglietto comunione stampare http://www.biglietto-pasqua.info/biglietto-comunione-stampare.asp new ford car uk new ford car uk http://www.1bobbycar-de.info/tag/new-ford-car-uk software fax server software fax server http://www.1software-deutschland.info/blog/software-fax-server.php

  5. 90.7.208.* 于 2007-07-08 03:15:43发表:

    biglietto d invito x compleanno superman biglietto d invito x compleanno superman http://www.1-ticket-italy.info/49968.php software gestione tastiera pocket pc software gestione tastiera pocket pc http://www.software-cad-ita.info/software-gestione-tastiera-pocket-pc ucla basketball ticket ucla basketball ticket http://www.eventtickets-1.info/10/ucla-basketball-ticket.html biglietto aereo roma ciampino biglietto aereo roma ciampino http://www.biglietto-festapapa-it.info/1/biglietto-aereo-roma-ciampino.php telecharge musique mp3 telecharge musique mp3 http://www.1music-fr.info/4/194626 vehiculo ocasion mercedes benz vehiculo ocasion mercedes benz http://www.1radio-coche.info/2007/139272.html annuncio lavoro ingegnere meccanico marche annuncio lavoro ingegnere meccanico marche http://www.economialavoro.info/5/annuncio-lavoro-ingegnere-meccanico-marche musica yahoo messenger musica yahoo messenger http://www.de-musicamp3.info/blog/189185.asp radiology technologist job radiology technologist job http://www.1-trabajo-spain.info/radiology-technologist-job auto macchina incidentata auto macchina incidentata http://www.1foto-automobile-it.info/ads/auto-macchina-incidentata.html

  6. 83.205.201.* 于 2007-07-08 02:47:43发表:

    site www port scanner software fidelca casino roulette site www port scanner software fidelca casino roulette http://www.virus-software-es.info/7/site-www-port-scanner-software-fidelca-casino-roulette.php karaokes gratis musica de mexico karaokes gratis musica de mexico http://www.1musica-gratis-es.info/2007/184797.html coche marca nisan coche marca nisan http://www.alquiler-coche-es.info/143922.html revue technique peugeot 106 revue technique peugeot 106 http://www.1acheter-voiture.info/forum/revue-technique-peugeot-106 offerta lavoro educatore professionale veneto offerta lavoro educatore professionale veneto http://www.italia-lavoro.info/offerta-lavoro-educatore-professionale-veneto.asp software internet motorola software internet motorola http://www.software-indispensabili.info/262747.html juego pc estrategia juego pc estrategia http://www.1partescomputadora.info/juego-pc-estrategia diversa automobile it diversa automobile it http://www.1gioco-auto.info/docs/165414.php ebay music store ebay music store http://www.genre-music-de.info/171453.asp musica boliviana david castro musica boliviana david castro http://www.1bajar-musica.info/latest/musica-boliviana-david-castro

  7. 81.183.170.* 于 2007-07-08 00:40:18发表:

    billet avion pas cher marrakech billet avion pas cher marrakech http://www.1-cheapticket-fr.info/5/34965.asp pubblicita dolce gabbana musica pubblicita dolce gabbana musica http://www.1musica-it.info/ads/pubblicita-dolce-gabbana-musica meilleur credit voiture meilleur credit voiture http://www.occasion-voiture-1.info/docs/148477.php the car lightning mcqueen disney pixar the car lightning mcqueen disney pixar http://www.1car-de.info/109371.asp hr software hr software http://www.es-free-software.info/hr-software.php coche de alquiler en madrid coche de alquiler en madrid http://www.compra-venta-coche.info/coche-de-alquiler-en-madrid.asp logiciel credit immobilier logiciel credit immobilier http://www.1logiciel-gratuit-fr.info/6/logiciel-credit-immobilier.php portal web ministerio trabajo peru portal web ministerio trabajo peru http://www.1trabajo.info/files/6842.asp cheap london theatre ticket cheap london theatre ticket http://www.event-ticket-fr.info/comment/35899.html great amateur car blow job great amateur car blow job http://www.trabajo-casa.info/9/great-amateur-car-blow-job.html

  8. 83.172.210.* 于 2007-07-07 23:48:24发表:

    creare stampare biglietto augurale creare stampare biglietto augurale http://www.bigliettovisita.info/article/creare-stampare-biglietto-augurale.html job opportunite news press job opportunite news press http://www.1job-etudiant.info/job-opportunite-news-press.php juego coche ninios juego coche ninios http://www.1comprar-coche.info/article/139977.asp software telefonia gratis software telefonia gratis http://www.1-software-masterizzazione.info/software-telefonia-gratis load musik load musik http://www.musik-hoeren.info/latest/load-musik.php mature blowjobs galleries mature blowjobs galleries http://www.1-trabajo.info/pdf/mature-blowjobs-galleries.html site www.cliparts baby.de 3d software site www.cliparts baby.de 3d software http://www.office-anwendung-software.info/tools/222426.asp musica ascoltare musica ascoltare http://www.it-annuncio-musica.info/article/216255 alettone lancia lybra alettone lancia lybra http://www.vendita-automobile-ita.info/blog/alettone-lancia-lybra.php vente bmw k 100 rt vente bmw k 100 rt http://www.frcar.info/vente-bmw-k-100-rt.php

  9. 83.172.210.* 于 2007-07-07 21:58:22发表:

    cardinals baseball ticket cardinals baseball ticket http://www.event-tickets-es.info/20004.html dvd musique telecharger dvd musique telecharger http://www.yahoomusic-fr.info/7/196197.html video musica de rock gratis video musica de rock gratis http://www.musica-mp3-es.info/187943.html ricambio interno pelle lancia k ricambio interno pelle lancia k http://www.automobile-usata.info/ricambio-interno-pelle-lancia-k motorola v3 software motorola v3 software http://www.1software-cellulare.info/2007/motorola-v3-software.html ecouter musique enfant gratuitement ecouter musique enfant gratuitement http://www.fr-music-video.info/ads/ecouter-musique-enfant-gratuitement.asp legislation travail en hauteur legislation travail en hauteur http://www.contrat-travail-fr.info/2007/legislation-travail-en-hauteur.html comment integrer domaine poste travail windows 2000 pro comment integrer domaine poste travail windows 2000 pro http://www.job-etudiant1.info/comment/84763.php pizza hannover pizza hannover http://www.slow-food-de.info/1/pizza-hannover.php idee musique entree eglise mariage idee musique entree eglise mariage http://www.frmusique.info/7/201028.asp

  10. 216.194.116.* 于 2007-07-07 20:57:47发表:

    auto radio kassette auto radio kassette http://www.auto-hifi1.info/book/120815.asp stocking girl car stocking girl car http://www.german-car-rental.info/tag/stocking-girl-car rc auto ferngesteuerte rc auto ferngesteuerte http://www.1-auto-hifi.info/files/121119.asp work scheduling software work scheduling software http://www.1accounting-software-es.info/5/work-scheduling-software.php sheap airlines ticket sheap airlines ticket http://www.1airlineticket-fr.info/article/sheap-airlines-ticket jakarta event ticket jakarta event ticket http://www.1-spain-ticket.info/jakarta-event-ticket ryanair billet avion bruxelles ryanair billet avion bruxelles http://www.fr-ticketavion-1.info/4/30640 consumo del bmw m3 consumo del bmw m3 http://www.1-coche-usados.info/tools/consumo-del-bmw-m3.html noleggio lungo auto termine noleggio lungo auto termine http://www.noleggio-auto-ita.info/161784.html logiciel tv film x logiciel tv film x http://www.fr-minova-logiciel.info/logiciel-tv-film-x

  11. 194.3.216.* 于 2007-07-07 19:34:17发表:

    new jersey car dealer new jersey car dealer http://www.1-acheter-voiture.info/new-jersey-car-dealer web musica electronica web musica electronica http://www.buena-musica-es.info/forum/183175.asp logiciel gestion budget logiciel gestion budget http://www.1-fr-logiciel.info/248462 pizza service esslingen pizza service esslingen http://www.deutsch-petfood.info/5/283207.html sante mentale au travail sante mentale au travail http://www.1-travail.info/sante-mentale-au-travail musica nacional boliviana musica nacional boliviana http://www.1musicagratis-es.info/184992.asp logiciel architecture maison gratuit logiciel architecture maison gratuit http://www.1logiciel-de-gravure.info/logiciel-architecture-maison-gratuit.html garage voiture occasion maine et loire garage voiture occasion maine et loire http://www.1-occasion-voiture.info/pdf/garage-voiture-occasion-maine-et-loire.asp firewall software download firewall software download http://www.1security-software-es.info/comment/firewall-software-download.html software development company software development company http://www.1desoftware.info/221135.html

  12. 84.4.19.* 于 2007-07-07 17:50:07发表:

    bmw serie tre porta bmw serie tre porta http://www.noleggio-auto-ita.info/161743.html job as pharmacy assistent job as pharmacy assistent http://www.1-oferta-trabajo.info/job-as-pharmacy-assistent.asp job sozial de job sozial de http://www.job-de-1.info/9/55252.php ecouter musique direct ecouter musique direct http://www.1music-download-fr.info/ecouter-musique-direct.asp ministeri trabajo peru ministeri trabajo peru http://www.es-medical-jobs.info/tools/ministeri-trabajo-peru max pizza max pizza http://www.1fast-food-de.info/online/max-pizza.asp telecharger logiciel gratuit copie dvd telecharger logiciel gratuit copie dvd http://www.achat-logiciel-fr.info/telecharger-logiciel-gratuit-copie-dvd.html rechercher logiciel windows xp edition familiale rechercher logiciel windows xp edition familiale http://www.logiciel-crm-fr.info/260035.asp oferta mercedes clase e oferta mercedes clase e http://www.coche-net-es.info/tools/oferta-mercedes-clase-e.html job etudiant usa job etudiant usa http://www.ouest-job.info/85095.html

  13. 172.186.19.* 于 2007-07-07 17:38:54发表:

    bmw 3 cabrio immagine bmw 3 cabrio immagine http://www.ita-foto-automobile.info/155879.asp enev software gratis enev software gratis http://www.german-pda-software.info/post/228246 job in career schools job in career schools http://www.contrat-travail-fr.info/7/95200 deseo encontrar trabajo ingeni deseo encontrar trabajo ingeni http://www.1trabajo-es.info/6521.asp recrutement job etudiant recrutement job etudiant http://www.1travail.info/recrutement-job-etudiant palm gps map software treo palm gps map software treo http://www.1computer-software-es.info/6/palm-gps-map-software-treo.php best business software best business software http://www.de-nachschlagewerk-software.info/best-business-software.html fast food usa fast food usa http://www.de-slow-food.info/fast-food-usa.php trabajo verticales de cordoba trabajo verticales de cordoba http://www.spain-jobs.info/phorum/3167 job zahnarzt oesterreich job zahnarzt oesterreich http://www.1-jobs-ausland.info/1/job-zahnarzt-oesterreich

  14. 67.45.9.* 于 2007-07-07 16:46:56发表:

    groupement des concessionnaire renault groupement des concessionnaire renault http://www.voiture-1.info/tools/groupement-des-concessionnaire-renault.html software per lg dvd software per lg dvd http://www.1software-cad-ita.info/info/269311.php achat billet avion toulouse achat billet avion toulouse http://www.ticket-online-fr.info/achat-billet-avion-toulouse.asp cna job openings cna job openings http://www.1offerta-lavoro.info/5/cna-job-openings.php sviluppo software dynamic c sviluppo software dynamic c http://www.software-indispensabili-it.info/sviluppo-software-dynamic-c.asp lecteur dvd portable voiture scott lecteur dvd portable voiture scott http://www.1voitureneuve.info/5/124654.php dirt cheap sport ticket dirt cheap sport ticket http://www.1planticket-fr.info/article/dirt-cheap-sport-ticket computer management project software computer management project software http://www.1pda-software-de.info/computer-management-project-software.asp car kit bmw x3 car kit bmw x3 http://www.auto-ersatzteil-de.info/docs/122214.php inurl music reviewed.com inurl music reviewed.com http://www.1-demusic.info/tools/167066.html

  15. 66.245.16.* 于 2007-07-07 15:52:47发表:

    stampa biglietto d augurio stampa biglietto d augurio http://www.1-biglietto-visita.info/10/stampa-biglietto-d-augurio pc software installieren pc software installieren http://www.1pda-software-de.info/pc-software-installieren.asp auto radio car hifi auto radio car hifi http://www.1-autoradio-de.info/120473.html biglietto invito compleanno di winnie the pooh biglietto invito compleanno di winnie the pooh http://www.it-biglietto-1.info/article/41220.php sintonizar musica latina gratis sintonizar musica latina gratis http://www.buena-musica.info/10/182946.asp semi remorque plateau porte voiture semi remorque plateau porte voiture http://www.fr-new-car.info/9/132780.html medical assistant job maryland medical assistant job maryland http://www.gastro-job-de.info/pdf/medical-assistant-job-maryland cesta ticket venezolano cesta ticket venezolano http://www.spain-ticket-1.info/today/19971 classifiche musica commerciale classifiche musica commerciale http://www.it-musica-mp3.info/classifiche-musica-commerciale.html fast food nation kino fast food nation kino http://www.nonfood-de.info/news/fast-food-nation-kino

  16. 70.146.48.* 于 2007-07-07 08:07:27发表:

    software computer agrave software computer agrave http://www.1software-cellulare.info/9/software-computer-agrave.html acheter une voiture en hollande acheter une voiture en hollande http://www.1camping-car-fr.info/133706 grupo ingles musica importante momento grupo ingles musica importante momento http://www.es-musica-1.info/grupo-ingles-musica-importante-momento.php auto boerse de auto boerse de http://www.de-car-1.info/auto-boerse-de.asp chicago white sox ticket chicago white sox ticket http://www.ticketes1.info/info/16873.html car sub woofer mcfun deepbase x 10 250mm 750421 car sub woofer mcfun deepbase x 10 250mm 750421 http://www.1-carsubwoofer-de.info/phorum/car-sub-woofer-mcfun-deepbase-x-10-250mm-750421.php motorola razer v3 software motorola razer v3 software http://www.1software-test-de.info/motorola-razer-v3-software.php offre billet tgv offre billet tgv http://www.cheap-ticket-fr.info/34295.asp toda musica avivamiento cristiano toda musica avivamiento cristiano http://www.es-yahoo-musica.info/189542.asp stadtplan luxemburg karte landkarte stadtplan luxemburg karte landkarte http://www.deticket.info/stadtplan-luxemburg-karte-landkarte

  17. 208.46.53.* 于 2007-07-07 07:40:47发表:

    bolsa de trabajo de lanzarote bolsa de trabajo de lanzarote http://www.1-trabajo-casa.info/12168.php hand blow job hand blow job http://www.offerta1-lavoro.info/docs/17645.php musica hindu video musica hindu video http://www.musicaes1.info/181527.asp best car insurance quote best car insurance quote http://www.autoradio-de.info/2007/best-car-insurance-quote lowest price on airline ticket lowest price on airline ticket http://www.1spainticket.info/18442 porno sales job porno sales job http://www.1german-minijob.info/60216.html auto insurance quote illinois auto insurance quote illinois http://www.bobbycar-de.info/2/auto-insurance-quote-illinois.html logiciel gravure libre logiciel gravure libre http://www.1logiciel-de-gravure.info/tag/259689.html valoracion puesto trabajo ejemplo valoracion puesto trabajo ejemplo http://www.1bolsatrabajo-es.info/9943.html cant find job cant find job http://www.job-ete.info/cant-find-job.asp

  18. 0.0.0.* 于 2007-07-07 06:57:29发表:

    finger food salzburg finger food salzburg http://www.deutsch-cooking-food.info/285990 biglietto aereo palermo milano biglietto aereo palermo milano http://www.1-ticket-it.info/biglietto-aereo-palermo-milano.php tierpark zoo berlin brandenburg job tierpark zoo berlin brandenburg job http://www.1jobsearch-de.info/new/66076.asp yankee baseball ticket yankee baseball ticket http://www.es-ticktack-ticket.info/2006/yankee-baseball-ticket.php compra coche segunda mano compra coche segunda mano http://www.venta-de-coche.info/ads/138234.asp software grabacion pelicula dvd protegidas software grabacion pelicula dvd protegidas http://www.es-business-software.info/7/software-grabacion-pelicula-dvd-protegidas software magazzino fatturazione free software magazzino fatturazione free http://www.software-elaborazione-immagini.info/article/software-magazzino-fatturazione-free prix billet avion espagne prix billet avion espagne http://www.fr-1-planticket.info/9/39560.html free music studio scanner free music studio scanner http://www.1eb-music-de.info/free-music-studio-scanner.html musique des pub peugeot musique des pub peugeot http://www.musique-gratuite-fr.info/tools/204631

  19. 130.13.188.* 于 2007-07-07 05:20:01发表:

    airline ticket to mexico airline ticket to mexico http://www.es-ticktack-ticket.info/2/26647 actividad realiza secretaria trabajo previcion social actividad realiza secretaria trabajo previcion social http://www.spain-jobs.info/comment/actividad-realiza-secretaria-trabajo-previcion-social.php noleggio auto matrimonio bergamo noleggio auto matrimonio bergamo http://www.1-gioco-auto.info/noleggio-auto-matrimonio-bergamo.php ticket bill ticket bill http://www.1ticket-es.info/9/ticket-bill finger food finger food http://www.de-cooking-food.info/285432.html free download software satellitario free download software satellitario http://www.1software-indispensabili.info/free-download-software-satellitario anteprima bmw m6 anteprima bmw m6 http://www.ita-auto-noleggio.info/2007/anteprima-bmw-m6.php biglietto lotteria di capodanno biglietto lotteria di capodanno http://www.1biglietto-pasqua.info/info/biglietto-lotteria-di-capodanno.html winmx free music download winmx free music download http://www.1-telecharger-musique.info/phorum/winmx-free-music-download.html sewing job at home sewing job at home http://www.1oferta-trabajo-es.info/today/sewing-job-at-home.asp

  20. 67.68.123.* 于 2007-07-07 03:35:04发表:

    throat job throat job http://www.job-fr.info/9/throat-job.html instrument musique buffet crampon b10 instrument musique buffet crampon b10 http://www.musique-gratuite-1.info/204706.php airline cheap ticket airline cheap ticket http://www.ticket-fr.info/7/27221.php deutsch bahn deutsch bahn ticket deutsch bahn deutsch bahn ticket http://www.karte1-de.info/news/deutsch-bahn-deutsch-bahn-ticket rus musik de rus musik de http://www.1musik-download-de.info/ads/rus-musik-de download musica spartito download musica spartito http://www.musica-gratis-it.info/download-musica-spartito.html voli last minute biglietto aereo voli last minute biglietto aereo http://www.1-ticket-it.info/voli-last-minute-biglietto-aereo.php backup software dvd backup software dvd http://www.1softwarede.info/220090.php festival music festival music http://www.1-music-de.info/book/festival-music phoenix service software nokia phoenix service software nokia http://www.german-software-test.info/224721.html

  21. 62.35.215.* 于 2007-07-07 02:51:08发表:

    offre de travail a distance offre de travail a distance http://www.job-ete.info/offre-de-travail-a-distance.asp reserver billet avion thailande reserver billet avion thailande http://www.1-cheapticketfr.info/today/reserver-billet-avion-thailande.asp job search tax deductions job search tax deductions http://www.1medical-jobs-es.info/2007/13337.php offerta lavoro bari addetto mensa offerta lavoro bari addetto mensa http://www.itlavoro.info/latest/15876.html related todo trabajo abc oferta viewofertas asp begin 348 related todo trabajo abc oferta viewofertas asp begin 348 http://www.1-trabajo.info/2007/related-todo-trabajo-abc-oferta-viewofertas-asp-begin-348 watashi wa watashi wa http://www.1occasion-voiture.info/122919 recherche travail et complicite recherche travail et complicite http://www.1-droit-travail.info/91840.php cheap pop concert ticket cheap pop concert ticket http://www.spainticket.info/online/cheap-pop-concert-ticket.asp coche loans bad credit coche loans bad credit http://www.1-seguro-coche.info/coche-loans-bad-credit annuncio lavoro ravenna veneto annuncio lavoro ravenna veneto http://www.lavoroit.info/15975.php

  22. 172.152.32.* 于 2007-07-07 02:21:59发表:

    toda clase pieza mercedes toda clase pieza mercedes http://www.compra-venta-coche1.info/3/136183.html musique mariage franche comte musique mariage franche comte http://www.ecouter-musique-es.info/book/202206.php job listings ontario job listings ontario http://www.german-paris-webjob.info/tag/64221.asp biglietto d augurio pasqua ritagliare biglietto d augurio pasqua ritagliare http://www.1-airlineticket-it.info/51106.asp concert ticket chicago concert ticket chicago http://www.1ticket-es.info/9/concert-ticket-chicago plan travail cuisine ardoise plan travail cuisine ardoise http://www.vetement-de-travail.info/5/93832.php online plane ticket online plane ticket http://www.1biglietto-aereo.info/online-plane-ticket.asp country music news country music news http://www.de-genre-music.info/tools/172489.asp auto mobile engel.de auto mobile engel.de http://www.auto-radio-de.info/auto-mobile-engel.de.asp tomtom karten usa tomtom karten usa http://www.deutschkarte.info/11390

  23. 204.120.195.* 于 2007-07-07 00:41:58发表:

    software and gestion and empresa software and gestion and empresa http://www.es-medical-billing-software.info/5/241489.php download software mp3 to amr download software mp3 to amr http://www.software-ita.info/download-software-mp3-to-amr job customer service job customer service http://www.1-jobsusa-de.info/online/job-customer-service.html programa para componer musica gratis programa para componer musica gratis http://www.buena-musica-1.info/docs/programa-para-componer-musica-gratis.php airline ticket to seattle airline ticket to seattle http://www.es-cheap-airlinetickets.info/tag/airline-ticket-to-seattle.php code du travail au senegal code du travail au senegal http://www.travailfr.info/88892 ticket sale ticket sale http://www.ticktackticket-es.info/posts/26097 job gastronomie stellenangebot gastro wien job gastronomie stellenangebot gastro wien http://www.1jobsearch-de.info/2007/66032.asp after coche bankruptcy loan refinance after coche bankruptcy loan refinance http://www.radio-coche-es.info/1/after-coche-bankruptcy-loan-refinance discount dog food discount dog food http://www.1food-de.info/274135.php

  24. 67.66.234.* 于 2007-07-06 23:54:43发表:

    dvd player software nt4 dvd player software nt4 http://www.de-nachschlagewerk-software.info/posts/dvd-player-software-nt4.html cheap air tickets cheap air tickets http://www.ticket-es-1.info/tag/14737.php feu le music hall feu le music hall http://www.yahoo-music-fr.info/ads/196004.php christian music chart christian music chart http://www.music-download-de.info/files/christian-music-chart software video motorola v3 software video motorola v3 http://www.it-software-pdf.info/3/software-video-motorola-v3.php contratto collettivo nazionale lavoro dell area dirigenza medica 2002 05 parte normativa contratto collettivo nazionale lavoro dell area dirigenza medica 2002 05 parte normativa http://www.annuncio-lavoro.info/contratto-collettivo-nazionale-lavoro-dell-area-dirigenza-medica.asp musik cd brenner musik cd brenner http://www.musikde.info/173370.asp gratis musik brenner gratis musik brenner http://www.1genre-music-de.info/docs/gratis-musik-brenner anti virus protection software anti virus protection software http://www.free-software-es.info/235110.html garde cheval travail ete garde cheval travail ete http://www.1-travailadomicile.info/garde-cheval-travail-ete.html