public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/43954]  New: gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
@ 2010-05-01 17:23 kirr at landau dot phys dot spbu dot ru
  2010-05-03 18:09 ` [Bug fortran/43954] " dfranke at gcc dot gnu dot org
                   ` (21 more replies)
  0 siblings, 22 replies; 24+ messages in thread
From: kirr at landau dot phys dot spbu dot ru @ 2010-05-01 17:23 UTC (permalink / raw)
  To: gcc-bugs

Hello,

Like with gcc and g++, for compiling .F sources with gfortran, I
thankfully use automatic dependencies generator built into gcc's cpp.

E.g. for

    $ cat test.F
    #include "test.h"

          program test
          print *,'Hello World!'
          print *,ZZZ
          end

    $ cat test.h
    #define ZZZ 'Hello up there qqq!'

gfortran-4.3 correctly generates .d file for make:

    $ gfortran-4.3 -Wp,-MD,test.d test.F
    $ cat test.d
    test.o: test.F test.h

but gfortran-4.4 fails:

    $ rm test.d
    $ gfortran-4.4 -Wp,-MD,test.d test.F
    f951: warning: command line option "-MD" is valid for C/C++/ObjC/ObjC++ but
not for Fortran
    $ cat test.d
    cat: test.d: No such file or directory


I think gfortran-4.4 behaviour is incorrect, since .F files (contrast
with .f) by definition should be passed through preprocessor, and if so,
why dropping automatic dependencies generation which worked in 4.3?


I guess the regression is somehow related to the fact, that starting from
gcc-4.4, "GNU Fortran now employs libcpp directly instead of
using cc1 as an external preprocessor." [1]

    $ gfortran-4.3 -v -Wp,-MD,test.d test.F
    Driving: gfortran-4.3 -v -Wp,-MD,test.d test.F -lgfortranbegin -lgfortran
-lm -shared-libgcc
    ...
    gcc version 4.3.4 (Debian 4.3.4-6)
    COLLECT_GCC_OPTIONS='-v' '-shared-libgcc' '-mtune=generic'
     /usr/lib/gcc/i486-linux-gnu/4.3.4/cc1 -E -lang-fortran -traditional-cpp
-D_LANGUAGE_FORTRAN -quiet -v -MD test.d test.F -mtune=generic -o
/tmp/cclR3nYK.f
    ...
     /usr/lib/gcc/i486-linux-gnu/4.3.4/f951 /tmp/cclR3nYK.f -ffixed-form -quiet
-dumpbase test.F -mtune=generic -auxbase test -version -fpreprocessed
-fintrinsic-modules-path /usr/lib/gcc/i486-linux-gnu/4.3.4/finclude -o
/tmp/cc0ZnWFl.s


(compare to)


    $ gfortran-4.4 -v -Wp,-MD,test.d test.F
    Driving: gfortran-4.4 -v -Wp,-MD,test.d test.F -lgfortranbegin -lgfortran
-lm -shared-libgcc
    ...
    gcc version 4.4.3 20100108 (prerelease) (Debian 4.4.2-9)
    COLLECT_GCC_OPTIONS='-v' '-shared-libgcc' '-mtune=generic' '-march=i486'
     /usr/lib/gcc/i486-linux-gnu/4.4.3/f951 test.F -ffixed-form -cpp
/tmp/ccE2JRYl.f90 -quiet -v -MD test.d test.F -quiet -dumpbase test.F
-mtune=generic -march=i486 -auxbase test -version -fintrinsic-modules-path
/usr/lib/gcc/i486-linux-gnu/4.4.3/finclude -o /tmp/ccwptNMx.s
    f951: warning: command line option "-MD" is valid for C/C++/ObjC/ObjC++ but
not for Fortran



And since -MD was declared to be C/C++/ObjC/ObjC++ only option for ages
(at least since 2003-06-01 d821d2 in gcc.git), now for 4.4. it does not
work. It worked for 4.3 because there `cc1 -E` is explicitly called as
separate step... And for 4.4. calling cc1 explicitly works too

    $ /usr/lib/gcc/i486-linux-gnu/4.4.3/cc1 -E -D_LANGUAGE_FORTRAN -quiet -v
-MD test.d test.F -o test.f
    $ cat test.d
    test.o: test.F test.h

but is of no help because cc1 is internal.

--------

Clearly this is functional regression to me. If possible please fix.


Thanks beforehand,
Kirill

P.S. this is somehow related to bug #31588


[1] http://gcc.gnu.org/gcc-4.4/changes.html
[2]
http://git.infradead.org/gcc.git/commit/d821d2e95e00a93f2edb5f6d3decc9c83ceb9c61


$ gfortran-4.4 -v
Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.4.2-9'
--with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs
--enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared
--enable-multiarch --enable-linker-build-id --with-system-zlib
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable-nls
--enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc
--enable-targets=all --with-arch-32=i486 --with-tune=generic
--enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu
--target=i486-linux-gnu
Thread model: posix
gcc version 4.4.3 20100108 (prerelease) (Debian 4.4.2-9)


-- 
           Summary: gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 ->
                    4.4 regression, needed for auto-dependencies)
           Product: gcc
           Version: 4.4.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: kirr at landau dot phys dot spbu dot ru
 GCC build triplet: i486-linux-gnu
  GCC host triplet: i486-linux-gnu
GCC target triplet: i486-linux-gnu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
@ 2010-05-03 18:09 ` dfranke at gcc dot gnu dot org
  2010-05-03 19:23 ` kirr at landau dot phys dot spbu dot ru
                   ` (20 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2010-05-03 18:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from dfranke at gcc dot gnu dot org  2010-05-03 18:09 -------
If real life allows, I'll give it another try for 4.6 - started twice already
but there are quite a few options to handle. However, if you feel like it, dig
in. Help is always welcome :)

Closing as dupe of PR31588.

*** This bug has been marked as a duplicate of 31588 ***


-- 

dfranke at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |DUPLICATE


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
  2010-05-03 18:09 ` [Bug fortran/43954] " dfranke at gcc dot gnu dot org
@ 2010-05-03 19:23 ` kirr at landau dot phys dot spbu dot ru
  2010-05-03 19:45 ` dfranke at gcc dot gnu dot org
                   ` (19 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: kirr at landau dot phys dot spbu dot ru @ 2010-05-03 19:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from kirr at landau dot phys dot spbu dot ru  2010-05-03 19:23 -------
Daniel, thanks for reply.

As I see it, yes, PR31588 would be handy enhancement, but this bug is different
-- it's a _regression_ -- it used to work in 4.3 and stopped in 4.4.

And when I say "it used to work" I don't mean generating dependencies for
f90/f95 sources (PR31588 mentions e.g. USE), but only generating dependencies
from plain preprocessor.

Please, let's not break what used to work.
Is it ok reopen?


P.S. I'd like to help as time permits, but hacking on GCC codebase is out of my
skills at present. If that would help I'm able and will be glad to try patches
and do other testing as well.

Sorry and thanks,
Kirill


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
  2010-05-03 18:09 ` [Bug fortran/43954] " dfranke at gcc dot gnu dot org
  2010-05-03 19:23 ` kirr at landau dot phys dot spbu dot ru
@ 2010-05-03 19:45 ` dfranke at gcc dot gnu dot org
  2010-05-04  7:45 ` kirr at landau dot phys dot spbu dot ru
                   ` (18 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2010-05-03 19:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from dfranke at gcc dot gnu dot org  2010-05-03 19:45 -------
(In reply to comment #2)
On Monday 03 May 2010 21:23:26 you wrote:
> And when I say "it used to work" I don't mean generating dependencies for
> f90/f95 sources (PR31588 mentions e.g. USE), but only generating
> dependencies from plain preprocessor.

What you ask for is "just" a subset of PR31588. If that gets fixed, your
request will be fixed as well.

Feel free to re-open if you believe that it would be worth to fix the subset
first.


> If that would help I'm able and will be glad to try patches and do 
> other testing as well.

I'll keep that in mind :)


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (2 preceding siblings ...)
  2010-05-03 19:45 ` dfranke at gcc dot gnu dot org
@ 2010-05-04  7:45 ` kirr at landau dot phys dot spbu dot ru
  2010-05-04 16:46 ` kargl at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: kirr at landau dot phys dot spbu dot ru @ 2010-05-04  7:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from kirr at landau dot phys dot spbu dot ru  2010-05-04 07:44 -------
On Mon, May 03, 2010 at 07:45:20PM -0000, dfranke at gcc dot gnu dot org wrote:
> (In reply to comment #2)
> On Monday 03 May 2010 21:23:26 you wrote:
> > And when I say "it used to work" I don't mean generating dependencies for
> > f90/f95 sources (PR31588 mentions e.g. USE), but only generating
> > dependencies from plain preprocessor.
> 
> What you ask for is "just" a subset of PR31588. If that gets fixed, your
> request will be fixed as well.
> 
> Feel free to re-open if you believe that it would be worth to fix the subset
> first.

Yes, it's a subset of PR31588. 

But as you wrote PR31588 is going to be (maybe) fixed for 4.6, while I
believe regressions in general and this one in particular should be
better handled with higher priority and fixes should go to maintanance
branches.

Also, my impression is that PR31588 is more work than fixing "just" this
subset. That's why I'm reopening it.


Sorry if I ask for too much, especially when I can't help with code...


> > If that would help I'm able and will be glad to try patches and do 
> > other testing as well.
> 
> I'll keep that in mind :)

Yes


Thanks,
Kirill


-- 

kirr at landau dot phys dot spbu dot ru changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|DUPLICATE                   |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (3 preceding siblings ...)
  2010-05-04  7:45 ` kirr at landau dot phys dot spbu dot ru
@ 2010-05-04 16:46 ` kargl at gcc dot gnu dot org
  2010-05-05 16:24 ` kirr at landau dot phys dot spbu dot ru
                   ` (16 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: kargl at gcc dot gnu dot org @ 2010-05-04 16:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from kargl at gcc dot gnu dot org  2010-05-04 16:46 -------
(In reply to comment #4)
> On Mon, May 03, 2010 at 07:45:20PM -0000, dfranke at gcc dot gnu dot org wrote:
> > (In reply to comment #2)
> > On Monday 03 May 2010 21:23:26 you wrote:
> > > And when I say "it used to work" I don't mean generating dependencies for
> > > f90/f95 sources (PR31588 mentions e.g. USE), but only generating
> > > dependencies from plain preprocessor.
> > 
> > What you ask for is "just" a subset of PR31588. If that gets fixed, your
> > request will be fixed as well.
> > 
> > Feel free to re-open if you believe that it would be worth to fix the subset
> > first.
> 
> Yes, it's a subset of PR31588. 
> 
> But as you wrote PR31588 is going to be (maybe) fixed for 4.6, while I
> believe regressions in general and this one in particular should be
> better handled with higher priority and fixes should go to maintanance
> branches.

What you apparently fail to understand is that gfortran is written
and maintained by a small group of volunteers.  If none of these
volunteers use this feature and if none of volunteers have the 
time to work on it, it won't get fixed anytime soon.  So, if this
is so dear to your heart, pull up your sleeves and start trying to
fix the problem.

In the meantime, just call cpp directly.

troutmask:sgk[214] ~/work/4x/bin/cpp -Wp,-MD,test.d test.F | sed s/#/\!/
! 1 "test.F"
! 1 "<built-in>"
! 1 "<command-line>"
! 1 "test.F"
! 1 "test.h" 1
! 2 "test.F" 2

          program test
          print *,'Hello World!'
          print *,'Hello up there qqq!'
          end
troutmask:sgk[215] cat test.d
test.o: test.F test.h


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (4 preceding siblings ...)
  2010-05-04 16:46 ` kargl at gcc dot gnu dot org
@ 2010-05-05 16:24 ` kirr at landau dot phys dot spbu dot ru
  2010-06-13 16:06 ` dfranke at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: kirr at landau dot phys dot spbu dot ru @ 2010-05-05 16:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from kirr at landau dot phys dot spbu dot ru  2010-05-05 16:24 -------
> So, if this is so dear to your heart, pull up your sleeves and start trying 
> to fix the problem.

I see. And thanks for the workaround.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (5 preceding siblings ...)
  2010-05-05 16:24 ` kirr at landau dot phys dot spbu dot ru
@ 2010-06-13 16:06 ` dfranke at gcc dot gnu dot org
  2010-06-13 16:09 ` dfranke at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2010-06-13 16:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from dfranke at gcc dot gnu dot org  2010-06-13 16:05 -------
Subject: Bug 43954

Author: dfranke
Date: Sun Jun 13 16:05:01 2010
New Revision: 160684

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=160684
Log:
2010-06-13  Daniel Franke  <franke.daniel@gmail.com>

        PR fortran/31588
        PR fortran/43954
        * gfortranspec.c (lang_specific_driver): Removed deprecation
        warning for -M.
        * lang.opt: Add options -M, -MM, -MD, -MMD, -MF, -MG, -MP, -MT, -MQ.
        * lang-specs.h (CPP_FORWARD_OPTIONS): Add -M* options.
        * cpp.h (gfc_cpp_makedep): New.
        (gfc_cpp_add_dep): New.
        (gfc_cpp_add_target): New.
        * cpp.c (gfc_cpp_option): Add deps* members.
        (gfc_cpp_makedep): New.
        (gfc_cpp_add_dep): New.
        (gfc_cpp_add_target): New.
        (gfc_cpp_init_options): Initialize new options.
        (gfc_cpp_handle_option): Handle new options.
        (gfc_cpp_post_options): Map new options to libcpp-options.
        (gfc_cpp_init): Handle deferred -MQ and -MT options.
        (gfc_cpp_done): If requested, write dependencies to file.
        * module.c (gfc_dump_module): Add a module filename as target.
        * scanner.c (open_included_file): New parameter system; add the
        included file as dependency.
        (gfc_open_included_file): Add the included file as dependency.
        (gfc_open_intrinsic_module): Likewise.
        * invoke.texi: Removed deprecation warning for -M.
        * gfortran.texi: Removed Makefile-dependencies project.


Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/cpp.c
    trunk/gcc/fortran/cpp.h
    trunk/gcc/fortran/gfortran.texi
    trunk/gcc/fortran/gfortranspec.c
    trunk/gcc/fortran/invoke.texi
    trunk/gcc/fortran/lang-specs.h
    trunk/gcc/fortran/lang.opt
    trunk/gcc/fortran/module.c
    trunk/gcc/fortran/scanner.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (6 preceding siblings ...)
  2010-06-13 16:06 ` dfranke at gcc dot gnu dot org
@ 2010-06-13 16:09 ` dfranke at gcc dot gnu dot org
  2010-06-28 18:04 ` kirr at landau dot phys dot spbu dot ru
                   ` (13 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2010-06-13 16:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from dfranke at gcc dot gnu dot org  2010-06-13 16:09 -------
Makefile dependency generation is now available in trunk (-cpp -MD).
See PR44526 for a follow-up request to libcpp.

Closing.


-- 

dfranke at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (7 preceding siblings ...)
  2010-06-13 16:09 ` dfranke at gcc dot gnu dot org
@ 2010-06-28 18:04 ` kirr at landau dot phys dot spbu dot ru
  2010-06-28 18:05 ` kirr at landau dot phys dot spbu dot ru
                   ` (12 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: kirr at landau dot phys dot spbu dot ru @ 2010-06-28 18:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from kirr at landau dot phys dot spbu dot ru  2010-06-28 18:04 -------
REOPEN

Daniel, thanks for working on this.

Because dropping support for -MD was initially spot as 4.3 -> 4.4 regression,
and you committed the fix to 4.6 only, I think it would be good to apply your
patch to 4.4 and 4.5 branches as well.

I've backported it on top of today's gcc-4_4-branch and gcc-4_5-branch. Tested
on i686-pc-linux-gnu OK for 4.4 and "OK for check-fortran" for 4.5 (*).

Two patches for 4.4 & 4.5 will be next attached.

Please apply and thanks,
Kirill


(*) as of today, gcc-4_5-branch does not pass all tests on i686-pc-linux-gnu.
Look e.g. here http://gcc.gnu.org/ml/gcc-testresults/2010-06/


-- 

kirr at landau dot phys dot spbu dot ru changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|FIXED                       |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (8 preceding siblings ...)
  2010-06-28 18:04 ` kirr at landau dot phys dot spbu dot ru
@ 2010-06-28 18:05 ` kirr at landau dot phys dot spbu dot ru
  2010-06-28 18:06 ` kirr at landau dot phys dot spbu dot ru
                   ` (11 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: kirr at landau dot phys dot spbu dot ru @ 2010-06-28 18:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from kirr at landau dot phys dot spbu dot ru  2010-06-28 18:05 -------
Created an attachment (id=21031)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=21031&action=view)
gfortran-4.4-MD.patch


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (9 preceding siblings ...)
  2010-06-28 18:05 ` kirr at landau dot phys dot spbu dot ru
@ 2010-06-28 18:06 ` kirr at landau dot phys dot spbu dot ru
  2010-08-07 10:49 ` kirr at landau dot phys dot spbu dot ru
                   ` (10 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: kirr at landau dot phys dot spbu dot ru @ 2010-06-28 18:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from kirr at landau dot phys dot spbu dot ru  2010-06-28 18:06 -------
Created an attachment (id=21032)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=21032&action=view)
gfortran-4.5-MD.patch


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] gfortran-4.4 does not support -Wp, -MD  for *.F (4.3 -> 4.4 regression, needed for auto-dependencies)
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (10 preceding siblings ...)
  2010-06-28 18:06 ` kirr at landau dot phys dot spbu dot ru
@ 2010-08-07 10:49 ` kirr at landau dot phys dot spbu dot ru
  2010-08-07 11:25 ` [Bug fortran/43954] [4.3/4.4 regression] gfortran does not support -Wp, -MD for *.F mikael at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: kirr at landau dot phys dot spbu dot ru @ 2010-08-07 10:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from kirr at landau dot phys dot spbu dot ru  2010-08-07 10:49 -------
Could someone please suggest me what I'm maybe doing wrong?

Because I posted backported patches twice (first time on the mailing list) and
there is always silence on gcc side...

And as it is now, -4.4 and -4.5 are left in regressed state compared to -4.3,
and the fix is only applied to -4.6 .

Thanks,
Kirill


P.S. and as to the workaround described in comment5 - it does not fully
qualify, becase for example calling cpp directly does not define predefined
__GFORTRAN__, and I'm sure there are other corner-case when cpp'ing by hand
differs from preprocessing from-under gfortran.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] [4.3/4.4 regression] gfortran does not support -Wp, -MD  for *.F
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (11 preceding siblings ...)
  2010-08-07 10:49 ` kirr at landau dot phys dot spbu dot ru
@ 2010-08-07 11:25 ` mikael at gcc dot gnu dot org
  2010-08-07 13:27 ` kirr at landau dot phys dot spbu dot ru
                   ` (8 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: mikael at gcc dot gnu dot org @ 2010-08-07 11:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from mikael at gcc dot gnu dot org  2010-08-07 11:25 -------
(In reply to comment #12)
> Could someone please suggest me what I'm maybe doing wrong?
Nothing wrong. Just ping the patch from time to time ;-). 
I've set the target milestone to 4.3.6, so that it may get more attention.


-- 

mikael at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |dfranke at gcc dot gnu dot
                   |dot org                     |org
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2010-08-07 11:25:25
               date|                            |
            Summary|gfortran-4.4 does not       |[4.3/4.4 regression]
                   |support -Wp, -MD  for *.F   |gfortran does not support -
                   |(4.3 -> 4.4 regression,     |Wp, -MD  for *.F
                   |needed for auto-            |
                   |dependencies)               |
   Target Milestone|---                         |4.3.6


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] [4.3/4.4 regression] gfortran does not support -Wp, -MD  for *.F
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (12 preceding siblings ...)
  2010-08-07 11:25 ` [Bug fortran/43954] [4.3/4.4 regression] gfortran does not support -Wp, -MD for *.F mikael at gcc dot gnu dot org
@ 2010-08-07 13:27 ` kirr at landau dot phys dot spbu dot ru
  2010-08-07 15:44 ` jvdelisle at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: kirr at landau dot phys dot spbu dot ru @ 2010-08-07 13:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from kirr at landau dot phys dot spbu dot ru  2010-08-07 13:27 -------
Subject: Re:  [4.3/4.4 regression] gfortran does not support -Wp, -MD  for *.F

On Sat, Aug 07, 2010 at 11:25:26AM -0000, mikael at gcc dot gnu dot org wrote:
> ------- Comment #13 from mikael at gcc dot gnu dot org  2010-08-07 11:25 -------
> (In reply to comment #12)
> > Could someone please suggest me what I'm maybe doing wrong?
> Nothing wrong. Just ping the patch from time to time ;-). 

I see, thanks.

> I've set the target milestone to 4.3.6, so that it may get more attention.

Thanks again. But why 4.3? It's 4.4 and 4.5 which need fixing. 4.3 is
ok. Am I misunderstanding something?


Thanks,
Kirill


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] [4.3/4.4 regression] gfortran does not support -Wp, -MD  for *.F
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (13 preceding siblings ...)
  2010-08-07 13:27 ` kirr at landau dot phys dot spbu dot ru
@ 2010-08-07 15:44 ` jvdelisle at gcc dot gnu dot org
  2010-08-07 16:52 ` jvdelisle at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2010-08-07 15:44 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from jvdelisle at gcc dot gnu dot org  2010-08-07 15:43 -------
I have the patch for backport to 4.5 applied to my local 4.5 branch and I am
regression testing now.  


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] [4.3/4.4 regression] gfortran does not support -Wp, -MD  for *.F
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (14 preceding siblings ...)
  2010-08-07 15:44 ` jvdelisle at gcc dot gnu dot org
@ 2010-08-07 16:52 ` jvdelisle at gcc dot gnu dot org
  2010-08-07 18:18 ` [Bug fortran/43954] [4.4 " mikael at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2010-08-07 16:52 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from jvdelisle at gcc dot gnu dot org  2010-08-07 16:52 -------
Subject: Bug 43954

Author: jvdelisle
Date: Sat Aug  7 16:51:55 2010
New Revision: 162980

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=162980
Log:
2010-08-07  Daniel Franke  <franke.daniel@gmail.com>

        2010-06-13  Daniel Franke  <franke.daniel@gmail.com>

        PR fortran/31588
        PR fortran/43954
        Backport from mainline:
        * gfortranspec.c (lang_specific_driver): Removed deprecation
        warning for -M.
        * lang.opt: Add options -M, -MM, -MD, -MMD, -MF, -MG, -MP, -MT, -MQ.
        * lang-specs.h (CPP_FORWARD_OPTIONS): Add -M* options.
        * cpp.h (gfc_cpp_makedep): New.
        (gfc_cpp_add_dep): New.
        (gfc_cpp_add_target): New.
        * cpp.c (gfc_cpp_option): Add deps* members.
        (gfc_cpp_makedep): New.
        (gfc_cpp_add_dep): New.
        (gfc_cpp_add_target): New.
        (gfc_cpp_init_options): Initialize new options.
        (gfc_cpp_handle_option): Handle new options.
        (gfc_cpp_post_options): Map new options to libcpp-options.
        (gfc_cpp_init): Handle deferred -MQ and -MT options.
        (gfc_cpp_done): If requested, write dependencies to file.
        * module.c (gfc_dump_module): Add a module filename as target.
        * scanner.c (open_included_file): New parameter system; add the
        included file as dependency.
        (gfc_open_included_file): Add the included file as dependency.
        (gfc_open_intrinsic_module): Likewise.
        * invoke.texi: Removed deprecation warning for -M.
        * gfortran.texi: Removed Makefile-dependencies project.

Modified:
    branches/gcc-4_5-branch/gcc/fortran/ChangeLog
    branches/gcc-4_5-branch/gcc/fortran/cpp.c
    branches/gcc-4_5-branch/gcc/fortran/cpp.h
    branches/gcc-4_5-branch/gcc/fortran/gfortran.texi
    branches/gcc-4_5-branch/gcc/fortran/gfortranspec.c
    branches/gcc-4_5-branch/gcc/fortran/invoke.texi
    branches/gcc-4_5-branch/gcc/fortran/lang-specs.h
    branches/gcc-4_5-branch/gcc/fortran/lang.opt
    branches/gcc-4_5-branch/gcc/fortran/module.c
    branches/gcc-4_5-branch/gcc/fortran/scanner.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] [4.4 regression] gfortran does not support -Wp, -MD  for *.F
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (15 preceding siblings ...)
  2010-08-07 16:52 ` jvdelisle at gcc dot gnu dot org
@ 2010-08-07 18:18 ` mikael at gcc dot gnu dot org
  2010-08-07 18:22 ` kirr at landau dot phys dot spbu dot ru
                   ` (4 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: mikael at gcc dot gnu dot org @ 2010-08-07 18:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from mikael at gcc dot gnu dot org  2010-08-07 18:18 -------
(In reply to comment #14)
> Thanks again. But why 4.3? It's 4.4 and 4.5 which need fixing. 4.3 is
> ok. Am I misunderstanding something?
Sorry, my mistake.
Changed accordingly (and according to the fix committed by Jerry). 


-- 

mikael at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.3/4.4 regression]        |[4.4 regression] gfortran
                   |gfortran does not support - |does not support -Wp, -MD
                   |Wp, -MD  for *.F            |for *.F
   Target Milestone|4.3.6                       |4.4.5


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] [4.4 regression] gfortran does not support -Wp, -MD  for *.F
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (16 preceding siblings ...)
  2010-08-07 18:18 ` [Bug fortran/43954] [4.4 " mikael at gcc dot gnu dot org
@ 2010-08-07 18:22 ` kirr at landau dot phys dot spbu dot ru
  2010-08-07 18:26 ` jvdelisle at verizon dot net
                   ` (3 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: kirr at landau dot phys dot spbu dot ru @ 2010-08-07 18:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #18 from kirr at landau dot phys dot spbu dot ru  2010-08-07 18:21 -------
Subject: Re:  [4.3/4.4 regression] gfortran does not support -Wp, -MD  for *.F

On Sat, Aug 07, 2010 at 04:52:14PM -0000, jvdelisle at gcc dot gnu dot org
wrote:
> ------- Comment #16 from jvdelisle at gcc dot gnu dot org  2010-08-07 16:52 -------
> Subject: Bug 43954
> 
> Author: jvdelisle
> Date: Sat Aug  7 16:51:55 2010
> New Revision: 162980
> 
> URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=162980
> Log:
> 2010-08-07  Daniel Franke  <franke.daniel@gmail.com>
> 
>         2010-06-13  Daniel Franke  <franke.daniel@gmail.com>
> 
>         PR fortran/31588
>         PR fortran/43954
>         Backport from mainline:
...

Thanks a lot!

Only if you could please also apply the -4.4 version. *Please*

The rationale for this is that 4.4 will be the default compiler in the
next upcoming Debian stable.


Thanks,
Kirill


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] [4.4 regression] gfortran does not support -Wp, -MD  for *.F
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (17 preceding siblings ...)
  2010-08-07 18:22 ` kirr at landau dot phys dot spbu dot ru
@ 2010-08-07 18:26 ` jvdelisle at verizon dot net
  2010-08-08  1:59 ` jvdelisle at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  21 siblings, 0 replies; 24+ messages in thread
From: jvdelisle at verizon dot net @ 2010-08-07 18:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #19 from jvdelisle at verizon dot net  2010-08-07 18:25 -------
Subject: Re:  [4.4 regression] gfortran does not support
 -Wp, -MD  for *.F


> Thanks a lot!
>
> Only if you could please also apply the -4.4 version. *Please*
>
> The rationale for this is that 4.4 will be the default compiler in the
> next upcoming Debian stable.

Will do.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] [4.4 regression] gfortran does not support -Wp, -MD  for *.F
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (18 preceding siblings ...)
  2010-08-07 18:26 ` jvdelisle at verizon dot net
@ 2010-08-08  1:59 ` jvdelisle at gcc dot gnu dot org
  2010-08-08  5:29 ` jvdelisle at gcc dot gnu dot org
  2010-08-08  9:20 ` kirr at landau dot phys dot spbu dot ru
  21 siblings, 0 replies; 24+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2010-08-08  1:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #20 from jvdelisle at gcc dot gnu dot org  2010-08-08 01:59 -------
Subject: Bug 43954

Author: jvdelisle
Date: Sun Aug  8 01:59:15 2010
New Revision: 162990

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=162990
Log:
2010-08-07  Daniel Franke  <franke.daniel@gmail.com>

        PR fortran/31588
        PR fortran/43954
        Backport from mainline:
        * gfortranspec.c (lang_specific_driver): Removed deprecation
        warning for -M.
        * lang.opt: Add options -M, -MM, -MD, -MMD, -MF, -MG, -MP, -MT, -MQ.
        * lang-specs.h (CPP_FORWARD_OPTIONS): Add -M* options.
        * cpp.h (gfc_cpp_makedep): New.
        (gfc_cpp_add_dep): New.
        (gfc_cpp_add_target): New.
        * cpp.c (gfc_cpp_option): Add deps* members.
        (gfc_cpp_makedep): New.
        (gfc_cpp_add_dep): New.
        (gfc_cpp_add_target): New.
        (gfc_cpp_init_options): Initialize new options.
        (gfc_cpp_handle_option): Handle new options.
        (gfc_cpp_post_options): Map new options to libcpp-options.
        (gfc_cpp_init): Handle deferred -MQ and -MT options.
        (gfc_cpp_done): If requested, write dependencies to file.
        * module.c (gfc_dump_module): Add a module filename as target.
        * scanner.c (open_included_file): New parameter system; add the
        included file as dependency.
        (gfc_open_included_file): Add the included file as dependency.
        (gfc_open_intrinsic_module): Likewise.
        * invoke.texi: Removed deprecation warning for -M.
        * gfortran.texi: Removed Makefile-dependencies project.

Modified:
    branches/gcc-4_4-branch/gcc/fortran/ChangeLog
    branches/gcc-4_4-branch/gcc/fortran/cpp.c
    branches/gcc-4_4-branch/gcc/fortran/cpp.h
    branches/gcc-4_4-branch/gcc/fortran/gfortran.texi
    branches/gcc-4_4-branch/gcc/fortran/gfortranspec.c
    branches/gcc-4_4-branch/gcc/fortran/invoke.texi
    branches/gcc-4_4-branch/gcc/fortran/lang-specs.h
    branches/gcc-4_4-branch/gcc/fortran/lang.opt
    branches/gcc-4_4-branch/gcc/fortran/module.c
    branches/gcc-4_4-branch/gcc/fortran/scanner.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] [4.4 regression] gfortran does not support -Wp, -MD  for *.F
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (19 preceding siblings ...)
  2010-08-08  1:59 ` jvdelisle at gcc dot gnu dot org
@ 2010-08-08  5:29 ` jvdelisle at gcc dot gnu dot org
  2010-08-08  9:20 ` kirr at landau dot phys dot spbu dot ru
  21 siblings, 0 replies; 24+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2010-08-08  5:29 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #21 from jvdelisle at gcc dot gnu dot org  2010-08-08 05:29 -------
Closing


-- 

jvdelisle at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] [4.4 regression] gfortran does not support -Wp, -MD  for *.F
  2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
                   ` (20 preceding siblings ...)
  2010-08-08  5:29 ` jvdelisle at gcc dot gnu dot org
@ 2010-08-08  9:20 ` kirr at landau dot phys dot spbu dot ru
  21 siblings, 0 replies; 24+ messages in thread
From: kirr at landau dot phys dot spbu dot ru @ 2010-08-08  9:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #22 from kirr at landau dot phys dot spbu dot ru  2010-08-08 09:20 -------
Thanks!


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954


^ permalink raw reply	[flat|nested] 24+ messages in thread

* [Bug fortran/43954] [4.4 regression] gfortran does not support -Wp, -MD  for *.F
       [not found] <bug-43954-4@http.gcc.gnu.org/bugzilla/>
@ 2014-02-16 13:14 ` jackie.rosen at hushmail dot com
  0 siblings, 0 replies; 24+ messages in thread
From: jackie.rosen at hushmail dot com @ 2014-02-16 13:14 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43954

Jackie Rosen <jackie.rosen at hushmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jackie.rosen at hushmail dot com

--- Comment #23 from Jackie Rosen <jackie.rosen at hushmail dot com> ---
*** Bug 260998 has been marked as a duplicate of this bug. ***
Seen from the domain http://volichat.com
Page where seen: http://volichat.com/adult-chat-rooms
Marked for reference. Resolved as fixed @bugzilla.


^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2014-02-16 13:14 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-01 17:23 [Bug fortran/43954] New: gfortran-4.4 does not support -Wp, -MD for *.F (4.3 -> 4.4 regression, needed for auto-dependencies) kirr at landau dot phys dot spbu dot ru
2010-05-03 18:09 ` [Bug fortran/43954] " dfranke at gcc dot gnu dot org
2010-05-03 19:23 ` kirr at landau dot phys dot spbu dot ru
2010-05-03 19:45 ` dfranke at gcc dot gnu dot org
2010-05-04  7:45 ` kirr at landau dot phys dot spbu dot ru
2010-05-04 16:46 ` kargl at gcc dot gnu dot org
2010-05-05 16:24 ` kirr at landau dot phys dot spbu dot ru
2010-06-13 16:06 ` dfranke at gcc dot gnu dot org
2010-06-13 16:09 ` dfranke at gcc dot gnu dot org
2010-06-28 18:04 ` kirr at landau dot phys dot spbu dot ru
2010-06-28 18:05 ` kirr at landau dot phys dot spbu dot ru
2010-06-28 18:06 ` kirr at landau dot phys dot spbu dot ru
2010-08-07 10:49 ` kirr at landau dot phys dot spbu dot ru
2010-08-07 11:25 ` [Bug fortran/43954] [4.3/4.4 regression] gfortran does not support -Wp, -MD for *.F mikael at gcc dot gnu dot org
2010-08-07 13:27 ` kirr at landau dot phys dot spbu dot ru
2010-08-07 15:44 ` jvdelisle at gcc dot gnu dot org
2010-08-07 16:52 ` jvdelisle at gcc dot gnu dot org
2010-08-07 18:18 ` [Bug fortran/43954] [4.4 " mikael at gcc dot gnu dot org
2010-08-07 18:22 ` kirr at landau dot phys dot spbu dot ru
2010-08-07 18:26 ` jvdelisle at verizon dot net
2010-08-08  1:59 ` jvdelisle at gcc dot gnu dot org
2010-08-08  5:29 ` jvdelisle at gcc dot gnu dot org
2010-08-08  9:20 ` kirr at landau dot phys dot spbu dot ru
     [not found] <bug-43954-4@http.gcc.gnu.org/bugzilla/>
2014-02-16 13:14 ` jackie.rosen at hushmail dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).