Explicitly mention that libc++ needs to be installed when clang is used.
This commit is contained in:
parent
51cf4baee6
commit
7226c09d31
@ -525,7 +525,7 @@ function onOptionsChanged() {
|
|||||||
}
|
}
|
||||||
if (os_linux && linux_distro === 'Other') {
|
if (os_linux && linux_distro === 'Other') {
|
||||||
var jdk = target === 'JNI' ? ', JDK ' : '';
|
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.');
|
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')) {
|
if (os_linux && os.includes('Node.js')) {
|
||||||
|
Loading…
Reference in New Issue
Block a user