gcc35.patch 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. Index: config.guess
  2. --- config.guess.orig Thu Jan 30 23:32:36 2003
  3. +++ config.guess Wed Feb 5 09:54:43 2003
  4. @@ -189,7 +189,7 @@
  5. release='-gnu'
  6. ;;
  7. *)
  8. - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
  9. + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*//'`
  10. ;;
  11. esac
  12. # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
  13. Index: gcc/config/i386/sol2.h
  14. --- gcc/config/i386/sol2.h.orig 2004-06-14 19:31:27 +0200
  15. +++ gcc/config/i386/sol2.h 2004-06-21 09:53:21 +0200
  16. @@ -64,6 +64,8 @@
  17. /* The Solaris assembler does not support .quad. Do not use it. */
  18. #undef ASM_QUAD
  19. +#undef DEFAULT_PCC_STRUCT_RETURN
  20. +#define DEFAULT_PCC_STRUCT_RETURN 1
  21. /* The Solaris assembler wants a .local for non-exported aliases. */
  22. #define ASM_OUTPUT_DEF_FROM_DECLS(FILE, DECL, TARGET) \
  23. Index: gcc/system.h
  24. --- gcc/system.h.orig 2003-08-23 20:03:05.000000000 +0200
  25. +++ gcc/system.h 2003-09-03 20:02:11.000000000 +0200
  26. @@ -319,10 +319,6 @@
  27. extern char *strstr (const char *, const char *);
  28. #endif
  29. -#ifdef HAVE_MALLOC_H
  30. -#include <malloc.h>
  31. -#endif
  32. -
  33. #if defined (HAVE_DECL_MALLOC) && !HAVE_DECL_MALLOC
  34. extern void *malloc (size_t);
  35. #endif
  36. Index: gcc/config/alpha/osf.h
  37. --- gcc/config/alpha/osf.h.orig 2003-12-12 02:19:23.000000000 +0100
  38. +++ gcc/config/alpha/osf.h 2004-04-26 21:25:14.000000000 +0200
  39. @@ -78,7 +78,7 @@
  40. constructor and call-frame data structures are not accidentally
  41. overridden. */
  42. #define LINK_SPEC \
  43. - "-G 8 %{O*:-O3} %{!O*:-O1} -S %{static:-non_shared} \
  44. + "-oldstyle_liblookup %{!o:-o a.out} -G 8 %{O*:-O3} %{!O*:-O1} -S %{static:-non_shared} \
  45. %{!static:%{shared:-shared -hidden_symbol _GLOBAL_*} \
  46. %{!shared:-call_shared}} %{pg} %{taso} %{rpath*}"