aboutsummaryrefslogtreecommitdiffhomepage
path: root/build.html
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2021-10-26 14:21:01 +0300
committerlevlam <levlam@telegram.org>2021-10-26 14:21:01 +0300
commit7226c09d314f271e6d8ab52154ce969d576e6ba6 (patch)
tree2a9d5d22bae6fbb4f384bd0ba62174f838441f85 /build.html
parent51cf4baee68b613bf18152b6e4db40aae0e93926 (diff)
Explicitly mention that libc++ needs to be installed when clang is used.
Diffstat (limited to 'build.html')
-rw-r--r--build.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.html b/build.html
index 0ffe758a2..cd2770703 100644
--- a/build.html
+++ b/build.html
@@ -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')) {