Parallel building: branch 2.9#2602
Closed
The-going wants to merge 5 commits intoLinuxCNC:2.9from
Closed
Conversation
… dir After these changes, the dh_auto_XX commands will receive all the necessary variables and parameters and pass the applicable variables\parameters to the dh_XX commands. All dh commands will be run in the src directory if they are not overridden. That is, we need to write the override like this: override_dh_auto_build-arch: dh_auto_build -- build-software NOT so: override_dh_auto_build-arch: dh_build -- build-software
The src/Makefile file has a check of variables at the very beginning and exits by mistake if they are not initialized. That is, if there is no src/Makefile.inc file, then the project configuration was not performed and any other goals were not fulfilled. It is not possible to complete any goal before the initial configuration. This check ensures that the source code is clean and there is no need to clean it.
If the variable is not explicitly exported or passed to the configuration command, then it will be initialized by the configure script as: PYTHON=/usr/bin/python3.11 on bookworm PYTHON=/usr/bin/python3.10 on jammi
Reverse this commit if the path to the library is needed
as architecture-dependent.
--libdir=\${prefix}/lib/${DEB_HOST_MULTIARCH}
As:
--libdir=\${prefix}/lib/x86_64-linux-gnu
--libdir=\${prefix}/lib/aarch64-linux-gnu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Add parallel assembly relying on the correct operation of automatic dh commands.
close #2579
duplicates for the master #2599