1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
= Random notes =
As at eglibc_2.12.1-0ubuntu1, a good configure line for eglibc is:
CC="gcc-4.4 -fno-stack-protector -U_FORTIFY_SOURCE" \
CXX="g++-4.4 -fno-stack-protector -U_FORTIFY_SOURCE" \
AUTOCONF=false \
configure --host=arm-linux-gnueabi --build=arm-linux-gnueabi \
--prefix=$HOME/opt --without-cvs \
--enable-add-ons=libidn,ports,nptl,cortex-strings \
--enable-profile --without-selinux --enable-stackguard-randomization \
--with-cpu=cortex-a8
As at 2011-08-30, the routines are:
* From Linaro:
* memchr
* strchr
* strlen
* From Bionic:
* memcpy
* memset
* From ARM:
* strcmp
* strcpy
* strlen
|