diff options
author | Steve Ellcey <sellcey@mips.com> | 2012-09-26 22:47:22 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2012-09-26 22:47:22 +0000 |
commit | 5f11ec71caca4c53bd14eb65ff0c46cc0e9af557 (patch) | |
tree | d86c0003beb6940328b3da77c352d6b14e9ca65c /gcc | |
parent | f3633f55aafac9a9cb1b2e779bc94fb7a1f96685 (diff) | |
download | gcc-5f11ec71caca4c53bd14eb65ff0c46cc0e9af557.zip gcc-5f11ec71caca4c53bd14eb65ff0c46cc0e9af557.tar.gz gcc-5f11ec71caca4c53bd14eb65ff0c46cc0e9af557.tar.bz2 |
re PR web/54711 (Fix --target_board examples on test.html page)
2012-09-26 Steve Ellcey <sellcey@mips.com>
PR web/54711
* doc/install.texi: Fix example.
From-SVN: r191781
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/install.texi | 16 |
2 files changed, 13 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b169687..3fb0b01 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-09-26 Steve Ellcey <sellcey@mips.com> + + PR web/54711 + * doc/install.texi: Fix example. + 2012-09-26 Dehao Chen <dehao@google.com> * tree-ssa-live.c (clear_unused_block_pointer): Use explicitit (void) diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index d4384e8..cbd49f5 100644 --- a/gcc/doc/install.texi +++ b/gcc/doc/install.texi @@ -2567,14 +2567,14 @@ The following will run each testsuite eight times using the @samp{arm-sim} target, as if you had specified all possible combinations yourself: @smallexample ---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 +--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' @end smallexample They can be combined as many times as you wish, in arbitrary ways. This |