Open main menu

CDOT Wiki β

Changes

Mouse Lock Implementation FAQ

572 bytes removed, 22:03, 9 November 2011
no edit summary
Afterwards, you can freely clone the repository and the build should now work.
===Greg: How do I resolve the error where CL cannot be found?===this This is the error that comes up:
'''checking whether the C compiler (cl ) works... no
the correct batch file and if you get this error check the path in the file to make sure it goes to the right place.
===Greg: How do I resolve the atlbase.h being missing?=== 
While running the make command, you get an error saying that atlbase.h file is missing!
<pre>set XPCOM_DEBUG_BREAK=warn</pre>
That should suppress all pop ups. This is only necessary for windows. Mac and Linux machines should be set to this by default.
 
==Discussion==
'''NorthWind87:''' With regard to the "windows line error" question, is it not enough to simply set core.autocrlf to false and core.eol to lf?
<pre>
git config --unset core.autocrlf
git config --global --unset core.autocrlf
git config --global core.autocrlf false
 
git config --unset core.eol
git config --global --unset core.eol
git config --global core.eol lf
 
git ls-files -z | xargs -0 rm;
git checkout .
</pre>
That should be enough to avoid checking out crlf in the future and to checkout the repo again with lf line endings for all files.