patches/gcc/4.4.4/130-cross-compile.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Oct 12 23:47:24 2010 +0200 (2010-10-12)
branch1.8
changeset 2151 ee9ce2595560
parent 1948 d341be24dc68
permissions -rw-r--r--
cc/gcc: fix 4.4.4 patchset

Most patches contained two spurious first lines.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
(transplanted from ada9128c98b89569b54aefe9b7a4b0bd2bd20023)
     1 diff -durN gcc-4.4.4.orig/gcc/configure gcc-4.4.4/gcc/configure
     2 --- gcc-4.4.4.orig/gcc/configure	2009-10-19 14:15:27.000000000 +0200
     3 +++ gcc-4.4.4/gcc/configure	2010-05-16 19:11:00.000000000 +0200
     4 @@ -13997,7 +13997,7 @@
     5  	    | powerpc*-*-*,powerpc64*-*-*)
     6  		CROSS="$CROSS -DNATIVE_CROSS" ;;
     7  	esac
     8 -elif test "x$TARGET_SYSTEM_ROOT" != x; then
     9 +elif test "x$TARGET_SYSTEM_ROOT" != x -o $build != $host; then
    10          SYSTEM_HEADER_DIR=$build_system_header_dir
    11  fi
    12  
    13 diff -durN gcc-4.4.4.orig/gcc/configure.ac gcc-4.4.4/gcc/configure.ac
    14 --- gcc-4.4.4.orig/gcc/configure.ac	2009-10-19 14:15:27.000000000 +0200
    15 +++ gcc-4.4.4/gcc/configure.ac	2010-05-16 19:11:00.000000000 +0200
    16 @@ -1720,7 +1720,7 @@
    17  	    | powerpc*-*-*,powerpc64*-*-*)
    18  		CROSS="$CROSS -DNATIVE_CROSS" ;;
    19  	esac
    20 -elif test "x$TARGET_SYSTEM_ROOT" != x; then
    21 +elif test "x$TARGET_SYSTEM_ROOT" != x -o $build != $host; then
    22          SYSTEM_HEADER_DIR=$build_system_header_dir 
    23  fi
    24  
    25 diff -durN gcc-4.4.4.orig/gcc/unwind-dw2.c gcc-4.4.4/gcc/unwind-dw2.c
    26 --- gcc-4.4.4.orig/gcc/unwind-dw2.c	2010-01-20 09:39:18.000000000 +0100
    27 +++ gcc-4.4.4/gcc/unwind-dw2.c	2010-05-16 19:11:00.000000000 +0200
    28 @@ -329,9 +329,11 @@
    29  }
    30  #endif
    31  
    32 +#ifndef inhibit_libc
    33  #ifdef MD_UNWIND_SUPPORT
    34  #include MD_UNWIND_SUPPORT
    35  #endif
    36 +#endif
    37  
    38  /* Extract any interesting information from the CIE for the translation
    39     unit F belongs to.  Return a pointer to the byte after the augmentation,