aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2006-10-21configure.in: Require GMP-4.1+ and MPFR-2.2+.Kaveh R. Ghazi1-0/+6
* configure.in: Require GMP-4.1+ and MPFR-2.2+. Don't check need_gmp anymore. * configure: Regenerate. gcc: * Makefile.in (LIBS): Add $(GMPLIBS). * doc/install.texi: Update GMP and MPFR requirements. * doc/sourcebuild.texi (need_gmp): Delete. gcc/fortran: * Make-lang.in (F95_LIBS): Delete. * f951$(exeext): Use $(LIBS) instead of $(F95_LIBS). * config-lang.in (need_gmp): Delete. From-SVN: r117933
2006-10-19invoke.texi (Score Options): New section.Chen Liqin1-4/+0
* doc/invoke.texi (Score Options): New section. * doc/md.texi (Score family): New section to document constraints. * config/score/t-score-elf: Fix spelling typo. * config/score/score.c: Add TARGET_DEFAULT_TARGET_FLAGS macro. * config/score/score.h: Fix spelling typo. * config/score/score-mdaux.c: Remove TARGET_NOPINDEX condition. * config/score/score.opt: Remove -mnpi -mnuls -mSCORE5/5U -mSCORE7 options. From-SVN: r117882
2006-10-16MAINTAINERS (Write After Approval): Add myself.Tobias Burnus1-0/+4
2006-10-16 Tobias Burnus <burnus@net-b.de> * MAINTAINERS (Write After Approval): Add myself. From-SVN: r117780
2006-10-16config.guess: Import latest version.Ben Elliston1-0/+5
* config.guess: Import latest version. * config.sub: Likewise. From-SVN: r117772
2006-10-16crti.asm: add pic support.Tan Shengguo1-0/+4
* config/score/crti.asm: add pic support. * config/score/crtn.asm: add pic support. * config/score/score.h: remove builtin_define("__pic__"). * config/score/score.c: add TARGET_RTX_COST macro. * config/score/score.md: PIC support for call/sibcall pattern. * config/score/mul-div.S: add pic support. * config/score/t-score-elf: update MULTILIB_OPTIONS. * ChangeLog: add shengguo as another score maintainer. * config.sub: add score support in it. From-SVN: r117771
2006-10-10--(top level)--------------------------------------------Brooks Moses1-0/+6
2006-10-10 Brooks Moses <bmoses@stanford.edu> * Makefile.def: Added pdf target handling. * Makefile.tpl: Added pdf target handling. * Makefile.in: Regenerated. ---fixincludes-------------------------------------------- 2006-10-10 Brooks Moses <bmoses@stanford.edu> * Makefile.in: Added empty "pdf" target. ---gcc---------------------------------------------------- 2006-10-10 Brooks Moses <bmoses@stanford.edu> * configure.ac: Added pdf to "Make-hooks" * Makefile.in: Added TEXI2PDF definition, and various pdf-file targets and *.pdf file patterns in cleanup targets. * configure: Regenerated. ---gcc/cp------------------------------------------------- 2006-10-10 Brooks Moses <bmoses@stanford.edu> * Make-lang.in: Added "c++.pdf" target support. ---gcc/fortran-------------------------------------------- 2006-10-10 Brooks Moses <bmoses@stanford.edu> * Make-lang.in: Added "fortran.pdf", "gfortran.pdf" target support. ---gcc/java----------------------------------------------- 2006-10-10 Brooks Moses <bmoses@stanford.edu> * Make-lang.in: Added "java.pdf", "gcj.pdf" target support. ---gcc/objc----------------------------------------------- 2006-10-10 Brooks Moses <bmoses@stanford.edu> * Make-lang.in: Added empty "objc.pdf" target. ---gcc/objcp---------------------------------------------- 2006-10-10 Brooks Moses <bmoses@stanford.edu> * Make-lang.in: Added empty "obj-c++.pdf" target. ---gcc/treelang------------------------------------------- 2006-10-10 Brooks Moses <bmoses@stanford.edu> * Make-lang.in: Added "treelang.pdf" target support. ---gnattools---------------------------------------------- 2006-10-10 Brooks Moses <bmoses@stanford.edu> * Makefile.in: Added empty "pdf" target. ---libcpp------------------------------------------------- 2006-10-10 Brooks Moses <bmoses@stanford.edu> * Makefile.in: Added empty "pdf" target. ---libdecnumber------------------------------------------- 2006-10-10 Brooks Moses <bmoses@stanford.edu> * Makefile.in: Added empty "pdf" target. ---libiberty---------------------------------------------- 2006-10-10 Brooks Moses <bmoses@stanford.edu> * Makefile.in: Added "pdf", "libiberty.pdf" target support. * testsuite/Makefile.in: Added empty "pdf" target. ---libobjc------------------------------------------------ 2006-10-10 Brooks Moses <bmoses@stanford.edu> * Makefile.in: Added empty "pdf" target. From-SVN: r117618
2006-10-10* Add new port for score.Chen Liqin1-0/+4
From-SVN: r117597
2006-10-04MAINTAINERS (Write After Approval): Add myself.Brooks Moses1-0/+4
2006-10-04 Brooks Moses <bmoses@stanford.edu> * MAINTAINERS (Write After Approval): Add myself. From-SVN: r117437
2006-09-27re PR fortran/28276 (EXPONENT() broken for real constants)Steven G. Kargl1-0/+6
* configure.in: Check for GMP 4.1 or newer. Check for MPFR 2.2.0 or newer. * configure: Regenerated. * doc/install.texi: Document required versions of GMP and MPFR. * fortran/arith.c: Conditionally include arctangent2(). (gfc_check_real_range): Use mpfr_subnormalize in preference to local hack. * fortran/trans-intrinsic.c (gfc_get_intrinsic_lib_fndecl): Append l for long double functions. * fortran/simplify.c: Wrap Copyright to new line. (gfc_simplify_atan2): Use mpfr_atan2 in preference to arctangent2(). (gfc_simplify_log): Ditto. PR fortran/28276 * fortran/simplify.c (gfc_simplify_exponent): Use mpfr_get_exp in preference to broken local hack. PR fortran/27021 * fortran/simplify.c (gfc_simplify_nearest): Use mpfr_nexttoward and mpfr_subnormalize to handle numbers near zero in preference to broken local hack. PR fortran/28276 * testsuite/gfortran.dg/exponent_1.f90: New test. PR fortran/27021 * testsuite/gfortran.dg/nearest_1.f90: New test. From-SVN: r117257
2006-09-27configure.in (RUNTEST): Look for 'runtest' in the source tree by using $s ↵Dave Brolley1-0/+6
instead of $r. 2006-09-27 Dave Brolley <brolley@redhat.com> * configure.in (RUNTEST): Look for 'runtest' in the source tree by using $s instead of $r. * configure: Regenerated. From-SVN: r117256
2006-09-26configure.in: Remove redundant handling of mips*-dec-bsd*.Thiemo Seufer1-0/+6
* configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise for mipstx39-*-*. Disable libgloss for mips64*-*-linux*. * configure: Regenerate. From-SVN: r117230
2006-09-24* MAINTAINERS (Write After Approval): Remove myself.Graeme Peterson1-0/+4
From-SVN: r117179
2006-09-22* MAINTAINERS (Write After Approval): Add myself.Chao-ying Fu1-0/+4
From-SVN: r117150
2006-09-12Fix some white space issues in the changelog.Andrew Pinski1-12/+12
From-SVN: r116876
2006-09-10* MAINTAINERS: Add self as soft-fp maintainer.Joseph Myers1-4/+8
From-SVN: r116813
2006-09-09MAINTAINERS: Add myself as avr maintainer.Anatoly Sokolov1-0/+5
* MAINTAINERS: Add myself as avr maintainer. Remove Marek Michalkiewicz as avr maintainer. From-SVN: r116797
2006-09-07Added Roberto Costa to MAINTAINERS listRoberto Costa1-0/+4
From-SVN: r116741
2006-08-30configure.in: Never build newlib for a Mingw host.Corinna Vinschen1-0/+10
2006-08-30 Corinna Vinschen <corinna@vinschen.de> * configure.in: Never build newlib for a Mingw host. Never build newlib as Mingw target library. Test the existence of winsup/cygwin for building a Cygwin newlib, rather than just winsup. Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if building a Mingw target. * configure: Regenerate. From-SVN: r116587
2006-08-08MAINTAINERS (Various Maintainers): Add self as RTL opt.Eric Botcazou1-0/+4
* MAINTAINERS (Various Maintainers): Add self as RTL opt. maintainer. From-SVN: r116012
2006-07-25config.guess: Import from src (was more updated).Paolo Bonzini1-0/+5
2006-07-25 Paolo Bonzini <bonzini@gnu.org> * config.guess: Import from src (was more updated). * config.sub: Likewise. From-SVN: r115734
2006-07-23configure.in: Allow mingw32 and cygwin targets to build cross-gdb.Daniel Jacobowitz1-0/+5
* configure.in: Allow mingw32 and cygwin targets to build cross-gdb. * configure: Regenerated. From-SVN: r115684
2006-07-18Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir for ↵Paolo Bonzini1-0/+5
stages after the first. 2006-07-18 Paolo Bonzini <bonzini@gnu.org> * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir for stages after the first. config: 2006-07-18 Paolo Bonzini <bonzini@gnu.org> * acx.m4: Support --with-build-libsubdir and AC_SUBST build_libsubdir. gcc: 2006-07-18 Paolo Bonzini <bonzini@gnu.org> * configure: Regenerate. * Makefile.in (build_libsubdir): New configure substitution (build_libobjdir): New variable. (BUILD_LIBIBERTY): Use it. libgfortran: 2006-07-18 Paolo Bonzini <bonzini@gnu.org> * configure: Regenerate. libjava: 2006-07-18 Paolo Bonzini <bonzini@gnu.org> * configure: Regenerate. libobjc: 2006-07-18 Paolo Bonzini <bonzini@gnu.org> * configure: Regenerate. From-SVN: r115552
2006-07-17Makefile.def: Add dependencies for configure-opcodes on configure-intl and ↵Jakub Jelinek1-0/+6
all-opcodes on... * Makefile.def: Add dependencies for configure-opcodes on configure-intl and all-opcodes on all-intl. * Makefile.in: Regenerated. From-SVN: r115527
2006-07-13* MAINTAINERS (Various Maintainers): Add myself as dfp maintainer.Ben Elliston1-0/+4
From-SVN: r115413
2006-07-06Port to hosts whose 'sort' and 'tail' implementations treat operands with ↵Paul Eggert1-0/+9
leading '+' as file names... Port to hosts whose 'sort' and 'tail' implementations treat operands with leading '+' as file names, as POSIX has required since 2001. However, make sure the code still works on pre-POSIX hosts. * ltmain.sh: Don't assume "sort +2" is equivalent to "sort -k 3", since POSIX 1003.1-2001 no longer requires this. contrib: * compare_tests: Don't assume "sort +2" is equivalent to "sort -k 3", since POSIX 1003.1-2001 no longer requires this. gcc: * Makefile.in (slowcompare): Port to POSIX 1003.1-2001, which says you should use "tail -c +N" rather than "tail +Nc". Fix a bug: the old code incorrectly skipped 15 bytes, not 16. From-SVN: r115234
2006-07-05* MAINTAINERS (Various Maintainers): Add myself as reload maintainer.Ulrich Weigand1-0/+4
From-SVN: r115207
2006-07-04ltconfig: chmod 644 before ranlib during install.Peter O'Gorman1-0/+4
ChangeLog: * ltconfig: chmod 644 before ranlib during install. libiberty/ChangeLog: * Makefile.in: chmod 644 before ranlib during install. gcc/ChangeLog: * mklibgcc.in: chmod 644 before ranlib during install. libjava/classpath/ChangeLog: * ltconfig: chmod 644 before ranlib during install. From-SVN: r115183
2006-07-04re PR bootstrap/18058 (Bootstrap fails with non-GCC compilers)Eric Botcazou1-0/+7
PR bootstrap/18058 * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1 if the bootstrap compiler is a GCC version that supports it. * configure: Regenerate. gcc/ * Makefile.in (BUILD_RTL): Add build/vec.o. (build/gencondmd.o): Filter out -fkeep-inline-functions. (build/genextract): Delete. (build/genautomata): Likewise. From-SVN: r115172
2006-07-03configure.in: Fix thinkos in previous check-in.Paolo Bonzini1-1/+1
2006-07-03 Paolo Bonzini <bonzini@gnu.org> * configure.in: Fix thinkos in previous check-in. * configure: Regenerate. From-SVN: r115147
2006-07-03configure.in: Fix thinko in previous check-in.Paolo Bonzini1-0/+5
2006-07-03 Paolo Bonzini <bonzini@gnu.org> * configure.in: Fix thinko in previous check-in. * configure: Regenerate. gcc: 2006-07-03 Paolo Bonzini <bonzini@gnu.org> * configure.ac: Fix thinko in previous check-in. * configure: Regenerate. From-SVN: r115146
2006-07-03re PR other/27063 (Fail to build gcc-core-4.2 snapshots)Paolo Bonzini1-0/+7
2006-07-03 Paolo Bonzini <bonzini@gnu.org> PR other/27063 * configure.in: Test subdir_requires and give an appropriate error message. * configure: Regenerate gcc: 2006-07-03 Paolo Bonzini <bonzini@gnu.org> PR other/27063 * configure.ac (for lang...): Simplify nesting of conditionals. Test subdir_requires for non-enabled languages. Move processing of lang_opt_files and lang_tree_fiels below that test. * configure: Regenerate. * doc/sourcebuild.texi (Front End Config): Document subdir_requires. gcc/objcp: 2006-07-03 Paolo Bonzini <bonzini@gnu.org> PR other/27063 * config-lang.in: Add subdir_requires. From-SVN: r115145
2006-07-01MAINTAINERS (Write After Approval): Add myself.Andrew John Hughes1-0/+4
2006-07-01 Andrew John Hughes <gnu_andrew@member.fsf.org> * MAINTAINERS (Write After Approval): Add myself. From-SVN: r115117
2006-06-22MAINTAINERS (OS Port Maintainers): Add myself as hpux maintainer.John David Anglin1-0/+4
* MAINTAINERS (OS Port Maintainers): Add myself as hpux maintainer. From-SVN: r114913
2006-06-22* MAINTAINERS (OS Port Maintainers): Add myself as hpux maintainer.Steve Ellcey1-0/+4
From-SVN: r114909
2006-06-20re PR bootstrap/28072 (target-boehm-gc is being build for targets that do ↵David Ayers1-0/+8
not support it) 2006-06-20 David Ayers <d.ayers@inode.at> PR bootstrap/28072 * configure.in: Add target-boehm-gc to noconfigdirs depending on whether target-libjava is being configured instead of whether the java front end is enabled. * configure: Regenerate. From-SVN: r114808
2006-06-16re PR target/27540 (libgomp fails to configure on IRIX 5.3)Rainer Orth1-0/+6
PR target/27540 * configure.in: Only enable libgomp on IRIX 6. * configure: Regenerate. From-SVN: r114726
2006-06-15Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS too.Paolo Bonzini1-0/+6
2006-06-15 Paolo Bonzini <bonzini@gnu.org> * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS too. * Makefile.in: Regenerate. gcc: 2006-06-15 Paolo Bonzini <bonzini@gnu.org> * configure.ac (CFLAGS): Get them from the toplevel or from the configure invocation. * configure: Regenerate. * Makefile.in (CFLAGS): Substitute value provided by configure. From-SVN: r114673
2006-06-13config-ml.in: Alter CCASFLAGS to include special multilib options the same ↵DJ Delorie1-1/+6
as is done for CFLAGS. * config-ml.in: Alter CCASFLAGS to include special multilib options the same as is done for CFLAGS. From-SVN: r114622
2006-06-13configure.in: Don't enable libgomp on hpux10.John David Anglin1-0/+5
* configure.in: Don't enable libgomp on hpux10. * configure: Rebuilt. From-SVN: r114599
2006-06-12re PR bootstrap/27963 (libjava fails to build if it isn't built by default)David Ayers1-0/+8
2006-06-12 David Ayers <d.ayers@inode.at> PR bootstrap/27963 PR target/19970 * configure.in: Remove target-boehm-gc from noconfigdirs where ${libgcj} is specified. * configure: Regenerate. From-SVN: r114563
2006-06-06[multiple changes]Carlos O'Donell1-0/+14
2006-06-06 Carlos O'Donell <carlos@codesourcery.com> Sync from src: * configure.in: Sync. * configure: Regenerated. 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com> * Makefile.def: Added dependencies from sim and gdb on intl, and added configure dependencies to everything with an all dependency on intl. * Makefile.in: Regenerated. From-SVN: r114444
2006-06-06re PR libobjc/13946 (ObjC configured --with-objc-gc needs external Boehm gc)David Ayers1-0/+15
2006-06-06 David Ayers <d.ayers@inode.at> PR libobjc/13946 * Makefile.def: Add dependencies for libobjc which boehm-gc. * Makefile.in: Regenerate. * configure.in: Add --enable-objc-gc at toplevel and have it enable boehm-gc for Objective-C. Remove target-boehm-gc from libgcj. Add target-boehm-gc to target_libraries. Add target-boehm-gc to noconfigdirs where ${libgcj} is specified. Assert that boehm-gc is supported when requested for Objective-C. Only build boehm-gc if needed either for Java or Objective-C. * configure: Regenerate. From-SVN: r114435
2006-06-05re PR bootstrap/27674 (make -j3 all-gcc fails when building natively)Paolo Bonzini1-0/+9
2006-06-05 Paolo Bonzini <bonzini@gnu.org> PR 27674 * Makefile.tpl (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Depend on stage_current if bootstrapping. Remove rule to unstage bootstrapped modules. (stage_current): New. * Makefile.in: Regenerate. From-SVN: r114395
2006-06-03MAINTAINERS (Write After Approval): Update my e-mail address.Laurynas Biveinis1-1/+5
2006-06-03 Laurynas Biveinis <laurynas.biveinis@gmail.com> * MAINTAINERS (Write After Approval): Update my e-mail address. From-SVN: r114343
2006-06-01Patch to provide pex_run_in_environment.Mark Shinwell1-0/+4
* include/libiberty.h: Declare pex_run_in_environment. libiberty: * pex-common.c: New function pex_run_in_environment. * pex-common.h: Add environment parameter to exec_child. * pex-msdos.c: Add environment parameter to pex_msdos_exec_child. * pex-djgpp.c: Add environment parameter to pex_djgpp_exec_child. (pex_djgpp_exec_child): Pass environment to child process. * pex-unix.c: Add environment parameter to pex_unix_exec_child. (pex_unix_exec_child): Pass environment to child process. * pex-win32.c: Add environment parameter to pex_win32_exec_child. New function env_compare for comparing VAR=VALUE pairs. (win32_spawn): Assemble environment block and pass to CreateProcess. (spawn_script): Pass environment through to win32_spawn. (pex_win32_exec_child): Pass environment through to spawn_script and win32_spawn. * functions.texi: Regenerate. * pexecute.txh: Document pex_run_in_environment. From-SVN: r114302
2006-06-01MAINTAINERS (Write After Approval): Add myself.Asher Langton1-0/+4
* MAINTAINERS (Write After Approval): Add myself. From-SVN: r114292
2006-05-25Makefile.def (bfd, opcodes): Fix lib_path.Paolo Bonzini1-1/+9
2006-05-25 Paolo Bonzini <bonzini@gnu.org> * Makefile.def (bfd, opcodes): Fix lib_path. * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS. (restrap): Move under "@if gcc-bootstrap". Fix typo. * Makefile.in: Regenerate. From-SVN: r114109
2006-05-24Makefile.in: Regenerate.Carlos O'Donell1-0/+4
2006-05-24 Carlos O'Donell <carlos@codesourcery.com> * Makefile.in: Regenerate. From-SVN: r114050
2006-05-24Makefile.def: Add install-html target.Carlos O'Donell1-0/+10
2006-05-24 Carlos O'Donell <carlos@codesourcery.com> * Makefile.def: Add install-html target. Add datarootdir docdir and htmldir to flags_to_pass. * Makefile.tpl: Add install-html target. * Makefile.in: Regenerate. * configure.in: Add --with-datarootdir, --with-docdir, and --with-htmldir options. AC_SUBST datarootdir, docdir and htmldir. * configure: Regenerate. From-SVN: r114048
2006-05-24Enable gprof for cross builds (mirror of patch to binutils src/)Mark Shinwell1-0/+5
From-SVN: r114041