about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2017-06-08 15:39:03 -0400
committerZack Weinberg <zackw@panix.com>2017-06-08 15:39:03 -0400
commit5046dbb4a7eba5eccfd258f92f4735c9ffc8d069 (patch)
tree4470480d904b65cf14ca524f96f79eca818c3eaf /sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
parent199fc19d3aaaf57944ef036e15904febe877fc93 (diff)
downloadglibc-5046dbb4a7eba5eccfd258f92f4735c9ffc8d069.tar.gz
glibc-5046dbb4a7eba5eccfd258f92f4735c9ffc8d069.tar.xz
glibc-5046dbb4a7eba5eccfd258f92f4735c9ffc8d069.zip
Prepare for radical source tree reorganization. zack/build-layout-experiment
All top-level files and directories are moved into a temporary storage
directory, REORG.TODO, except for files that will certainly still
exist in their current form at top level when we're done (COPYING,
COPYING.LIB, LICENSES, NEWS, README), all old ChangeLog files (which
are moved to the new directory OldChangeLogs, instead), and the
generated file INSTALL (which is just deleted; in the new order, there
will be no generated files checked into version control).
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac')
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac36
1 files changed, 0 insertions, 36 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac b/sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
deleted file mode 100644
index f9cba6e15d..0000000000
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
+++ /dev/null
@@ -1,36 +0,0 @@
-GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
-# Local configure fragment for sysdeps/unix/sysv/linux/powerpc/powerpc64/.
-
-LIBC_SLIBDIR_RTLDDIR([lib64], [lib64])
-
-# Define default-abi according to compiler flags.
-AC_CACHE_CHECK([whether the compiler is using the PowerPC64 ELFv2 ABI],
-  [libc_cv_ppc64_elfv2_abi],
-  [AC_EGREP_CPP(yes,[#if _CALL_ELF == 2
-                      yes
-                     #endif
-  ], libc_cv_ppc64_elfv2_abi=yes, libc_cv_ppc64_elfv2_abi=no)])
-if test $libc_cv_ppc64_elfv2_abi = yes; then
-  LIBC_CONFIG_VAR([default-abi], [64-v2])
-  # For shlib-versions.
-  AC_DEFINE(HAVE_ELFV2_ABI)
-else
-  LIBC_CONFIG_VAR([default-abi], [64-v1])
-  # Compiler that do not support ELFv2 ABI does not define _CALL_ELF
-  AC_CACHE_CHECK([whether the compiler defines _CALL_ELF],
-    [libc_cv_ppc64_def_call_elf],
-    [AC_EGREP_CPP(yes,[#ifdef _CALL_ELF
-                         yes
-                       #endif
-    ], libc_cv_ppc64_def_call_elf=yes, libc_cv_ppc64_def_call_elf=no)])
-  if test $libc_cv_ppc64_def_call_elf = no; then
-    libc_extra_cppflags="$libc_extra_cppflags -D_CALL_ELF=1"
-  fi
-fi
-# Set minimum kernel version for ppc64le.
-AC_CACHE_CHECK([the machine type to set minimum kernel version],
-  [libc_cv_ppc64_le],
-  [AC_EGREP_CPP(yes,[#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
-                      yes
-                     #endif
-  ], arch_minimum_kernel=3.10.0, libc_cv_ppc64_le=no)])