public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/8677] "gcc -v" should report options used for bootstrap
       [not found] <20021122072603.8677.nirkko@dkf6.unibe.ch>
@ 2003-06-09 19:47 ` pme@gcc.gnu.org
  2003-06-10  5:01 ` neroden@gcc.gnu.org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pme@gcc.gnu.org @ 2003-06-09 19:47 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pme@gcc.gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
          Component|other                       |bootstrap
           Priority|P3                          |P4
   Last reconfirmed|2003-05-23 19:59:18         |2003-06-09 19:47:50
               date|                            |


------- Additional Comments From pme@gcc.gnu.org  2003-06-09 19:47 -------
This shouldn't be difficult to do; I'll have a go later while waiting on
other bootstraps.  :-)


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

* [Bug bootstrap/8677] "gcc -v" should report options used for bootstrap
       [not found] <20021122072603.8677.nirkko@dkf6.unibe.ch>
  2003-06-09 19:47 ` [Bug bootstrap/8677] "gcc -v" should report options used for bootstrap pme@gcc.gnu.org
@ 2003-06-10  5:01 ` neroden@gcc.gnu.org
  2003-06-11 20:25 ` pme@gcc.gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: neroden@gcc.gnu.org @ 2003-06-10  5:01 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From neroden@gcc.gnu.org  2003-06-10 05:01 -------
This may not be as easy as it looks.gcc -v reports the arguments to (top level) 'configure', which are at least all in one place.The information here is scattered through an unfortunate number of different Make macros.  It's non-trivial to catch the arguments to 'make', so we have to decide which of the various macros we want to catch the contents of. :-(


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

* [Bug bootstrap/8677] "gcc -v" should report options used for bootstrap
       [not found] <20021122072603.8677.nirkko@dkf6.unibe.ch>
  2003-06-09 19:47 ` [Bug bootstrap/8677] "gcc -v" should report options used for bootstrap pme@gcc.gnu.org
  2003-06-10  5:01 ` neroden@gcc.gnu.org
@ 2003-06-11 20:25 ` pme@gcc.gnu.org
  2003-07-05 21:32 ` neroden at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pme@gcc.gnu.org @ 2003-06-11 20:25 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pme@gcc.gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pme@gcc.gnu.org


------- Additional Comments From pme@gcc.gnu.org  2003-06-11 20:25 -------
What about gcc/Makefile performing something like

echo static const char horkload_of_flags[] = "${ALL_CFLAGS}"; >> configargs.h

before compiling gcc.c?


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

* [Bug bootstrap/8677] "gcc -v" should report options used for bootstrap
       [not found] <20021122072603.8677.nirkko@dkf6.unibe.ch>
                   ` (2 preceding siblings ...)
  2003-06-11 20:25 ` pme@gcc.gnu.org
@ 2003-07-05 21:32 ` neroden at gcc dot gnu dot org
  2003-07-06 22:14 ` pme at gcc dot gnu dot org
  2003-08-24 20:04 ` neroden at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: neroden at gcc dot gnu dot org @ 2003-07-05 21:32 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From neroden at gcc dot gnu dot org  2003-07-05 21:32 -------
That's a start.  Putting that in the build rule for gcc.c does evil things to the dependency system in the Makefile though... and doesn't actually 
guarantee that those are the same ALL_CFLAGS used for the other C files.

I'm hoping to get bootstrap moved out to the top level soon, which should eliminate the recursiveness of gcc/Makefile and make this problem 
significantly easier to deal with (since there will be only one invocation of 'make', we can trust the flags present while it's running, is the 
idea).


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

* [Bug bootstrap/8677] "gcc -v" should report options used for bootstrap
       [not found] <20021122072603.8677.nirkko@dkf6.unibe.ch>
                   ` (3 preceding siblings ...)
  2003-07-05 21:32 ` neroden at gcc dot gnu dot org
@ 2003-07-06 22:14 ` pme at gcc dot gnu dot org
  2003-08-24 20:04 ` neroden at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: pme at gcc dot gnu dot org @ 2003-07-06 22:14 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pme at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |pme at gcc dot gnu dot org
                   |dot org                     |
   Target Milestone|---                         |3.4


------- Additional Comments From pme at gcc dot gnu dot org  2003-07-06 22:14 -------
Okay then, I'll wait until after that happens.  Thanks!


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

* [Bug bootstrap/8677] "gcc -v" should report options used for bootstrap
       [not found] <20021122072603.8677.nirkko@dkf6.unibe.ch>
                   ` (4 preceding siblings ...)
  2003-07-06 22:14 ` pme at gcc dot gnu dot org
@ 2003-08-24 20:04 ` neroden at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: neroden at gcc dot gnu dot org @ 2003-08-24 20:04 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


neroden at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.4                         |---


------- Additional Comments From neroden at gcc dot gnu dot org  2003-08-24 20:04 -------
Put off beyond 3.4, since bootstrap probably isn't going to move to the top level until 3.5 stage 1.


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

* [Bug bootstrap/8677] "gcc -v" should report options used for bootstrap
       [not found] <bug-8677-476@http.gcc.gnu.org/bugzilla/>
@ 2008-12-04 20:21 ` tkoenig at gcc dot gnu dot org
  0 siblings, 0 replies; 7+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2008-12-04 20:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from tkoenig at gcc dot gnu dot org  2008-12-04 20:18 -------
Fixed a long time ago.

Closing.

$ gcc -v
Using built-in specs.
Target: i686-pc-linux-gnu
Configured with: ../../gcc/trunk/configure --prefix=/home/ig25
--enable-languages=c,fortran --enable-maintainer-mode
Thread model: posix
gcc version 4.4.0 20081122 (experimental) (GCC)


-- 

tkoenig at gcc dot gnu dot org changed:

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


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


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

end of thread, other threads:[~2008-12-04 20:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20021122072603.8677.nirkko@dkf6.unibe.ch>
2003-06-09 19:47 ` [Bug bootstrap/8677] "gcc -v" should report options used for bootstrap pme@gcc.gnu.org
2003-06-10  5:01 ` neroden@gcc.gnu.org
2003-06-11 20:25 ` pme@gcc.gnu.org
2003-07-05 21:32 ` neroden at gcc dot gnu dot org
2003-07-06 22:14 ` pme at gcc dot gnu dot org
2003-08-24 20:04 ` neroden at gcc dot gnu dot org
     [not found] <bug-8677-476@http.gcc.gnu.org/bugzilla/>
2008-12-04 20:21 ` tkoenig at gcc dot gnu dot 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).