]> granicus.if.org Git - libvpx/commitdiff
Remove ppc64 (big endian) from configure
authorLuc Trudeau <luc@trud.ca>
Wed, 9 May 2018 19:08:53 +0000 (15:08 -0400)
committerJames Zern <jzern@google.com>
Fri, 11 May 2018 03:19:38 +0000 (03:19 +0000)
Remove big endian PowerPC 64 from configure, as this build is problematic and
not supported. PowerPC 64 will be limited to little endian (ppc64le).

BUG=webm:1525
BUG=webm:1508

Change-Id: Id6a86d5913192549e03ac8f77879ba7526b752c8

README
build/make/configure.sh
configure

diff --git a/README b/README
index a900c8077879f5ee1bb26bb4ac600f85e1d454fa..49407ed9ff33b652bea61d8246e8506e2404d9fb 100644 (file)
--- a/README
+++ b/README
@@ -76,7 +76,6 @@ COMPILING THE APPLICATIONS/LIBRARIES:
     armv8-linux-gcc
     mips32-linux-gcc
     mips64-linux-gcc
-    ppc64-linux-gcc
     ppc64le-linux-gcc
     sparc-solaris-gcc
     x86-android-gcc
index c4e3b514111b982f4952cacbc510c15170969614..f1d0e34c3f60168da9084302f1a82cb724b68cac 100644 (file)
@@ -719,11 +719,8 @@ process_common_toolchain() {
       *sparc*)
         tgt_isa=sparc
         ;;
-      power*64*-*)
-        tgt_isa=ppc64
-        ;;
-      power*)
-        tgt_isa=ppc
+      power*64le*-*)
+        tgt_isa=ppc64le
         ;;
       *mips64el*)
         tgt_isa=mips64
@@ -1221,7 +1218,7 @@ EOF
       check_add_asflags -march=${tgt_isa}
       check_add_asflags -KPIC
       ;;
-    ppc*)
+    ppc64le*)
       link_with_cc=gcc
       setup_gnu_toolchain
       check_gcc_machine_option "vsx"
index 35b703ac4c503694a59999f64e3803ea856a7b36..3a1a318c98eb352f2856b88fa0cb938837d9ef84 100755 (executable)
--- a/configure
+++ b/configure
@@ -116,7 +116,6 @@ all_platforms="${all_platforms} armv7s-darwin-gcc"
 all_platforms="${all_platforms} armv8-linux-gcc"
 all_platforms="${all_platforms} mips32-linux-gcc"
 all_platforms="${all_platforms} mips64-linux-gcc"
-all_platforms="${all_platforms} ppc64-linux-gcc"
 all_platforms="${all_platforms} ppc64le-linux-gcc"
 all_platforms="${all_platforms} sparc-solaris-gcc"
 all_platforms="${all_platforms} x86-android-gcc"