Merge pull request #833 from abhinav31415/master

Changes to make YCM installation on Cygwin easier.
This commit is contained in:
Val Markovic 2014-02-19 13:44:20 -08:00
commit b4708f962d

View File

@ -41,6 +41,9 @@ function python_finder {
lib_python="${python_prefix}/lib/lib${which_python}"
if [ -f "${lib_python}.a" ]; then
python_library+="${lib_python}.a"
elif [ -f "${lib_python}.dll.a" ]; then
## added a check for .dll.a files for CYGWIN
python_library+="${lib_python}.dll.a"
else
python_library+="${lib_python}.dylib"
fi