Changes between Version 54 and Version 55 of BoostDocs/GettingStarted


Ignore:
Timestamp:
May 27, 2010, 1:26:20 PM (12 years ago)
Author:
Beman Dawes
Comment:

Fix some cygwin paths and some formatting

Legend:

Unmodified
Added
Removed
Modified
  • BoostDocs/GettingStarted

    v54 v55  
    2020[[Image(https://svn.boost.org/trac/boost/raw-attachment/wiki/BoostDocs/GettingStarted/documentation-toolchain.png)]]
    2121
    22 === Windows, running under the Windows command prompt and using Cygwin tools ===
     22=== Windows, using the Windows command prompt and Cygwin toolchain ===
    2323
    2424First, you need to get the boost build tools set up.
     
    3838will need to set up your own in the Cygwin bin directory:
    3939
    40   * `cd ''cygwin-root''/bin`
     40  * `cd `''cygwin-root''`/bin`
    4141  * `mklink latex.exe pdfetex.exe`
    4242  * `mklink gswin32c.exe gs.exe`
     
    4646Build bjam. Be sure to under the Windows command prompt rather than Cygwin bash:
    4747
    48   * `cd ''boost-root''/tools/jam/src`
     48  * `cd `''boost-root''`/tools/jam/src`
    4949  * `build`
    5050  * copy `bin.ntx86\bjam.exe` to a directory in your path.
    5151
    52 Be sure your home directory bjam configuration file (`%HOMEDRIVE%\%HOMEPATH%\user-config.jam`) is set up correctly:
    53 
    54 {{{
    55 using msvc ;  # or some other compiler
     52Be sure your home directory bjam configuration file (`%HOMEDRIVE%\%HOMEPATH%\user-config.jam`) is set up correctly.
     53Here is an actual user-config.jam for a machine with Cygwin installed in c:\cygwin and several C++ compilers configured:
     54
     55{{{
     56using msvc : 9.0express ;
     57using msvc : 10.0express ;
     58using gcc : 4.3 : c:/cygwin/bin/g++-4 ;
     59
     60# MinGW from www.equation.com/servlet/equation.cmd?fa=fortran
     61using gcc : 4.4 : c:/mingw/gcc-4.4/bin/g++ : <cxxflags>"-std=gnu++0x" ;
    5662
    5763using xsltproc ;
    5864
    5965using boostbook
    60     : c:/boost/docbook/xsl
    61     : c:/boost/docbook/dtd
     66    : c:/cygwin/usr/share/sgml/docbook/xsl-stylesheets
     67    : c:/cygwin/usr/share/sgml/docbook/xml-dtd-4.2
    6268    ;
    6369
     
    6672}}}
    6773
    68 === Windows, running under the Windows command prompt and using manually downloaded tools ===
     74=== Windows, using the Windows command prompt and manually downloaded toolchain ===
    6975
    7076First, you need to get the boost build tools set up, see [http://www.boost.org/doc/libs/1_37_0/more/getting_started/index.html the getting started guide] for an introduction.
     
    117123}}}
    118124
    119 === Windows, running under bash and using Cygwin tools ===
     125=== Windows, using bash and Cygwin toolchain ===
    120126
    121127First, you need to get the boost build tools set up. `bjam` will need to be built using cygwin, so don't use the prebuilt windows binary.