diff options
author | Sascha Roloff <sascha.roloff@huawei.com> | 2025-06-25 14:34:03 +0200 |
---|---|---|
committer | Sascha Roloff <sascha.roloff@huawei.com> | 2025-06-25 14:57:30 +0200 |
commit | c26fca88e1d80b7bfb8f6867ef572a17e51dc804 (patch) | |
tree | e409441b0baf30443b3775acee178ffdf7ecf948 | |
parent | c2fa710b75ca85741758a06a549b75aa40a00a50 (diff) | |
download | justbuild-c26fca88e1d80b7bfb8f6867ef572a17e51dc804.tar.gz |
INSTALL: Fix default value for the C++ compiler
... and while here, added the missing C compiler dependency.
-rw-r--r-- | INSTALL.md | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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 |