config/arch/powerpc.in.2
author Matthieu Crapet <mcrapet@gmail.com>
Wed Jun 06 12:03:12 2012 +0200 (2012-06-06)
changeset 2991 252ade1e9e17
parent 2484 d1a8c2ae7946
permissions -rw-r--r--
libc/eglibc: fix missing LIBC_TRY_CC_OPTION definition (eglibc 2.15)

Upstream SVN is currently broken:
http://www.eglibc.org/svn/branches/eglibc-2_15/libc/

LIBC_TRY_CC_OPTION macro is not defined in aclocal.m4.
This patch fix the configure script.

Once upstream branch will be fixed this patch could be reverted.

Related patch (committed to eglibc trunk):
Use autoconf macro for testing compiler options with empty input
http://sourceware.org/ml/libc-alpha/2012-03/msg00816.html

Signed-off-by: Matthieu Crapet <mcrapet@gmail.com>

diff -r 1f6c8e4b2b92 -r d10afc5bcc25
patches/eglibc/2_15/110-aclocal-LIBC_TRY_CC_OPTION.patch
     1 # powerpc specific configuration file
     2 
     3 config ARCH_powerpc_ABI
     4     string
     5     default ""     if ARCH_powerpc_ABI_DEFAULT
     6     default "eabi" if ARCH_powerpc_ABI_EABI
     7     default "spe"  if ARCH_powerpc_ABI_SPE
     8 
     9 choice
    10     bool
    11     prompt "ABI"
    12     default ARCH_powerpc_ABI_DEFAULT
    13 
    14 config ARCH_powerpc_ABI_DEFAULT
    15     bool
    16     prompt "default"
    17     help
    18       The default ABI (System V.4).
    19 
    20 config ARCH_powerpc_ABI_EABI
    21     bool
    22     prompt "EABI"
    23     depends on BARE_METAL
    24     help
    25       The Embedded ABI (stack alignment of 8 bytes, etc).
    26 
    27 config ARCH_powerpc_ABI_SPE
    28     bool
    29     prompt "SPE"
    30     help
    31       Add support for the Signal Processing Engine.  This will set up
    32       the toolchain so that it supports the SPE ABI extensions. This
    33       mainly targets Freescale e500 processors.
    34       
    35       Setting this option will append "spe" to the end of your target
    36       tuple name (e.g., powerpc-e500v2-linux-gnuspe) so that the gcc
    37       configure/build system will know to include SPE ABI support. It
    38       will also automatically add "-mabi=spe -mspe" to your TARGET_CFLAGS,
    39       and "--enable-e500_double" to your CC_EXTRA_CONFIG_ARRAY, so you
    40       do not need to explicitly add them.
    41 
    42 endchoice