public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [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; 7+ 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] 7+ 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
                   ` (4 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
  5 siblings, 0 replies; 7+ 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] 7+ 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
                   ` (3 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
  5 siblings, 0 replies; 7+ 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] 7+ 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
                   ` (2 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
  5 siblings, 0 replies; 7+ 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] 7+ 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
  2010-08-07 18:18 ` [Bug fortran/43954] [4.4 regression] gfortran does not support -Wp, -MD for *.F 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
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ 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] 7+ 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
  2010-08-07 18:18 ` [Bug fortran/43954] [4.4 regression] gfortran does not support -Wp, -MD for *.F 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)
  5 siblings, 0 replies; 7+ 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] 7+ 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
@ 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)
  5 siblings, 0 replies; 7+ 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] 7+ messages in thread

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

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-43954-4@http.gcc.gnu.org/bugzilla/>
2014-02-16 13:14 ` [Bug fortran/43954] [4.4 regression] gfortran does not support -Wp, -MD for *.F jackie.rosen at hushmail dot com
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-08-07 18:18 ` [Bug fortran/43954] [4.4 regression] gfortran does not support -Wp, -MD for *.F 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

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).