Fri 21 Nov 2008

    在ARM上移植openssl

    移植过程如下:

    wget http://www.openssl.org/source/openssl-0.9.8h.tar.gz
    tar zxvf openssl-0.9.8h.tar.gz
    cd openssl-0.9.8h/
    ./Configure --prefix=/opt/rootfs/arm/openssl/ os/compiler:arm-li

    (Read more...)

    Tags: Embedded, gcc, arm 评论(0) 阅读(12)

    Mon 17 Nov 2008

    cross compile net-snmp for mips

    I'm trying to cross-compile NetSNMP 5.4.2 for running on an embedded system (mips).

    由于我使用的CPU是little endian 交叉编译工具是 mipsel-linux

    但是如果你用的是Big endian,交叉编译用具就可能是 mips-linux

    如果你是ARM平台的话,相应的改为 a

    (Read more...)

    Tags: Embedded, gcc, snmp, mips 评论(0) 阅读(25)

    Fri 15 Aug 2008

    Cross Compile SSH Server Dropbear For ARM

    编译环境

    • ubuntu 8.04
    • gcc 4.2.3
    • arm_v5t_le-gcc 3.4.3

    (Read more...)

    Tags: 学习笔记, ubuntu, Embedded, gcc 评论(0) 阅读(235)

    Sat 02 Aug 2008

    这几天在做交叉编译的时候,对configure的build, target和host 一直搞不明白,搜了些资料记录一下:

    一、 http://en.wikipedia.org/wiki/Cross_compile

    The GNU autotools packages (i.e. autoconf, automake, and libtool) use the notion of a build platform, a host platform, and a target platform.

    The build platform is where the code is actually compiled.

    The host platform is where the compiled code will execute.

    T

    (Read more...)

    Tags: ubuntu, Embedded, gcc 评论(0) 阅读(305)

    Fri 01 Aug 2008

    Howto-Cross-Compile-Python2.5.2-For-ARM

    Cross Compile Python 2.5.2 For ARM

    本文排版有问题可以看排版后的: http://wiki.woodpecker.org.cn/moin/Cross_Compile_Python_2.5.2_For_ARM

    编译环境:

    ubuntu 8.04, gcc 4.2.3, arm_v5t_le-gcc 3.4.3

    1. 下载Python,http://www.python.org/download/ 下载Python源码,我下载的:

      http://www.python.org/ftp/python/2.5.2/Python-2.5.2.tar.bz2
      

    (Read more...)

    Tags: ubuntu, python, Embedded, gcc 评论(0) 阅读(270)