Changes between Version 18 and Version 19 of TryModBoost
- Timestamp:
- Dec 1, 2013, 2:46:15 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TryModBoost
v18 v19 17 17 == Line endings == 18 18 19 !GitHub and other git repositories by convention often choose to store text-like files with lf line endings. Windows users will usually want git to automatically apply cr/lf line endings, and can request that like this: 19 The Boost super-project and libraries ensure correct handling of line endings regardless of platform by supplying a {{{.gitattributes}}} file. However, you may also want to set {{{git config}}} options for managing line endings. 20 21 On OS X, Linux, and most other POSIX-like systems: 22 23 {{{ 24 git config --global core.autocrlf input 25 }}} 26 27 On Windows: 20 28 21 29 {{{ … … 23 31 }}} 24 32 25 That sets the {{{core.autocrlf}}} option globally, so only needs to be done once. 33 That sets the {{{core.autocrlf}}} option globally, so only needs to be done once. 34 35 For more on line endings, see [https://help.github.com/articles/dealing-with-line-endings GitHub Dealing with line endings]. 26 36 27 37 == Installing Modular Boost ==