config/arch/powerpc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Oct 22 20:50:10 2008 +0000 (2008-10-22)
changeset 962 2ba4393e0441
parent 898 fe3eda71a9d0
child 1181 2e88d85d6ffc
permissions -rw-r--r--
Make Super-H finally compile a complete (C-only) toolchain:
- new, un-tested patches
- an sh4 sample to work on, and to try to reproduce later.

/trunk/patches/glibc/2.7/250-sh-chop-linux-version.patch | 49 49 0 0 ++
/trunk/patches/glibc/2.7/240-sh-lowlevellock-asm.patch | 56 56 0 0 +++
/trunk/patches/glibc/2.7/270-sh-fix-procfs.patch | 11 11 0 0 +
/trunk/patches/glibc/2.7/280-sh-fix-kernel-heders-location.patch | 23 23 0 0 +
/trunk/patches/glibc/2.7/260-sh-syscall-error-path.patch | 26 26 0 0 +
/trunk/samples/sh4-unknown-linux-gnu/crosstool.config | 311 311 0 0 ++++++++++++++
/trunk/samples/sh4-unknown-linux-gnu/reported.by | 3 3 0 0 +
7 files changed, 479 insertions(+)
yann@520
     1
# powerpc specific configuration file
yann@628
     2
yann@628
     3
config ARCH_powerpc
yann@631
     4
    select ARCH_SUPPORT_ABI
yann@631
     5
    select ARCH_SUPPORT_CPU
yann@631
     6
    select ARCH_SUPPORT_TUNE
yann@630
     7
    help
yann@630
     8
      The PowerPC architecture, as defined by:
yann@630
     9
        http://www.ibm.com/developerworks/eserver/articles/archguide.html
yann@792
    10
yann@792
    11
config ARCH_POWERPC_SPE
yann@792
    12
    bool
yann@846
    13
    prompt "Enable SPE support"
yann@792
    14
    default n
yann@792
    15
    help
yann@815
    16
      Add support for the Signal Processing Engine.  This will set up
yann@815
    17
      the toolchain so that it supports the SPE ABI extensions. This
yann@815
    18
      mainly targets Freescale e500 processors.
yann@815
    19
yann@815
    20
      Setting this option will append "spe" to the end of your target
yann@815
    21
      tuple name (e.g., powerpc-e500v2-linux-gnuspe) so that the gcc
yann@815
    22
      configure/build system will know to include SPE ABI support.
yann@815
    23
      It will also automatically add "-mabi=spe -mspe" to your
yann@815
    24
      TARGET_CFLAGS, and "--enable-e500_double" to your CC_EXTRA_CONFIG,
yann@815
    25
      so you do not need to explicitly add them.