mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-01 00:10:13 +01:00
Bug #4414, reviewed by otaylor, cworth.
Remove -msse from the MMX CFLAGS as it causes gcc to emit SSE instructions, however the detection code only checks for processors supporting MMX and does not require SSE.
This commit is contained in:
parent
b7c02401b9
commit
0978f97e9e
2 changed files with 9 additions and 1 deletions
|
|
@ -1,3 +1,11 @@
|
|||
2005-09-18 Billy Biggs <vektor@dumbterm.net>
|
||||
|
||||
Bug #4414, reviewed by otaylor, cworth.
|
||||
|
||||
* configure.in: Remove -msse from the MMX CFLAGS as it causes
|
||||
gcc to emit SSE instructions, however the detection code only
|
||||
checks for processors supporting MMX and does not require SSE.
|
||||
|
||||
2005-09-16 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* src/cairo-path-stroke.c: (_cairo_stroker_start_dash),
|
||||
|
|
|
|||
|
|
@ -474,7 +474,7 @@ AC_SUBST(PKGCONFIG_REQUIRES)
|
|||
dnl ===========================================================================
|
||||
dnl Check for MMX
|
||||
|
||||
MMX_CFLAGS="-mmmx -msse -Winline --param inline-unit-growth=10000 --param large-function-growth=10000"
|
||||
MMX_CFLAGS="-mmmx -Winline --param inline-unit-growth=10000 --param large-function-growth=10000"
|
||||
|
||||
have_mmx_intrinsics=no
|
||||
AC_MSG_CHECKING(For MMX/SSE intrinsics in the compiler)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue