diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2006-01-02 18:53:27 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2006-01-02 18:53:27 +0000 |
commit | 4c4b3eb0fcd841317cb4ccee76a1152a32e7be8d (patch) | |
tree | 617d15c744e086d1f228e2064e3a25400263e524 /gcc | |
parent | a6fbc1e26b60d2d7b3ce0b820d4a9e12e426fd75 (diff) | |
download | gcc-4c4b3eb0fcd841317cb4ccee76a1152a32e7be8d.zip gcc-4c4b3eb0fcd841317cb4ccee76a1152a32e7be8d.tar.gz gcc-4c4b3eb0fcd841317cb4ccee76a1152a32e7be8d.tar.bz2 |
re PR libgomp/25259 (bootstrap failures on non-C99 platforms (no stdint.h))
config:
2006-01-02 Paolo Bonzini <bonzini@gnu.org>
PR target/25259
* stdint.m4: New.
gcc:
2006-01-02 Paolo Bonzini <bonzini@gnu.org>
PR target/25259
* Makefile.in (DECNUMINC): Include libdecnumber's build directory.
libgfortran:
2006-01-02 Paolo Bonzini <bonzini@gnu.org>
PR target/25259
* configure.ac: Use GCC_HEADER_STDINT.
* libgfortran.h: Include gstdint.h.
* aclocal.m4: Regenerate.
* configure: Regenerate.
libdecnumber:
2006-01-02 Paolo Bonzini <bonzini@gnu.org>
PR target/25259
* configure.ac: Use GCC_HEADER_STDINT.
* decContext.h: Include gstdint.h.
* aclocal.m4: Regenerate.
* configure: Regenerate.
From-SVN: r109241
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9a48112..1342528 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-01-02 Paolo Bonzini <bonzini@gnu.org> + + PR target/25259 + * Makefile.in (DECNUMINC): Include libdecnumber's build directory. + 2006-01-02 Volker Reichelt <reichelt@igpm.rwth-aachen.de> * config/arm/arm.c (all_fpus): Fix comment typo. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 7261a1e..6c7ca28 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1,8 +1,9 @@ # Makefile for GNU Compiler Collection # Run 'configure' to generate Makefile from Makefile.in -# Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, -# 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +# Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, +# 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 +# Free Software Foundation, Inc. #This file is part of GCC. @@ -300,7 +301,7 @@ CPPINC = -I$(srcdir)/../libcpp/include # Where to find decNumber DECNUM = $(srcdir)/../libdecnumber -DECNUMINC = -I$(DECNUM) +DECNUMINC = -I$(DECNUM) -I../libdecnumber LIBDECNUMBER = ../libdecnumber/libdecnumber.a # Substitution type for target's getgroups 2nd arg. |