-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: set CMAKE_SYSTEM_PROCESSOR #8026
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think these names are valid for Visual Studio, not for Windows systems.
mingw expects the gnu names instead of Microsoft tainted ones.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you have a reference? the doc says:
it doesn't mention compilers
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no other reference.
But the cmake documentation mentions GNU, and mingw is a GNU compiler.
Otoh, I searched for
CMAKE_SYSTEM_PROCESSOR arm
andCMAKE_SYSTEM_PROCESSOR aarch
on github and it looks like there is no universal standard.I think we have to face the reality that there is no universally-agreed-to-standard to use as
CMAKE_SYSTEM_PROCESSOR
variable.Like everything in the c/c++ world (except for the stl standaard), there is no standard. CMake allows everything. CMAKE_SYSTEM_PROCESSOR is just a hint.
In reality, some project will either use one kind
CMAKE_SYSTEM_PROCESSOR
mapping from processor to cmake variable and not switch between a Microsoft convention or GNU convention. Or will not switch between Windows convention or Linux convention.It's like the
arch
argument ofMsBuild.build
: there will always be a project having a different mapping (uppercase/lowercase/64 suffix).Making this variable too hidden will make it harder for people wanting to modify it.
I'm just saying it would be nice to have an api that allows this:
So people can hook it.
Cci recipe writers will thank you.
And conan providing a proper default: the Microsoft one if MSVC else GNU.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, I think it's correct. CMake itself doesn't care much about
CMAKE_SYSTEM_PROCESSOR
and lists it as optional.the main source of headache is libraries checking for
CMAKE_SYSTEM_PROCESSOR
, for instance, to include proper assembler sources, such as libjpeg-turbo case.although CMake specifies
CMAKE_SYSTEM_PROCESSOR
to have values either ofuname
orPROCESSOR_ARCHITECTURE
, I've seen in reality libraries checking for different values, e.g. forarmv8
they may check forarmv8
,arm64
andaarch64
.examples:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On 1.33.0 we needed this patch to make the libjpeg-turbo cross compile for "ARM64/aarch64/armv8 etc." (not saying its not libjpeg turbos fault)