public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug other/46202] New: Makefile doesn't support install-strip
@ 2010-10-27 21:08 nightstrike at gmail dot com
  2010-11-01 16:41 ` [Bug other/46202] " rwild at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: nightstrike at gmail dot com @ 2010-10-27 21:08 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: Makefile doesn't support install-strip
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: other
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: nightstrike@gmail.com


The GNU Standards list install-strip as a required makefile target.  This
target isn't present, however.  See discussion here:

http://www.sourceware.org/ml/binutils/2010-10/msg00377.html


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

* [Bug other/46202] Makefile doesn't support install-strip
  2010-10-27 21:08 [Bug other/46202] New: Makefile doesn't support install-strip nightstrike at gmail dot com
@ 2010-11-01 16:41 ` rwild at gcc dot gnu.org
  2010-11-02 21:44 ` rwild at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: rwild at gcc dot gnu.org @ 2010-11-01 16:41 UTC (permalink / raw)
  To: gcc-bugs

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

Ralf Wildenhues <rwild at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2010.11.01 16:41:30
                 CC|                            |rwild at gcc dot gnu.org
         AssignedTo|unassigned at gcc dot       |rwild at gcc dot gnu.org
                   |gnu.org                     |
     Ever Confirmed|0                           |1


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

* [Bug other/46202] Makefile doesn't support install-strip
  2010-10-27 21:08 [Bug other/46202] New: Makefile doesn't support install-strip nightstrike at gmail dot com
  2010-11-01 16:41 ` [Bug other/46202] " rwild at gcc dot gnu.org
@ 2010-11-02 21:44 ` rwild at gcc dot gnu.org
  2010-11-20 19:40 ` rwild at gcc dot gnu.org
  2010-11-20 20:06 ` rwild at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: rwild at gcc dot gnu.org @ 2010-11-02 21:44 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Ralf Wildenhues <rwild at gcc dot gnu.org> 2010-11-02 21:44:12 UTC ---
Proposed patch at <http://gcc.gnu.org/ml/gcc-patches/2010-11/msg00192.html>.


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

* [Bug other/46202] Makefile doesn't support install-strip
  2010-10-27 21:08 [Bug other/46202] New: Makefile doesn't support install-strip nightstrike at gmail dot com
  2010-11-01 16:41 ` [Bug other/46202] " rwild at gcc dot gnu.org
  2010-11-02 21:44 ` rwild at gcc dot gnu.org
@ 2010-11-20 19:40 ` rwild at gcc dot gnu.org
  2010-11-20 20:06 ` rwild at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: rwild at gcc dot gnu.org @ 2010-11-20 19:40 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Ralf Wildenhues <rwild at gcc dot gnu.org> 2010-11-20 19:37:12 UTC ---
Author: rwild
Date: Sat Nov 20 19:37:08 2010
New Revision: 166980

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=166980
Log:
PR other/46202: implement install-strip.

/:
    PR other/46202
    * configure.ac: Fix just-built in-tree STRIP name to be
    binutils/strip-new.
    * configure: Regenerate.
    * Makefile.def (install-strip-gcc, install-strip-binutils)
    (install-strip-opcodes, install-strip-ld, install-strip-itcl)
    (install-strip-sid): Mirror dependencies on non-strip variants
    of these targets on the respective -strip prerequisites.
    * Makefile.tpl (install-strip, install-strip-host)
    (install-strip-target): New targets.
    (install-strip-[+module+], install-strip-target-[+module+]):
    New targets.
    * Makefile.in: Regenerate.

gcc/:
    PR other/46202
    * Makefile.in (install_sh, INSTALL_STRIP_PROGRAM): New
    variables.
    (AR_FOR_TARGET, RANLIB_FOR_TARGET, STRIP_FOR_TARGET): Fix
    shell quoting.
    (STRIP_FOR_TARGET): Look for in-tree strip under name strip-new.
    (install-strip): New target.
    (STRIPPROG): New variable, exported if STRIP is set.
    * doc/install.texi (Final install): Minor markup and code style
    fixes.  Document install-strip target.

fixincludes/:
    PR other/46202
    * Makefile.in (install-strip): New phony target.
    (all, check, install): Also mark as phony.

libgcc/:
    PR other/46202
    * Makefile.in (install-strip): New phony target.

libiberty/:
    PR other/46202
    * Makefile.in (install-strip): New phony target.
    (install): Also mark as phony.

gnattools/:
    PR other/46202
    * Makefile.in (install-strip): New phony target.
    (check, installcheck, info, dvi, pdf, html, install)
    (install-info, install-pdf, install-html, mostlyclean)
    (clean, distclean, maintainer-clean): Mark phony.

libada/:
    PR other/46202
    * Makefile.in (install-strip): New phony target.
    (check, installcheck, info, dvi, pdf, html, install)
    (install-info, install-pdf, install-html, mostlyclean)
    (clean, distclean, maintainer-clean): Mark phony.

Modified:
    trunk/ChangeLog
    trunk/Makefile.def
    trunk/Makefile.in
    trunk/Makefile.tpl
    trunk/configure
    trunk/configure.ac
    trunk/fixincludes/ChangeLog
    trunk/fixincludes/Makefile.in
    trunk/gcc/ChangeLog
    trunk/gcc/Makefile.in
    trunk/gcc/config/i386/t-cygming
    trunk/gcc/doc/install.texi
    trunk/gnattools/ChangeLog
    trunk/gnattools/Makefile.in
    trunk/libada/ChangeLog
    trunk/libada/Makefile.in
    trunk/libgcc/ChangeLog
    trunk/libgcc/Makefile.in
    trunk/libiberty/ChangeLog
    trunk/libiberty/Makefile.in


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

* [Bug other/46202] Makefile doesn't support install-strip
  2010-10-27 21:08 [Bug other/46202] New: Makefile doesn't support install-strip nightstrike at gmail dot com
                   ` (2 preceding siblings ...)
  2010-11-20 19:40 ` rwild at gcc dot gnu.org
@ 2010-11-20 20:06 ` rwild at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: rwild at gcc dot gnu.org @ 2010-11-20 20:06 UTC (permalink / raw)
  To: gcc-bugs

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

Ralf Wildenhues <rwild at gcc dot gnu.org> changed:

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

--- Comment #3 from Ralf Wildenhues <rwild at gcc dot gnu.org> 2010-11-20 19:40:13 UTC ---
Fixed in GCC trunk and src CVS.


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

end of thread, other threads:[~2010-11-20 19:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-10-27 21:08 [Bug other/46202] New: Makefile doesn't support install-strip nightstrike at gmail dot com
2010-11-01 16:41 ` [Bug other/46202] " rwild at gcc dot gnu.org
2010-11-02 21:44 ` rwild at gcc dot gnu.org
2010-11-20 19:40 ` rwild at gcc dot gnu.org
2010-11-20 20:06 ` rwild at gcc dot gnu.org

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