1
0
mirror of synced 2025-12-21 19:06:49 -05:00

Add note about disabling parallel execution for Make (#51229)

Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com>
This commit is contained in:
Chad Bentz
2025-02-17 07:07:14 -05:00
committed by GitHub
parent 47fa724515
commit df481a310a

View File

@@ -227,6 +227,7 @@ The following examples are designed to give you an idea of some of the build com
* C/C++ project built using `make`:
```shell
# Disable parallel execution via `-j1` or other techniques: https://www.gnu.org/software/make/manual/make.html#Parallel-Execution
codeql database create cpp-database --language={% ifversion codeql-language-identifiers-311 %}c-cpp{% else %}cpp{% endif %} --command=make
```