Changes between Version 7 and Version 8 of StartTestingLinuxOnWindows


Ignore:
Timestamp:
Dec 16, 2013, 2:46:26 PM (9 years ago)
Author:
Beman Dawes
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • StartTestingLinuxOnWindows

    v7 v8  
    109109
    110110{{{
    111 $ git config --global user.name "Beman Dawes"
    112 $ git config --global user.email bdawes@acm.org
     111$ git config --global user.name "Your Name"
     112$ git config --global user.email you@what.ever
    113113$ git config --global core.autocrlf input
    114114$ git config -l
    115 user.name=Beman Dawes
    116 user.email=bdawes@acm.org
     115user.name=Your Name
     116user.email=you@what.ever
    117117core.autocrlf=input
     118}}}
     119
     120== Set up Boost ==
     121
     122This is the procedure described in [wiki:TryModBoost Getting Started with Modular Boost].
     123
     124{{{
    118125$ git clone --recursive git@github.com:boostorg/boost.git modular-boost
    119126Cloning into 'modular-boost'...
    120127...
     128$ ./bootstrap.sh
     129...
     130sudo mv b2 /usr/bin
    121131}}}
     132
     133That last command moves {{{b2}}} to {{{/usr/bin}}}, which is in the default path and so allows use of {{{b2}}} without specifying the path.
     134
     135{{{
     136b2 headers
     137}}}
     138
     139
     140
    122141
    123142