public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug plugins/51686] New: "make install-strip-gcc" didn't install liblto-plugin* files
@ 2011-12-27 18:05 norbinz at yahoo dot com
  2011-12-27 18:14 ` [Bug plugins/51686] " pinskia at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: norbinz at yahoo dot com @ 2011-12-27 18:05 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 51686
           Summary: "make install-strip-gcc" didn't install liblto-plugin*
                    files
    Classification: Unclassified
           Product: gcc
           Version: 4.6.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: norbinz@yahoo.com


In gcc-4.6.2, the top-level Makefile.in line 60018 is:
  install-gcc: maybe-install-lto-plugin
That's fine, but there's no corresponding line for stripped install:
  install-strip-gcc: maybe-install-strip-lto-plugin
Without that line, my "make install-strip-gcc" attempt did not install the
three liblto-plugin* files. My host Windows/MinGW/MSYS, target
microblaze-xilinx-elf.


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

* [Bug plugins/51686] "make install-strip-gcc" didn't install liblto-plugin* files
  2011-12-27 18:05 [Bug plugins/51686] New: "make install-strip-gcc" didn't install liblto-plugin* files norbinz at yahoo dot com
@ 2011-12-27 18:14 ` pinskia at gcc dot gnu.org
  2011-12-30  7:02 ` [Bug bootstrap/51686] " pinskia at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2011-12-27 18:14 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> 2011-12-27 18:04:41 UTC ---
Easy fix:
pinskia@server:~/src/local/gcc$ svn diff Makefile.def 
Index: Makefile.def
===================================================================
--- Makefile.def    (revision 182635)
+++ Makefile.def    (working copy)
@@ -314,6 +314,7 @@
 dependencies = { module=install-gcc ; on=install-fixincludes; };
 dependencies = { module=install-gcc ; on=install-lto-plugin; };
 dependencies = { module=install-strip-gcc ; on=install-strip-fixincludes; };
+dependencies = { module=install-strip-gcc ; on=install-strip-lto-plugin; };

 dependencies = { module=configure-libcpp; on=configure-libiberty; hard=true;
};
 dependencies = { module=configure-libcpp; on=configure-intl; };

--- CUT ---
And then regenerate Makefile.in.


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

* [Bug bootstrap/51686] "make install-strip-gcc" didn't install liblto-plugin* files
  2011-12-27 18:05 [Bug plugins/51686] New: "make install-strip-gcc" didn't install liblto-plugin* files norbinz at yahoo dot com
  2011-12-27 18:14 ` [Bug plugins/51686] " pinskia at gcc dot gnu.org
@ 2011-12-30  7:02 ` pinskia at gcc dot gnu.org
  2012-01-02 10:59 ` rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2011-12-30  7:02 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2011-12-30
     Ever Confirmed|0                           |1

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> 2011-12-30 06:36:06 UTC ---
Confirmed.


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

* [Bug bootstrap/51686] "make install-strip-gcc" didn't install liblto-plugin* files
  2011-12-27 18:05 [Bug plugins/51686] New: "make install-strip-gcc" didn't install liblto-plugin* files norbinz at yahoo dot com
  2011-12-27 18:14 ` [Bug plugins/51686] " pinskia at gcc dot gnu.org
  2011-12-30  7:02 ` [Bug bootstrap/51686] " pinskia at gcc dot gnu.org
@ 2012-01-02 10:59 ` rguenth at gcc dot gnu.org
  2012-01-02 11:02 ` rguenth at gcc dot gnu.org
  2012-01-02 11:02 ` rguenth at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-01-02 10:59 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-01-02 10:59:08 UTC ---
Author: rguenth
Date: Mon Jan  2 10:59:04 2012
New Revision: 182788

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=182788
Log:
2012-01-02  Richard Guenther  <rguenther@suse.de>

    PR bootstrap/51686
    * Makefile.def (install-strip-gcc): Depend on install-strip-lto-plugin.
    * Makefile.in: Regenerate.

Modified:
    trunk/ChangeLog
    trunk/Makefile.def
    trunk/Makefile.in


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

* [Bug bootstrap/51686] "make install-strip-gcc" didn't install liblto-plugin* files
  2011-12-27 18:05 [Bug plugins/51686] New: "make install-strip-gcc" didn't install liblto-plugin* files norbinz at yahoo dot com
                   ` (2 preceding siblings ...)
  2012-01-02 10:59 ` rguenth at gcc dot gnu.org
@ 2012-01-02 11:02 ` rguenth at gcc dot gnu.org
  2012-01-02 11:02 ` rguenth at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-01-02 11:02 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

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

--- Comment #5 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-01-02 11:02:25 UTC ---
Fixed.


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

* [Bug bootstrap/51686] "make install-strip-gcc" didn't install liblto-plugin* files
  2011-12-27 18:05 [Bug plugins/51686] New: "make install-strip-gcc" didn't install liblto-plugin* files norbinz at yahoo dot com
                   ` (3 preceding siblings ...)
  2012-01-02 11:02 ` rguenth at gcc dot gnu.org
@ 2012-01-02 11:02 ` rguenth at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-01-02 11:02 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-01-02 11:02:15 UTC ---
Author: rguenth
Date: Mon Jan  2 11:02:10 2012
New Revision: 182790

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=182790
Log:
2012-01-02  Richard Guenther  <rguenther@suse.de>

    PR bootstrap/51686
    * Makefile.def (install-strip-gcc): Depend on install-strip-lto-plugin.
    * Makefile.in: Regenerate.

Modified:
    branches/gcc-4_6-branch/ChangeLog
    branches/gcc-4_6-branch/Makefile.def
    branches/gcc-4_6-branch/Makefile.in


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

end of thread, other threads:[~2012-01-02 11:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-27 18:05 [Bug plugins/51686] New: "make install-strip-gcc" didn't install liblto-plugin* files norbinz at yahoo dot com
2011-12-27 18:14 ` [Bug plugins/51686] " pinskia at gcc dot gnu.org
2011-12-30  7:02 ` [Bug bootstrap/51686] " pinskia at gcc dot gnu.org
2012-01-02 10:59 ` rguenth at gcc dot gnu.org
2012-01-02 11:02 ` rguenth at gcc dot gnu.org
2012-01-02 11:02 ` rguenth 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).