Log inUsernamePassword
Log me on automatically each visit    
Register
Register
Log in to check your private messages
Log in to check your private messages
Zaurus 中文论坛 Forum Index » 开发编译

This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.
交叉编译uim-1.4.2
View previous topic :: View next topic  
Author Message
ccpaging



Joined: 07 Dec 2006
Posts: 757

小企鹅: 16604

PostPosted: 2008-Mar-08 Sat, pm3:34 Reply with quote
 Post subject: 交叉编译uim-1.4.2

关于交叉编译环境
pdaxrom为开发者做好了专用的开发环境,并生成vmware镜像文件,可以在vmware里边运行一个简单的linux for 686 pc,这个虚拟环境的设置与pdaxrom基本相同,例如:
1. framebuffer 640x480
2. kernel 2.6.11-m4
3. 基本的console环境
4. 基于kdrive的x-windows
5. 界面采用icewm、matchbox、openbox
6. 686的gcc builder,可以编译虚拟环境中使用的应用软件。
通过这个环境,可以演示pdaxrom在zaurus上的效果,可以十分简便地建议交叉编译环境。前文《交叉编译pdaxrom的硬件驱动程序 》 也是在这个环境中进行的。

在windows 2000/xp中建立pdaxrom交叉编译环境
首先需要在windows安装vmware workstation 5.x/6.x。
下载vmware iso镜像文件:
http://distro.ibiblio.org/pub/linux/distributions/pdaxrom/download/1.1.0beta1/pdaX86/vmware/Linux-pdaXrom-1.1.0beta1.tar.bz2
解压缩到vmware的my virtual machine目录。

运行vmware并打开pdaxrom的镜像文件Linux-pdaXrom,6.x以上的vmware会询问该镜像是拷贝还是迁移的,选择迁移。
pdaxrom镜像里边的vmware-tools估计是比较老的版本,跟现在使用的vmware不能配合,基本功能如主机/虚拟环境文件共享,nat网络接口都是具备的,usb device不支持,压缩整理镜像文件不支持。如果要重新编译,需要下载kernel source等,非常麻烦,还是将就用吧。毕竟我们的主要目标是zaurus,而不是完整的linux pc工作环境。
运行pdaxrom-linux前,在vmware的属性里边删除usb device,设置好共享目录。

下载gcc交叉编译工具:
http://distro.ibiblio.org/pub/linux/distributions/pdaxrom/download/1.1.0beta1/Zaurus-7x0-860/arm-cacko-linux-gnu-2.95.3-2.15-2.2.5-hardfloat-10.48_20.12.05.tar.bz2


进入pdaxrom linux,用户名:root,无密码:将交叉编译文件解压缩到根目录:

cd /

tar zvfx /mnt/hgfs/shared/arm-cacko-linux-gnu-2.95.3-2.15-2.2.5-hardfloat-10.48_20.12.05.tar.bz2



这个编译环境缺少文件libiconv.so.2:

http://ccpaging.osall.com/files/download.php?id=2590



解压缩后拷贝到

/opt/cross/arm/3.4.5-xscale-softvfp/lib/libiconv.so.2
chmod a+x /opt/cross/arm/3.4.5-xscale-softvfp/lib/libiconv.so.2


修改文件

/opt/cross/arm/3.4.5-xscale-softvfp/runsdk.sh

增加语句

export LD_LIBRARY_PATH=/opt/cross/arm/3.4.5-xscale-softvfp/lib

如果是编译QT应用程序,增加语句

# export QTDIR=/opt/cross/arm/3.4.5-xscale-softcfp/armv5tel-cacko-linux/qt
# export QMAKESPEC=/opt/cross/arm/3.4.5-xscale-softcfp/armv5tel-cacko-linux/qt/mkspecs/default
# export QT_LIBRARY_PATH=//opt/cross/arm/3.4.5-xscale-softcfp/armv5tel-cacko-linux/qt/lib




交叉编译hello, world

进入交叉编译环境

/opt/cross/arm/3.4.5-xscale-softvfp/runsdk.sh

显示
Type exit for leave armv5tel-cacko-linux cross environment.


生成hello.c,用编辑器编译也可以

cd ~

echo -e '#include "stdio.h"\n int main(){ printf("Hello World\\n"); }' > hello.c


编译hello.c

armv5tel-cacko-linux-gcc -o hello hello.c



看看生成的文件是否正确

file hello
显示

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


交叉编译完成后,一定记住推出交叉编译环境

exit



编译uim-1.4.2的linux 686版本

主要目的在于检查uim源代码是否编译,另外uim有个生成代码工具,要在这里生成,否则下一步交叉编译进行不下去。

下载源代码uim-1.4.2.tar.bz2,在HOME目录中建立uim子目录,把下载到的源代码拷贝到uim目录。

解压缩

cd ~/uim

tar jvfx uim-1.4.2.tar.bz2

把子目录uim-1.4.2更名为uim-1.4.2.686

mv uim-1.4.2 uim-1.4.2.686

建立文件config-686.sh,内容如下:

./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/sbin \
--with-anthy --with-x --without-gnome2 --without-scim --without-canna \
--without-mana --without-prime --with-xft --disable-emacs --enable-dict \
--disable-static --enable-shared
设置config-686.sh为可执行文件

chmod +x config-686.sh

开始编译

cd uim-1.4.2.686

../config-686.sh

make

一切顺利,说明uim的源代码可以编译。



编译uim-1.4.2的pdaxrom版本

解压缩

cd ~/uim

tar jvfx uim-1.4.2.tar.bz2

把子目录uim-1.4.2更名为uim-1.4.2.pdaxrom

mv uim-1.4.2 uim-1.4.2.pdaxrom

建立文件config-pdaxrom.sh,内容如下:

ac_cv_func_realloc_0_nonnull=yes ./configure --build=i686-host-linux-gnu \
--host=armv5tel-cacko-linux \
--target=armv5tel-cacko-linux \
--prefix=/opt/cross/arm/3.4.5-xscale-softvfp/armv5tel-cacko-linux \
--sysconfdir=/opt/cross/arm/3.4.5-xscale-softvfp/armv5tel-cacko-linux/etc \
--libexecdir=/opt/cross/arm/3.4.5-xscale-softvfp/armv5tel-cacko-linux/sbin \
--with-anthy --with-x --disable-emacs --enable-dict \
--disable-rpath disable-debug --enable-shared --disable-static --disable-gtk-doc \
--without-scim --without-canna --without-mana --without-prime --with-xft --enable-pref \
--enable-default-toolkit \
--x-includes=/opt/cross/arm/3.4.5-xscale-softvfp/armv5tel-cacko-linux/include \
--x-libraries=/opt/cross/arm/3.4.5-xscale-softvfp/armv5tel-cacko-linux/lib



设置config-pdaxrom.sh为可执行文件

chmod +x config-pdaxrom.sh

开始编译

cd uim-1.4.2.686

../config-pdaxrom.sh

make

编译完成后,可以把目标文件安装到/tmp目录,执行命令

make DESTDIR=/tmp install

后面就得准备strip目标文件和打包了。strip要进入交叉编译环境,命令:

armv5tel-cacko-linux-strip *



编译中会出现2个问题:

1. 某个内存申请的函数不存在,设置ac_cv_func_realloc_0_nonnull=yes,可以解决。

2. 编译data时,无法执行lt-uim-module-manager。因为这时生成的是zaurus上用的文件,在虚拟环境里自然无法执行。没办法,只好偷梁换柱,用686目录里边的同名文件更换,再次执行make。

_________________
SL-C1000, 1G CF, 1G SD
pdaxrom 1.1beta3
Roku Wifi Card(Used in Cacko 1.23 & pdaXrom 1.1 Beta3)
http://ccpaging.blog.ubuntu.org.cn/
http://ccpaging.osall.com/
http://blog.sina.com.cn/zaurus/
Back to top
View user's profile Send private message
btest



Joined: 22 Nov 2007
Posts: 175

小企鹅: 4014

PostPosted: 2008-Mar-18 Tue, am11:29 Reply with quote
 Post subject:

学习。。。。。 Very Happy
_________________
http://btest.blog.ubuntu.org.cn/
Back to top
View user's profile Send private message
Display posts from previous:     
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Zaurus 中文论坛 Forum Index » 开发编译 All times are GMT + 8 Hours
Page 1 of 1

 
Jump to:   
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum

[ 页面生成时间: 秒 ] :: [ 次查询 ] :: [ ]
Powered by phpBB © 2001, 2002 phpBB Group
iCGstation v1.0 Template By Ray © 2003, 2004 iOptional