Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stefan Strogin
flac
Commits
d01b13a7
Commit
d01b13a7
authored
Jul 18, 2001
by
Josh Coalson
Browse files
add --sse-os argument, remove -ffast-math from gcc CFLAGS
parent
021ad3bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.in
View file @
d01b13a7
...
...
@@ -64,6 +64,18 @@ AC_ARG_ENABLE(debug,
esac],[debug=false])
AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
AC_ARG_ENABLE(sse_os,
[ --sse-os Enable SSE support by asserting that the OS supports SSE instructions],
[case "${enableval}" in
yes) sse_os=true ;;
no) sse_os=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --sse-os) ;;
esac],[sse_os=false])
AM_CONDITIONAL(FLaC__SSE_OS, test x$sse_os = xtrue)
if test x$sse_os = xtrue ; then
AC_DEFINE(FLAC__SSE_OS)
fi
AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
...
...
@@ -129,7 +141,7 @@ CFLAGS="$CFLAGS -g -O0 -DDEBUG"
else
CFLAGS="$CFLAGS -O3 -DNDEBUG"
if test x$GCC = xyes; then
CFLAGS="$CFLAGS -fomit-frame-pointer -funroll-loops
-ffast-math
-finline-functions"
CFLAGS="$CFLAGS -fomit-frame-pointer -funroll-loops -finline-functions"
fi
fi
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment