Changes between Version 54 and Version 55 of BoostDocs/GettingStarted
- Timestamp:
- May 27, 2010, 1:26:20 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BoostDocs/GettingStarted
v54 v55 20 20 [[Image(https://svn.boost.org/trac/boost/raw-attachment/wiki/BoostDocs/GettingStarted/documentation-toolchain.png)]] 21 21 22 === Windows, running under the Windows command prompt and using Cygwin tools===22 === Windows, using the Windows command prompt and Cygwin toolchain === 23 23 24 24 First, you need to get the boost build tools set up. … … 38 38 will need to set up your own in the Cygwin bin directory: 39 39 40 * `cd ''cygwin-root''/bin`40 * `cd `''cygwin-root''`/bin` 41 41 * `mklink latex.exe pdfetex.exe` 42 42 * `mklink gswin32c.exe gs.exe` … … 46 46 Build bjam. Be sure to under the Windows command prompt rather than Cygwin bash: 47 47 48 * `cd ''boost-root''/tools/jam/src`48 * `cd `''boost-root''`/tools/jam/src` 49 49 * `build` 50 50 * copy `bin.ntx86\bjam.exe` to a directory in your path. 51 51 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 52 Be sure your home directory bjam configuration file (`%HOMEDRIVE%\%HOMEPATH%\user-config.jam`) is set up correctly. 53 Here is an actual user-config.jam for a machine with Cygwin installed in c:\cygwin and several C++ compilers configured: 54 55 {{{ 56 using msvc : 9.0express ; 57 using msvc : 10.0express ; 58 using gcc : 4.3 : c:/cygwin/bin/g++-4 ; 59 60 # MinGW from www.equation.com/servlet/equation.cmd?fa=fortran 61 using gcc : 4.4 : c:/mingw/gcc-4.4/bin/g++ : <cxxflags>"-std=gnu++0x" ; 56 62 57 63 using xsltproc ; 58 64 59 65 using boostbook 60 : c:/ boost/docbook/xsl61 : c:/ boost/docbook/dtd66 : c:/cygwin/usr/share/sgml/docbook/xsl-stylesheets 67 : c:/cygwin/usr/share/sgml/docbook/xml-dtd-4.2 62 68 ; 63 69 … … 66 72 }}} 67 73 68 === Windows, running under the Windows command prompt and using manually downloaded tools===74 === Windows, using the Windows command prompt and manually downloaded toolchain === 69 75 70 76 First, 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. … … 117 123 }}} 118 124 119 === Windows, running under bash and using Cygwin tools===125 === Windows, using bash and Cygwin toolchain === 120 126 121 127 First, 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.