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

This commit is contained in:
levlam 2021-10-26 14:21:01 +03:00
parent 51cf4baee6
commit 7226c09d31
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ function onOptionsChanged() {
}
if (os_linux && linux_distro === 'Other') {
var jdk = target === 'JNI' ? ', JDK ' : '';
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, PHP' + jdk + ' using your package manager.');
}
if (os_linux && os.includes('Node.js')) {