public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug build/28554] New: Undefined generate-md5
@ 2021-11-06  3:22 hjl.tools at gmail dot com
  2021-11-06  8:04 ` [Bug build/28554] " schwab@linux-m68k.org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: hjl.tools at gmail dot com @ 2021-11-06  3:22 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28554

            Bug ID: 28554
           Summary: Undefined generate-md5
           Product: glibc
           Version: 2.35
            Status: NEW
          Severity: normal
          Priority: P2
         Component: build
          Assignee: unassigned at sourceware dot org
          Reporter: hjl.tools at gmail dot com
                CC: carlos at redhat dot com
  Target Milestone: ---

Makerules has

define +make-deps
$(make-target-directory)
$(+mkdep) $< $(if $(filter %.c,$<),$(CFLAGS)) \
             $(CPPFLAGS) $($(patsubst .%,%,$(suffix $(<F)))-CPPFLAGS) | sed -e\
's,$(subst .,\.,$(@F:.d=.o)),$(foreach o,$(all-object-suffixes),$(@:.d=$o))
$@,' \
$(sed-remove-objpfx) $(sed-remove-dotdot) > $(@:.d=.T)
mv -f $(@:.d=.T) $@ $(generate-md5)
endef

But generate-md5 is undefined and removed by

commit 362f5ae2c1641904ccf489742a4a3440e7e10814
Author: Roland McGrath <roland@gnu.org>
Date:   Fri May 2 02:21:25 2003 +0000

    * sysdeps/generic/bp-thunks.h: Protect includes with [!__ASSEMBLER__].

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug build/28554] Undefined generate-md5
  2021-11-06  3:22 [Bug build/28554] New: Undefined generate-md5 hjl.tools at gmail dot com
@ 2021-11-06  8:04 ` schwab@linux-m68k.org
  2021-11-06  8:11 ` schwab@linux-m68k.org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: schwab@linux-m68k.org @ 2021-11-06  8:04 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28554

--- Comment #1 from Andreas Schwab <schwab@linux-m68k.org> ---
2003-05-01  Roland McGrath  <roland@redhat.com>

        * Makerules (compile-mkdep-flags): New variable, pass -MD -MF $@.d.
        (compile-command.S): Don't use ifndef.  Append $(compile-mkdep-flags).
        (compile-command.s, compile-command.c): Likewise.
        ($(objpfx)%.d): All such pattern rules removed.
        ($(+sysdir_pfx)sysd-rules): Don't generate them.
        ($(common-objpfx)dummy.d): Target removed.
        (make-dummy-dep): Variable removed.
        (generate-md5): Likewise.
        (%.d: %.dt): New pattern rule.
        (+depfiles): Use $(wildcard) function to get just existing *.d files
        and .d files for existing *.dt files.
        (common-clean): Remove all *.d and *.dt files.
        (before-compile): Add $(objpfx). when it doesn't exist,
        regardless of $(no_deps).
        * elf/rtld-Rules ($(objpfx)rtld-%.d): All such pattern rules removed.
        (rtld-depfiles): Use .os.d instead of .d names.
        Include existing *.d files and .d files for existing *.dt files.
        * Makerules ($(common-objpfx)%.make): Protect with [! subdir].
        Use -MD, -MT and -MF flags instead of SUNPRO_DEPENDENCIES variable.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug build/28554] Undefined generate-md5
  2021-11-06  3:22 [Bug build/28554] New: Undefined generate-md5 hjl.tools at gmail dot com
  2021-11-06  8:04 ` [Bug build/28554] " schwab@linux-m68k.org
@ 2021-11-06  8:11 ` schwab@linux-m68k.org
  2021-11-06 13:22 ` cvs-commit at gcc dot gnu.org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: schwab@linux-m68k.org @ 2021-11-06  8:11 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28554

--- Comment #2 from Andreas Schwab <schwab@linux-m68k.org> ---
+make-deps is only used in sysdeps/unix/Makefile any more.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug build/28554] Undefined generate-md5
  2021-11-06  3:22 [Bug build/28554] New: Undefined generate-md5 hjl.tools at gmail dot com
  2021-11-06  8:04 ` [Bug build/28554] " schwab@linux-m68k.org
  2021-11-06  8:11 ` schwab@linux-m68k.org
@ 2021-11-06 13:22 ` cvs-commit at gcc dot gnu.org
  2021-11-06 13:23 ` hjl.tools at gmail dot com
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-11-06 13:22 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28554

--- Comment #3 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by H.J. Lu <hjl@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=d465e5e0daf6cf62435d1fb232c893893bbc3762

commit d465e5e0daf6cf62435d1fb232c893893bbc3762
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Sat Nov 6 06:16:30 2021 -0700

    Remove the last trace of generate-md5 [BZ #28554]

    generate-md5 was removed by

    commit d73f5331ce5370ca5a879229e3842f5de98689cd
    Author: Roland McGrath <roland@gnu.org>
    Date:   Fri May 2 02:20:45 2003 +0000

        2003-05-01  Roland McGrath  <roland@redhat.com>

    Remove its last trace.  This fixes BZ #28554.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug build/28554] Undefined generate-md5
  2021-11-06  3:22 [Bug build/28554] New: Undefined generate-md5 hjl.tools at gmail dot com
                   ` (2 preceding siblings ...)
  2021-11-06 13:22 ` cvs-commit at gcc dot gnu.org
@ 2021-11-06 13:23 ` hjl.tools at gmail dot com
  2021-11-06 13:36 ` schwab@linux-m68k.org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: hjl.tools at gmail dot com @ 2021-11-06 13:23 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28554

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |2.35
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

--- Comment #4 from H.J. Lu <hjl.tools at gmail dot com> ---
Fixed for 2.35.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug build/28554] Undefined generate-md5
  2021-11-06  3:22 [Bug build/28554] New: Undefined generate-md5 hjl.tools at gmail dot com
                   ` (3 preceding siblings ...)
  2021-11-06 13:23 ` hjl.tools at gmail dot com
@ 2021-11-06 13:36 ` schwab@linux-m68k.org
  2021-11-10 12:55 ` cvs-commit at gcc dot gnu.org
  2021-11-10 13:31 ` hjl.tools at gmail dot com
  6 siblings, 0 replies; 8+ messages in thread
From: schwab@linux-m68k.org @ 2021-11-06 13:36 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28554

Andreas Schwab <schwab@linux-m68k.org> changed:

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

--- Comment #5 from Andreas Schwab <schwab@linux-m68k.org> ---
+make-deps should be removed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug build/28554] Undefined generate-md5
  2021-11-06  3:22 [Bug build/28554] New: Undefined generate-md5 hjl.tools at gmail dot com
                   ` (4 preceding siblings ...)
  2021-11-06 13:36 ` schwab@linux-m68k.org
@ 2021-11-10 12:55 ` cvs-commit at gcc dot gnu.org
  2021-11-10 13:31 ` hjl.tools at gmail dot com
  6 siblings, 0 replies; 8+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-11-10 12:55 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28554

--- Comment #6 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by H.J. Lu <hjl@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=0bd356df1afb0591470499813d4ebae9bcedd6a6

commit 0bd356df1afb0591470499813d4ebae9bcedd6a6
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Sat Nov 6 06:46:43 2021 -0700

    Remove the unused +mkdep/+make-deps/s-proto.S/s-proto-cancel.S

    Since

    commit d73f5331ce5370ca5a879229e3842f5de98689cd
    Author: Roland McGrath <roland@gnu.org>
    Date:   Fri May 2 02:20:45 2003 +0000

        2003-05-01  Roland McGrath  <roland@redhat.com>

    dependency is generated by passing -MD -MF to compiler.  Remove the unused
    +mkdep, +make-deps, s-proto.S and s-proto-cancel.S.

    This fixes BZ #28554.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug build/28554] Undefined generate-md5
  2021-11-06  3:22 [Bug build/28554] New: Undefined generate-md5 hjl.tools at gmail dot com
                   ` (5 preceding siblings ...)
  2021-11-10 12:55 ` cvs-commit at gcc dot gnu.org
@ 2021-11-10 13:31 ` hjl.tools at gmail dot com
  6 siblings, 0 replies; 8+ messages in thread
From: hjl.tools at gmail dot com @ 2021-11-10 13:31 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28554

H.J. Lu <hjl.tools at gmail dot com> changed:

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

--- Comment #7 from H.J. Lu <hjl.tools at gmail dot com> ---
Fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

end of thread, other threads:[~2021-11-10 13:31 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-06  3:22 [Bug build/28554] New: Undefined generate-md5 hjl.tools at gmail dot com
2021-11-06  8:04 ` [Bug build/28554] " schwab@linux-m68k.org
2021-11-06  8:11 ` schwab@linux-m68k.org
2021-11-06 13:22 ` cvs-commit at gcc dot gnu.org
2021-11-06 13:23 ` hjl.tools at gmail dot com
2021-11-06 13:36 ` schwab@linux-m68k.org
2021-11-10 12:55 ` cvs-commit at gcc dot gnu.org
2021-11-10 13:31 ` hjl.tools at gmail 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).