summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Roloff <sascha.roloff@huawei.com>2025-06-25 14:34:03 +0200
committerSascha Roloff <sascha.roloff@huawei.com>2025-06-25 14:57:30 +0200
commitc26fca88e1d80b7bfb8f6867ef572a17e51dc804 (patch)
treee409441b0baf30443b3775acee178ffdf7ecf948
parentc2fa710b75ca85741758a06a549b75aa40a00a50 (diff)
downloadjustbuild-c26fca88e1d80b7bfb8f6867ef572a17e51dc804.tar.gz
INSTALL: Fix default value for the C++ compiler
... and while here, added the missing C compiler dependency.
-rw-r--r--INSTALL.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 2d78cb15..894258f7 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -46,12 +46,13 @@ using the `bin/bootstrap.py` script.
### Bootstrapping compiling the dependencies from scratch
-If using bundled dependencies is acceptable, the only thing required
+If using bundled dependencies is acceptable, the only things required
are a C++20 compiler with the libraries required by the language
standard (note that, e.g., in Debian `libstdc++-10-dev` is not a
-dependency of `clang`) and a Python3 interpreter. By default the bootstrap
-script uses the clang compiler. If you also want the bootstrap script to
-download the dependencies itself, `wget` is required as well.
+dependency of `clang`), a C compiler, and a Python3 interpreter. By
+default, the bootstrap script uses `c++` as C++ compiler and `cc` as C
+compiler. If you also want the bootstrap script to download the
+dependencies itself, `wget` is required as well.
In this case, the command is simply
```sh