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

« back to all changes in this revision

Viewing changes to README

  • Committer: Will Newton
  • Date: 2013-07-30 16:33:23 UTC
  • Revision ID: will.newton@linaro.org-20130730163323-msygsh41ti2hmmwz
Update README to reflect src/neon going away.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
strcpy(), strlen() for the ARM Cortex-A series of cores.
5
5
 
6
6
Various implementations of these routines are provided, including generic
7
 
implementations for ARMv7-A cores with/without Neon, an implementation tuned
8
 
for Cortex-A9 and generic implementations for cores supporting AArch64.
 
7
implementations for ARMv7-A cores with/without Neon, Thumb2 implementations
 
8
and generic implementations for cores supporting AArch64.
9
9
 
10
10
== Getting started ==
11
11
First configure and then install libcortex-strings.so.  To make other
26
26
The src directory contains different variants organised by the
27
27
implementation they run on and optional features used.  For example:
28
28
  * src/thumb-2  contains generic non-NEON routines for AArch32 (with Thumb-2).
29
 
  * src/neon  contains NEON based routines for AArch32.
30
29
  * src/linaro-a9  contains tuned routines for Cortex-A9 processors.
31
30
  * src/aarch64  contains generic routines for AArch64.
32
31