Skip to content
Snippets Groups Projects
Commit 980ad384 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

configure update (MIXED_PRECISION and STATIC_MODES can now be used)

parent 931db72e
No related branches found
No related tags found
No related merge requests found
......@@ -92,6 +92,7 @@ AC_ARG_ENABLE(fixed-point, [ --enable-fixed-point Compile as fixed-point],
[if test "$enableval" = yes; then
AC_DEFINE([FIXED_POINT], , [Compile as fixed-point])
AC_DEFINE([DOUBLE_PRECISION], , [Compile as fixed-point])
AC_DEFINE([MIXED_PRECISION], , [Compile as fixed-point])
else
AC_DEFINE([FLOATING_POINT], , [Compile as floating-point])
fi],
......@@ -102,6 +103,11 @@ AC_ARG_ENABLE(fixed-point-debug, [ --enable-fixed-point-debug Debug fixed-poin
AC_DEFINE([FIXED_DEBUG], , [Debug fixed-point implementation])
fi])
AC_ARG_ENABLE(static-modes, [ --enable-static-modes],
[if test "$enableval" = yes; then
AC_DEFINE([STATIC_MODES], , [Static modes])
fi])
AC_CHECK_SIZEOF(short)
AC_CHECK_SIZEOF(int)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment