pixman: Branch 'master'

Søren Sandmann Pedersen sandmann at kemper.freedesktop.org
Mon Jul 20 17:18:18 PDT 2009


 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 767542cfb955ba22dad1259eff8a2fe16e7b8ba4
Author: Adrian Bunk <adrian.bunk at movial.com>
Date:   Mon Jul 20 20:16:32 2009 -0400

    Fix NEON build for older ARM CPUs
    
    The pld instruction used in the NEON assembler code is only available
    for ARMv5e and >= ARMv6.
    
    Set -mcpu=cortex-a8 when compiling the source file (similar to what is
    already done for the SIMD build).

diff --git a/configure.ac b/configure.ac
index 76cf691..5a49a6c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -384,7 +384,7 @@ AM_CONDITIONAL(USE_ARM_SIMD, test $have_arm_simd = yes)
 
 dnl ==========================================================================
 dnl Check for ARM NEON instructions
-ARM_NEON_CFLAGS="-mfpu=neon"
+ARM_NEON_CFLAGS="-mfpu=neon -mcpu=cortex-a8"
 
 have_arm_neon=no
 AC_MSG_CHECKING(whether to use ARM NEON)


More information about the xorg-commit mailing list