Skip to content
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

[HELP] Usage of CMAKE_SYSTEM_PROCESSOR #16003

Open
1 task done
no1wudi opened this issue Mar 17, 2025 · 1 comment
Open
1 task done

[HELP] Usage of CMAKE_SYSTEM_PROCESSOR #16003

no1wudi opened this issue Mar 17, 2025 · 1 comment
Labels
Community: Question Further information is requested

Comments

@no1wudi
Copy link
Contributor

no1wudi commented Mar 17, 2025

Description

I have a question. It seems that many other projects use the architecture name as the value for CMAKE_SYSTEM_PROCESSOR. For example, for Cortex-M0, it should be set to armv6m. However, if we directly set it to the CPU type now, we may encounter compatibility issues with some libraries:

if(CONFIG_ARCH_CORTEXM0)
set(CMAKE_SYSTEM_PROCESSOR cortex-m0)
elseif(CONFIG_ARCH_CORTEXM3)
set(CMAKE_SYSTEM_PROCESSOR cortex-m3)
elseif(CONFIG_ARCH_CORTEXM4)
set(CMAKE_SYSTEM_PROCESSOR cortex-m4)
elseif(CONFIG_ARCH_CORTEXM7)

For the 3rd party lib, such as iree and openamp
https://github.com/iree-org/iree/blob/6cdb40cf6ebe1eea457dc4bd5bbdb9d1a60ad5a0/build_tools/cmake/iree_macros.cmake#L49-L72

https://github.com/OpenAMP/open-amp/blob/8c0c0c386b5799b54faf9613a191f66dee76e400/README.md?plain=1#L173

Should we modify the definition to this more commonly used form? Doing so could improve compatibility with other 3rd party libraries.

Verification

  • I have verified before submitting the report.
@no1wudi no1wudi added the Community: Question Further information is requested label Mar 17, 2025
@xiaoxiang781216
Copy link
Contributor

cmake option is copied from makefile, we need update both

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Community: Question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants