Changes between Version 18 and Version 19 of TryModBoost


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

--

Legend:

Unmodified
Added
Removed
Modified
  • TryModBoost

    v18 v19  
    1717== Line endings ==
    1818
    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:
     19The 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
     21On OS X, Linux, and most other POSIX-like systems:
     22
     23{{{
     24git config --global core.autocrlf input
     25}}}
     26
     27On Windows:
    2028
    2129{{{
     
    2331}}}
    2432
    25 That sets the {{{core.autocrlf}}} option globally, so only needs to be done once.
     33That sets the {{{core.autocrlf}}} option globally, so only needs to be done once.
     34
     35For more on line endings, see [https://help.github.com/articles/dealing-with-line-endings GitHub Dealing with line endings].
    2636
    2737== Installing Modular Boost ==