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

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Will Newton
  • Date: 2013-03-26 10:19:35 UTC
  • Revision ID: will.newton@linaro.org-20130326101935-c4i81dht78p9voqf
Integrate NEON/VFP/ARM optimised memcpy implementation.
Add --with-vfp configure option to allow testing VFP code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
AC_SUBST(with_neon)
78
78
AM_CONDITIONAL(WITH_NEON, test x$with_neon = xyes)
79
79
 
 
80
AC_ARG_WITH([vfp],
 
81
            AC_HELP_STRING([--with-vfp],
 
82
                           [include VFP specific routines @<:@default=yes@:>@]),
 
83
            [with_vfp=$withval],
 
84
            [with_vfp=yes])
 
85
AC_SUBST(with_vfp)
 
86
AM_CONDITIONAL(WITH_VFP, test x$with_vfp = xyes)
 
87
 
80
88
AC_OUTPUT