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

« back to all changes in this revision

Viewing changes to README

Update documentation to include AArch64.

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, Thumb2 implementations
8
 
and generic implementations for cores supporting AArch64.
 
7
implementations for ARMv7-A cores with/without Neon, an implementation tuned
 
8
for Cortex-A9 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.
29
30
  * src/linaro-a9  contains tuned routines for Cortex-A9 processors.
30
31
  * src/aarch64  contains generic routines for AArch64.
31
32