patches/gcc/3.4.6/720-all_sh-no-reorder-blocks.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 27 16:35:37 2008 +0000 (2008-07-27)
changeset 740 d26d8cc7c460
permissions -rw-r--r--
Fix building x86_64 on x86_64 (and hopefully all other *64 archs on the same *64):
- symlink all lib64/ dirs to the corresponding lib/ dir
Also, prevent gcc from installing some of its target libs outside of the sys-root, in the first place.
Thanks to Laurent DUFRECHOU for reporting the bug and testing the fix.

/trunk/scripts/build/cc_gcc.sh | 26 0 26 0 --------------------------
/trunk/scripts/crosstool.sh | 14 14 0 0 ++++++++++++++
2 files changed, 14 insertions(+), 26 deletions(-)
yann@402
     1
diff -durN gcc-3.4.6.orig/gcc/config/sh/sh.h gcc-3.4.6/gcc/config/sh/sh.h
yann@402
     2
--- gcc-3.4.6.orig/gcc/config/sh/sh.h	2006-01-12 02:20:32.000000000 +0100
yann@402
     3
+++ gcc-3.4.6/gcc/config/sh/sh.h	2007-08-15 23:03:09.000000000 +0200
yann@402
     4
@@ -422,6 +422,10 @@
yann@402
     5
 do {									\
yann@402
     6
   if (LEVEL)								\
yann@402
     7
     flag_omit_frame_pointer = -1;					\
yann@402
     8
+  if (LEVEL <= 2)							\
yann@402
     9
+    {									\
yann@402
    10
+      flag_reorder_blocks = 0;						\
yann@402
    11
+    }									\
yann@402
    12
   if (SIZE)								\
yann@402
    13
     target_flags |= SPACE_BIT;						\
yann@402
    14
   if (TARGET_SHMEDIA && LEVEL > 1)					\