From 73b2f576cebb236108376e92e9fc04294886dd14 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Wed, 21 Dec 2016 15:31:14 +0000 Subject: [PATCH] properly_detect_x32 Gbp-Pq: Name properly_detect_x32.patch --- common/common.h | 2 +- configure | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/common/common.h b/common/common.h index 3a74c9e..110627d 100644 --- a/common/common.h +++ b/common/common.h @@ -1015,7 +1015,7 @@ static int ALWAYS_INLINE x264_predictor_clip( int16_t (*dst)[2], int16_t (*mvc)[ return cnt; } -#if ARCH_X86 || ARCH_X86_64 +#if ARCH_X86 || ARCH_X86_64 || ARCH_X32 #include "x86/util.h" #endif diff --git a/configure b/configure index 77f132d..7d271d5 100755 --- a/configure +++ b/configure @@ -669,6 +669,10 @@ esac LDFLAGS="$LDFLAGS $libm" +case `$CC -dumpmachine` in + *gnux32) host_cpu=x32 +esac + stack_alignment=4 case $host_cpu in i*86) @@ -725,6 +729,10 @@ case $host_cpu in ASFLAGS="$ASFLAGS -f elf64" fi ;; + x32) + ARCH="X32" + CFLAGS="$CFLAGS -fPIC" + ;; powerpc*) ARCH="PPC" if [ $asm = auto ] ; then -- 2.30.2