public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug web/54711] New: Fix --target_board examples on test.html page
@ 2012-09-25 20:09 sje at gcc dot gnu.org
  2012-09-26  9:03 ` [Bug web/54711] " rguenth at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: sje at gcc dot gnu.org @ 2012-09-25 20:09 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 54711
           Summary: Fix --target_board examples on test.html page
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: web
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: sje@gcc.gnu.org


>From http://gcc.gnu.org/install/test.html


You can run the testsuites multiple times using combinations of options with a
syntax similar to the brace expansion of popular shells:

     ..."--target_board=arm-sim\{-mhard-float,-msoft-float\}\{-O1,-O2,-O3,\}"

(Note the empty option caused by the trailing comma in the final group.) The
following will run each testsuite eight times using the `arm-sim' target, as if
you had specified all possible combinations yourself:

     --target_board=arm-sim/-mhard-float/-O1
     --target_board=arm-sim/-mhard-float/-O2
     --target_board=arm-sim/-mhard-float/-O3
     --target_board=arm-sim/-mhard-float
     --target_board=arm-sim/-msoft-float/-O1
     --target_board=arm-sim/-msoft-float/-O2
     --target_board=arm-sim/-msoft-float/-O3
     --target_board=arm-sim/-msoft-float



If you run 'runtest' with multiple --target_board options only the last one
will get run.  The list should show:

     --target_board='arm-sim/-mhard-float/-O1 \
                     arm-sim/-mhard-float/-O2 \
                     arm-sim/-mhard-float/-O3 \
                     arm-sim/-mhard-float \
                     arm-sim/-msoft-float/-O1 \
                     arm-sim/-msoft-float/-O2 \
                     arm-sim/-msoft-float/-O3 \
                     arm-sim/-msoft-float'

I.e. a single --target_board option with multiple space separated board names.
That is the equivelant of the initial target_board list that uses the braces.


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

* [Bug web/54711] Fix --target_board examples on test.html page
  2012-09-25 20:09 [Bug web/54711] New: Fix --target_board examples on test.html page sje at gcc dot gnu.org
@ 2012-09-26  9:03 ` rguenth at gcc dot gnu.org
  2012-09-26 15:21 ` hp at gcc dot gnu.org
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-09-26  9:03 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #1 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-09-26 09:03:01 UTC ---
RUNTESTFLAGS="--target_board=unix/\{-m32,\}"

works for me as well.  You say the elaborated list needs fixing?  Care to
fix it yourself?


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

* [Bug web/54711] Fix --target_board examples on test.html page
  2012-09-25 20:09 [Bug web/54711] New: Fix --target_board examples on test.html page sje at gcc dot gnu.org
  2012-09-26  9:03 ` [Bug web/54711] " rguenth at gcc dot gnu.org
@ 2012-09-26 15:21 ` hp at gcc dot gnu.org
  2012-09-26 17:54 ` pinskia at gcc dot gnu.org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: hp at gcc dot gnu.org @ 2012-09-26 15:21 UTC (permalink / raw)
  To: gcc-bugs


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

Hans-Peter Nilsson <hp at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gerald at gcc dot gnu.org,
                   |                            |hp at gcc dot gnu.org

--- Comment #3 from Hans-Peter Nilsson <hp at gcc dot gnu.org> 2012-09-26 15:21:24 UTC ---
(In reply to comment #2)
> I am not sure where the sources
> for the web pages are.  Are they in the GCC source tree somewhere?
> I didn't see them.

Weird, IIRC instructions used to be on the write-access page.
Gerald?

>  Should changes to the pages be sent to the
> gcc-patches mailing list?

yes...


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

* [Bug web/54711] Fix --target_board examples on test.html page
  2012-09-25 20:09 [Bug web/54711] New: Fix --target_board examples on test.html page sje at gcc dot gnu.org
  2012-09-26  9:03 ` [Bug web/54711] " rguenth at gcc dot gnu.org
  2012-09-26 15:21 ` hp at gcc dot gnu.org
@ 2012-09-26 17:54 ` pinskia at gcc dot gnu.org
  2012-09-26 18:18 ` sje at gcc dot gnu.org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu.org @ 2012-09-26 17:54 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> 2012-09-26 17:53:48 UTC ---
(In reply to comment #3)
> (In reply to comment #2)
> > I am not sure where the sources
> > for the web pages are.  Are they in the GCC source tree somewhere?
> > I didn't see them.
> 
> Weird, IIRC instructions used to be on the write-access page.
> Gerald?
They are on the cvs.html page:
http://gcc.gnu.org/cvs.html

I don't know if they are linked from anywhere though.


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

* [Bug web/54711] Fix --target_board examples on test.html page
  2012-09-25 20:09 [Bug web/54711] New: Fix --target_board examples on test.html page sje at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2012-09-26 17:54 ` pinskia at gcc dot gnu.org
@ 2012-09-26 18:18 ` sje at gcc dot gnu.org
  2012-09-26 18:20 ` pinskia at gcc dot gnu.org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: sje at gcc dot gnu.org @ 2012-09-26 18:18 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #5 from Steve Ellcey <sje at gcc dot gnu.org> 2012-09-26 18:18:05 UTC ---
OK, I can check out wwwdocs but the page I am interested in doesn't seem to be
there.  On the web it is http://gcc.gnu.org/install/test.html, but I can't seem
to find this page in a checked out version of wwwdocs.  I did get an
htdocs/install directory but it does not include any files (other than CVS and
.cvsignore).


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

* [Bug web/54711] Fix --target_board examples on test.html page
  2012-09-25 20:09 [Bug web/54711] New: Fix --target_board examples on test.html page sje at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2012-09-26 18:18 ` sje at gcc dot gnu.org
@ 2012-09-26 18:20 ` pinskia at gcc dot gnu.org
  2012-09-26 22:47 ` sje at gcc dot gnu.org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu.org @ 2012-09-26 18:20 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> 2012-09-26 18:20:04 UTC ---
(In reply to comment #5)
> OK, I can check out wwwdocs but the page I am interested in doesn't seem to be
> there.  On the web it is http://gcc.gnu.org/install/test.html, but I can't seem
> to find this page in a checked out version of wwwdocs.  I did get an
> htdocs/install directory but it does not include any files (other than CVS and
> .cvsignore).

That is generated from gcc/docs/install.texi in svn.


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

* [Bug web/54711] Fix --target_board examples on test.html page
  2012-09-25 20:09 [Bug web/54711] New: Fix --target_board examples on test.html page sje at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2012-09-26 18:20 ` pinskia at gcc dot gnu.org
@ 2012-09-26 22:47 ` sje at gcc dot gnu.org
  2012-10-17 21:22 ` sje at gcc dot gnu.org
  2012-12-29 17:47 ` gerald at pfeifer dot com
  7 siblings, 0 replies; 9+ messages in thread
From: sje at gcc dot gnu.org @ 2012-09-26 22:47 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #7 from Steve Ellcey <sje at gcc dot gnu.org> 2012-09-26 22:47:26 UTC ---
Author: sje
Date: Wed Sep 26 22:47:22 2012
New Revision: 191781

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=191781
Log:
2012-09-26  Steve Ellcey  <sellcey@mips.com>

    PR web/54711
    * doc/install.texi: Fix example.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/doc/install.texi


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

* [Bug web/54711] Fix --target_board examples on test.html page
  2012-09-25 20:09 [Bug web/54711] New: Fix --target_board examples on test.html page sje at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2012-09-26 22:47 ` sje at gcc dot gnu.org
@ 2012-10-17 21:22 ` sje at gcc dot gnu.org
  2012-12-29 17:47 ` gerald at pfeifer dot com
  7 siblings, 0 replies; 9+ messages in thread
From: sje at gcc dot gnu.org @ 2012-10-17 21:22 UTC (permalink / raw)
  To: gcc-bugs


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

Steve Ellcey <sje at gcc dot gnu.org> changed:

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

--- Comment #8 from Steve Ellcey <sje at gcc dot gnu.org> 2012-10-17 21:22:04 UTC ---
This has been resolved now with the patch to install.texi.


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

* [Bug web/54711] Fix --target_board examples on test.html page
  2012-09-25 20:09 [Bug web/54711] New: Fix --target_board examples on test.html page sje at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2012-10-17 21:22 ` sje at gcc dot gnu.org
@ 2012-12-29 17:47 ` gerald at pfeifer dot com
  7 siblings, 0 replies; 9+ messages in thread
From: gerald at pfeifer dot com @ 2012-12-29 17:47 UTC (permalink / raw)
  To: gcc-bugs


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

Gerald Pfeifer <gerald at pfeifer dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gerald at pfeifer dot com

--- Comment #9 from Gerald Pfeifer <gerald at pfeifer dot com> 2012-12-29 17:46:48 UTC ---
I addressed comments 3-6 concerning our web pages / documentation
via the following two changes

  http://gcc.gnu.org/ml/gcc-patches/2012-12/msg01470.html
  http://gcc.gnu.org/ml/gcc-patches/2012-12/msg01468.html

and will be adding more over the next two weeks.


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

end of thread, other threads:[~2012-12-29 17:47 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-25 20:09 [Bug web/54711] New: Fix --target_board examples on test.html page sje at gcc dot gnu.org
2012-09-26  9:03 ` [Bug web/54711] " rguenth at gcc dot gnu.org
2012-09-26 15:21 ` hp at gcc dot gnu.org
2012-09-26 17:54 ` pinskia at gcc dot gnu.org
2012-09-26 18:18 ` sje at gcc dot gnu.org
2012-09-26 18:20 ` pinskia at gcc dot gnu.org
2012-09-26 22:47 ` sje at gcc dot gnu.org
2012-10-17 21:22 ` sje at gcc dot gnu.org
2012-12-29 17:47 ` gerald at pfeifer 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).