Check for macOS system headers installation

This commit is contained in:
Edouard Oger 2019-05-22 17:45:58 -04:00
Родитель ba2efb2ae4
Коммит 70b5bd29f2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A2F740742307674A
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -49,4 +49,10 @@ else
echo "* On Debian/Ubuntu:"
echo "apt-get install libnss3-dev"
fi
if [ $(uname -s) == "Darwin" ] && [ ! -f "/usr/include/pthread.h" ]; then
# rustc does not include the macOS SDK headers in its include list yet
# (see https://developer.apple.com/documentation/xcode_release_notes/xcode_10_release_notes)
echo "macOS system headers are not installed in /usr/include, please run:"
echo "open /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg"
fi
fi