Skip to content

Commit

Permalink
Explicitly mention that libc++ needs to be installed when clang is used.
Browse files Browse the repository at this point in the history
  • Loading branch information
levlam committed Oct 26, 2021
1 parent 51cf4ba commit 7226c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.html
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@
}
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')) {
Expand Down

0 comments on commit 7226c09

Please sign in to comment.