This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [gfortran] Alphabetize objects in Make-lang.in, move data.o
- From: Paul Brook <paul at codesourcery dot com>
- To: Tobias Schlüter <tobias dot schlueter at physik dot uni-muenchen dot de>
- Cc: GCC Fortran mailing list <fortran at gcc dot gnu dot org>,patch <gcc-patches at gcc dot gnu dot org>
- Date: Sat, 12 Jun 2004 20:51:31 +0100
- Subject: Re: [gfortran] Alphabetize objects in Make-lang.in, move data.o
- Organization: CodeSourcery
- References: <40C0A285.2080202@physik.uni-muenchen.de>
On Friday 04 June 2004 17:25, Tobias Schlüter wrote:
> After being repeatedly annoyed by the non-alphabetical order of compiles
> when rebuilding gfortran, I decided to alphabetize the objects in
> Make-lang.in. While doing this, I noticed that data.o is wrongly treated
> as a F95_OBJ, not a F95_PARSER_OBJ. So I moved it to the right place,
> removing the dependency on trans.h (it called gfc_todo_error which is
> declared in trans.h, I replaced this call by gfc_internal_error).
The ordering doesn't matter. Any ordering dependencies need to be explicit or
parallel builds will break.
2004-06-12 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* Make-lang.in (F95_OBJS, F95_PARSER_OBJS): Alphabetize. Move data.c
* data.c (gfc_get_section_index): Remove dependency on trans.h.
Applied.
Paul