From 8e14d188deb310a20ba7aa66a01f1a1eab10235e Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 3 Nov 2011 13:49:00 -0700 Subject: [PATCH] configure: Use i686 as the CPU type instead of i386 Seems to prevent the warning about linking bitcode with different triples. --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 7aad41ad126..5052c15578b 100755 --- a/configure +++ b/configure @@ -204,7 +204,7 @@ esac case $CFG_CPUTYPE in i386 | i486 | i686 | i786 | x86) - CFG_CPUTYPE=i386 + CFG_CPUTYPE=i686 ;; xscale | arm) @@ -213,7 +213,7 @@ case $CFG_CPUTYPE in x86_64 | x86-64 | x64) # FIME: Once we do a 64-bit build this should be x86_64 - CFG_CPUTYPE=i386 + CFG_CPUTYPE=i686 ;; *)