[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Libunwind-devel] [PATCH 08/11] configure: avoid using a shell function
From: |
Cody P Schafer |
Subject: |
[Libunwind-devel] [PATCH 08/11] configure: avoid using a shell function in autoconf |
Date: |
Mon, 10 Sep 2012 17:21:40 -0700 |
AC_DEFUN exsists for the purpose of creating functions in autoconf
scripts, use it instead of a shell function.
---
configure.in | 29 ++++++++++++++---------------
1 file changed, 14 insertions(+), 15 deletions(-)
diff --git a/configure.in b/configure.in
index 592f4f3..b226cf5 100644
--- a/configure.in
+++ b/configure.in
@@ -86,21 +86,20 @@ AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
#endif
]])], [ppc_bits=64], [ppc_bits=32])
-get_arch() {
- case "$1" in
- arm*) echo arm;;
- i?86) echo x86;;
- hppa*) echo hppa;;
- mips*) echo mips;;
- powerpc*) echo ppc$ppc_bits;;
- amd64) echo x86_64;;
- *) echo $1;;
- esac
-}
-
-build_arch=`get_arch $build_cpu`
-host_arch=`get_arch $host_cpu`
-target_arch=`get_arch $target_cpu`
+AC_DEFUN([SET_ARCH],[
+ AS_CASE([$1],
+ [arm*],[$2=arm],
+ [i?86],[$2=x86],
+ [hppa*],[$2=hppa],
+ [mips*],[$2=mips],
+ [powerpc*],[$2=ppc$ppc_bits],
+ [amd64],[$2=x86_64],
+ [$2=$1])
+]) # SET_ARCH
+
+SET_ARCH([$build_cpu],[build_arch])
+SET_ARCH([$host_cpu],[host_arch])
+SET_ARCH([$target_cpu],[target_arch])
AC_ARG_ENABLE(coredump,
AS_HELP_STRING([--enable-coredump],[building libunwind-coredump
library]),
--
1.7.11.3
[Libunwind-devel] [PATCH 09/11] configure: use AC_ARG_ENABLE's defaults when possible, Cody P Schafer, 2012/09/10
[Libunwind-devel] [PATCH 08/11] configure: avoid using a shell function in autoconf,
Cody P Schafer <=
[Libunwind-devel] [PATCH 03/11] ppc32: add used attribute to dmy_ctxt, Cody P Schafer, 2012/09/10
[Libunwind-devel] [PATCH 07/11] ppc64: remove compile warnings from wchar test., Cody P Schafer, 2012/09/10
[Libunwind-devel] [PATCH 04/11] ppc32: ppc64: test altivec support by running the compiler., Cody P Schafer, 2012/09/10
[Libunwind-devel] [PATCH 05/11] build: make libunwind-coredump build optional, Cody P Schafer, 2012/09/10