Ticket #3298: buildtools_gcc2_misc.patch
File buildtools_gcc2_misc.patch, 2.0 KB (added by , 14 years ago) |
---|
-
legacy/gcc/Makefile.in
141 141 then echo $$r/m4/m4 ; \ 142 142 else echo ${DEFAULT_M4} ; fi` 143 143 144 MAKEINFO = `if [ - f $$r/texinfo/makeinfo/Makefile] ; \145 then echo $$r/texinfo/makeinfo/makeinfo ; \146 else echo makeinfo ; fi`144 MAKEINFO = `if [ -x /usr/bin/makeinfo ] ; \ 145 then echo makeinfo ; \ 146 else echo $$r/texinfo/makeinfo/makeinfo ; fi` 147 147 148 148 # This just becomes part of the MAKEINFO definition passed down to 149 149 # sub-makes. It lets flags be given on the command line while still -
legacy/gcc/gcc/configure
3597 3597 tm_file=i386/freebsd.h 3598 3598 tmake_file=t-freebsd 3599 3599 ;; 3600 i[34567]86-*-darwin*) 3601 tm_file=i386/freebsd.h 3602 tmake_file=t-freebsd 3603 ;; 3600 3604 i[34567]86-*-netbsd*) 3601 3605 tm_file=i386/netbsd.h 3602 3606 tmake_file=t-netbsd -
legacy/gcc/gcc/configure.in
1206 1206 tmake_file=t-freebsd 1207 1207 ;; 1208 1208 changequote(,)dnl 1209 i[34567]86-*-darwin*) 1210 changequote([,])dnl 1211 tm_file=i386/freebsd.h 1212 tmake_file=t-freebsd 1213 ;; 1214 changequote(,)dnl 1209 1215 i[34567]86-*-netbsd*) 1210 1216 changequote([,])dnl 1211 1217 tm_file=i386/netbsd.h -
legacy/gcc/gcc/config/i386/i386.c
139 139 #define AT_BP(mode) (gen_rtx_MEM ((mode), frame_pointer_rtx)) 140 140 141 141 extern FILE *asm_out_file; 142 #ifndef __APPLE__ 142 143 extern char *strcat (); 144 #endif 143 145 144 146 static void ix86_epilogue PROTO((int)); 145 147 static void ix86_prologue PROTO((int));