From: Steve Ellcey Date: Wed, 26 Sep 2012 22:47:22 +0000 (+0000) Subject: re PR web/54711 (Fix --target_board examples on test.html page) X-Git-Tag: misc/gccgo-go1_1_2~620 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f11ec71caca4c53bd14eb65ff0c46cc0e9af557;p=thirdparty%2Fgcc.git re PR web/54711 (Fix --target_board examples on test.html page) 2012-09-26 Steve Ellcey PR web/54711 * doc/install.texi: Fix example. From-SVN: r191781 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b169687fa481..3fb0b0130a22 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-09-26 Steve Ellcey + + PR web/54711 + * doc/install.texi: Fix example. + 2012-09-26 Dehao Chen * tree-ssa-live.c (clear_unused_block_pointer): Use explicitit (void) diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index d4384e87712d..cbd49f50d90f 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