Add a new --cross-prefix option to configure for pwsh users. - #1273
Open
AraHaan wants to merge 1 commit into
Open
Add a new --cross-prefix option to configure for pwsh users.#1273AraHaan wants to merge 1 commit into
AraHaan wants to merge 1 commit into
Conversation
Added the --cross-prefix option into the configure script with comments explaining why.
Contributor
|
This doesn't work as related variables are already set when command-line options are parsed. This means the variables need to be set again to reflect the changed target architecture. |
Contributor
Author
|
Which is fine as normally I run ./configure again per cross compiler. |
Contributor
I mean variables |
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.
Added the --cross-prefix option into the configure script with comments explaining why.
@madler I am sorry for this PR but I needed this option to properly build a static lib for linking into my shared library for x86, x64, arm, and arm64 builds of gcc/g++ using cross-compiler packages.
Sadly since after forever when one needs to install the cross compilers it results in:
$CC.The fix:
--cross-prefixoption to configure to resolve this issue.