23
by Michael Hope
Bump the version number to show that its from bzr. Change the default CPU to the A9. Tune for the given CPU. |
1 |
AC_INIT(cortex-strings, 0.2~bzr) |
9
by Michael Hope
Added comments. General tidy up. |
2 |
AM_INIT_AUTOMAKE(foreign subdir-objects color-tests) |
7
by Michael Hope
Pulled in the routines and packaged them up. |
3 |
AC_CONFIG_HEADERS([config.h]) |
4 |
AC_CONFIG_FILES(Makefile) |
|
5 |
AC_PROG_LIBTOOL
|
|
6 |
AM_PROG_AS
|
|
11
by Michael Hope
Added GLIBC add-on support |
7 |
|
8 |
AC_ARG_WITH([cpu], |
|
9 |
AS_HELP_STRING([--with-cpu=CPU], |
|
23
by Michael Hope
Bump the version number to show that its from bzr. Change the default CPU to the A9. Tune for the given CPU. |
10 |
[select code for CPU variant @<:@default=cortex-a9@:>@]]), |
11
by Michael Hope
Added GLIBC add-on support |
11 |
[dnl |
12 |
case "$withval" in
|
|
13 |
yes|'') AC_MSG_ERROR([--with-cpu requires an argument]) ;; |
|
14 |
no) ;; |
|
15 |
*) submachine="$withval" ;; |
|
16 |
esac |
|
17 |
], |
|
23
by Michael Hope
Bump the version number to show that its from bzr. Change the default CPU to the A9. Tune for the given CPU. |
18 |
[submachine=cortex-a9]) |
11
by Michael Hope
Added GLIBC add-on support |
19 |
|
20 |
AC_SUBST(submachine) |
|
21 |
||
22 |
AC_ARG_WITH([neon], |
|
23 |
AC_HELP_STRING([--with-neon], |
|
24 |
[include NEON specific routines @<:@default=yes@:>@]), |
|
25 |
[with_neon=$withval], |
|
26 |
[with_neon=yes]) |
|
27 |
AC_SUBST(with_neon) |
|
16
by Michael Hope
Added autogen.sh. Tidied up the NEON configure rules using AM_CONDITIONAL. Made make distcheck pass. |
28 |
AM_CONDITIONAL(WITH_NEON, test x$with_neon = xyes) |
11
by Michael Hope
Added GLIBC add-on support |
29 |
|
7
by Michael Hope
Pulled in the routines and packaged them up. |
30 |
AC_OUTPUT
|