Improve documentation about parallel builds with MinGW makefile
In the note about building wxWidgets with MinGW makefile and using parallel build, explain that "-jN" option cannot be used when building "setup_h" target. Closes #23642.
This commit is contained in:
parent
11ee5b4df5
commit
81ce7edb75
1 changed files with 5 additions and 3 deletions
|
|
@ -230,9 +230,11 @@ executed from a DOS command line window (cmd.exe, *not* Bash sh.exe).
|
||||||
for more details.
|
for more details.
|
||||||
|
|
||||||
NOTE: For parallel builds, i.e. using `-jN` make option, please run
|
NOTE: For parallel builds, i.e. using `-jN` make option, please run
|
||||||
`mingw32-make -jN ... setup_h` first and then rerun the full
|
the make command first without the `-jN` option and with `setup_h`
|
||||||
make command without `setup_h` at the end to work around a bug
|
target specified, e.g. `mingw32-make ... setup_h`. Only after that
|
||||||
in the current makefiles.
|
run the make command with the same wxWidgets build options but now
|
||||||
|
with the `-jN` option and without `setup_h` target, e.g. `mingw32-make -j4 ...`.
|
||||||
|
All this is necessary to work around the bug in the makefile.
|
||||||
|
|
||||||
2. To verify your build, change the directory to `samples\minimal` and
|
2. To verify your build, change the directory to `samples\minimal` and
|
||||||
run the same mingw32-make command (with the same parameters there),
|
run the same mingw32-make command (with the same parameters there),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue