Explicitly mention that libc++ needs to be installed when clang is used.

This commit is contained in:
levlam 2021-10-26 14:27:03 +03:00
parent 380e65d47e
commit 014890d720
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ function onOptionsChanged() {
pre_text.push('Download and install <a href="https://git-scm.com/download/win">Git</a>.');
}
if (os_linux && linux_distro === 'Other') {
var compiler = use_clang ? 'clang >= 3.4' : 'g++ >= 4.9.2';
var compiler = use_clang ? 'clang >= 3.4, libc++' : 'g++ >= 4.9.2';
pre_text.push('Install Git, ' + compiler + ', make, CMake >= 3.0.2, OpenSSL-dev, zlib-dev, gperf using your package manager.');
}
if (os_freebsd) {