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

« back to all changes in this revision

Viewing changes to README

  • Committer: Michael Hope
  • Date: 2011-09-25 21:09:13 UTC
  • Revision ID: michael.hope@linaro.org-20110925210913-6lmj2rwbamnbjedu
Bumped the version as we're almost at 1.0.  Tidied up the README.  Added an overview comment to one of the scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
= Cortex-A String Routines =
2
2
 
3
3
This package contains optimised string routines including memcpy(),
4
 
memset(), strcpy(), strlen(), and for the ARM Cortex-A series
5
 
of processors.  Variants are available for the Cortex-A8 and
6
 
Cortex-A9, as well as variants that make use of the optional NEON
7
 
unit.
 
4
memset(), strcpy(), strlen() for the ARM Cortex-A series
 
5
of processors.  These routines were optimised for the Cortex-A9, work
 
6
well on the Cortex-A8, and include variants that can make use of the
 
7
NEON SIMD unit.
8
8
 
9
9
== Getting started ==
10
10
First configure and then install libcortex-strings.so.  To make other
11
11
applications use this library, either add -lcortex-strings to the link
12
12
command or use LD_PRELOAD to load the library into existing applications.
13
13
 
 
14
Our intent is to get these routines into the common C libraries such
 
15
as GLIBC, Bionic, and Newlib.  Your system may already include them!
 
16
 
14
17
== Contents ==
15
18
 * src/  contains the routines themselves
16
19
 * tests/  contains the unit tests