Changes between Version 7 and Version 8 of StartTestingLinuxOnWindows
- Timestamp:
- Dec 16, 2013, 2:46:26 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StartTestingLinuxOnWindows
v7 v8 109 109 110 110 {{{ 111 $ git config --global user.name " Beman Dawes"112 $ git config --global user.email bdawes@acm.org111 $ git config --global user.name "Your Name" 112 $ git config --global user.email you@what.ever 113 113 $ git config --global core.autocrlf input 114 114 $ git config -l 115 user.name= Beman Dawes116 user.email= bdawes@acm.org115 user.name=Your Name 116 user.email=you@what.ever 117 117 core.autocrlf=input 118 }}} 119 120 == Set up Boost == 121 122 This is the procedure described in [wiki:TryModBoost Getting Started with Modular Boost]. 123 124 {{{ 118 125 $ git clone --recursive git@github.com:boostorg/boost.git modular-boost 119 126 Cloning into 'modular-boost'... 120 127 ... 128 $ ./bootstrap.sh 129 ... 130 sudo mv b2 /usr/bin 121 131 }}} 132 133 That 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 {{{ 136 b2 headers 137 }}} 138 139 140 122 141 123 142