scripts/build/arch/x86.sh
author "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
Thu Aug 18 16:05:48 2011 +0200 (2011-08-18)
changeset 2612 a52574521bea
parent 964 0535f7bf1069
child 2759 d063b1ae8c1b
permissions -rw-r--r--
debug/gdb: update GDB revisions

Update GDB with the latest available revisions.

Signed-off-by: "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
     1 # Compute x86-specific values
     2 
     3 # This one really needs a little love! :-(
     4 
     5 CT_DoArchTupleValues() {
     6 
     7     # Override the architecture part of the tuple:
     8     if [ "${CT_ARCH_64}" = "y" ]; then
     9         CT_TARGET_ARCH=x86_64
    10     else
    11         arch="${CT_ARCH_ARCH}"
    12         [ -z "${arch}" ] && arch="${CT_ARCH_TUNE}"
    13         case "${arch}" in
    14             "")                           CT_TARGET_ARCH=i386;;
    15             i386|i486|i586|i686)          CT_TARGET_ARCH="${arch}";;
    16             winchip*)                     CT_TARGET_ARCH=i486;;
    17             pentium|pentium-mmx|c3*)      CT_TARGET_ARCH=i586;;
    18             pentiumpro|pentium*|athlon*)  CT_TARGET_ARCH=i686;;
    19             *)                            CT_TARGET_ARCH=i586;;
    20         esac
    21     fi
    22 }