arch/powerpc/config.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Aug 27 16:24:24 2008 +0000 (2008-08-27)
changeset 815 6236ce3be104
parent 792 da7a34dfa178
child 846 23d2d8defa03
permissions -rw-r--r--
eglibc and PowerPC SPE documentaion, courtesy Nate CASE.

/trunk/config/libc.in | 7 7 0 0 +++++++
/trunk/arch/powerpc/config.in | 11 10 1 0 ++++++++++-
2 files changed, 17 insertions(+), 1 deletion(-)
     1 # powerpc specific configuration file
     2 
     3 config ARCH_powerpc
     4     select ARCH_SUPPORT_ABI
     5     select ARCH_SUPPORT_CPU
     6     select ARCH_SUPPORT_TUNE
     7     help
     8       The PowerPC architecture, as defined by:
     9         http://www.ibm.com/developerworks/eserver/articles/archguide.html
    10 
    11 config ARCH_POWERPC_SPE
    12     bool
    13     prompt "Enable SPE support (EXPERIMENTAL)"
    14     depends on EXPERIMENTAL
    15     default n
    16     help
    17       Add support for the Signal Processing Engine.  This will set up
    18       the toolchain so that it supports the SPE ABI extensions. This
    19       mainly targets Freescale e500 processors.
    20 
    21       Setting this option will append "spe" to the end of your target
    22       tuple name (e.g., powerpc-e500v2-linux-gnuspe) so that the gcc
    23       configure/build system will know to include SPE ABI support.
    24       It will also automatically add "-mabi=spe -mspe" to your
    25       TARGET_CFLAGS, and "--enable-e500_double" to your CC_EXTRA_CONFIG,
    26       so you do not need to explicitly add them.