~linaro-toolchain-dev/cortex-strings/trunk

« back to all changes in this revision

Viewing changes to NOTES

  • Committer: Michael Hope
  • Date: 2010-09-06 03:41:48 UTC
  • Revision ID: michael.hope@linaro.org-20100906034148-s7wgv5lz1qnh5xj7
Added GLIBC add-on support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
= Random notes =
 
2
As at eglibc_2.12.1-0ubuntu1, a good configure line for eglibc is:
 
3
 
 
4
CC="gcc-4.4 -fno-stack-protector -U_FORTIFY_SOURCE" \
 
5
            CXX="g++-4.4 -fno-stack-protector -U_FORTIFY_SOURCE" \
 
6
            AUTOCONF=false \
 
7
            configure --host=arm-linux-gnueabi --build=arm-linux-gnueabi \
 
8
            --prefix=$HOME/opt --without-cvs \
 
9
            --enable-add-ons=libidn,ports,nptl,cortexcpu \
 
10
            --enable-profile --without-selinux --enable-stackguard-randomization \
 
11
            --with-cpu=cortex-a8
 
12
 
 
13