Various patches

John Tapsell johnflux at gmail.com
Wed Sep 24 09:35:35 PDT 2008


2008/9/24 Mikhail Gusarov <dottedmag at dottedmag.net>:

>  CS> Why not just put more effort into making sure OpenSSL is portable?
>
> It is already portable, just unnecessary.

For what it's worth, I worked out how to compile openssl for the arm.
It doesn't use autotools etc and my original mistake was to try to
specify the target type which doesn't seem to work.  Also CC
environment variables are ignored etc.  Anyway, for future reference:

./Configure dist --prefix=$DISCIMAGE/usr/local
make CC="${CROSS_COMPILE}gcc" AR="${CROSS_COMPILE}ar r"
RANLIB="${CROSS_COMPILE}ranlib"
make CC="${CROSS_COMPILE}gcc" AR="${CROSS_COMPILE}ar r"
RANLIB="${CROSS_COMPILE}ranlib" install

CROSS_COMPILE being your toolchain.

John



More information about the xorg mailing list