-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
modules/hal/openisa: Support building without -ffreestanding #51908
modules/hal/openisa: Support building without -ffreestanding #51908
Conversation
The following west manifest projects have been modified in this Pull Request:
Note: This message is automatically posted and updated by the Manifest GitHub Action. |
eee0e4a
to
e49ddc4
Compare
e49ddc4
to
237694c
Compare
This pull request has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this pull request will automatically be closed in 14 days. Note, that you can always re-open a closed pull request at any time. |
This is still blocking use of picolibc with this module as picolibc does not enable |
237694c
to
1d2c0fa
Compare
@keith-packard zephyrproject-rtos/hal_openisa#7 has been merged. |
With -ffreestanding disabled, Zephyr SDK 0.15.0 generates a potentially uninitialized variable warning that appears to be a false positive. Pull in the upstream version of the module which contains the fix. Signed-off-by: Keith Packard <[email protected]>
1d2c0fa
to
07b5860
Compare
Thanks, I've rebased and updated to use the commit ID from upstream. |
With -ffreestanding disabled, Zephyr SDK 0.15.0 generates a potentially uninitialized variable warning that appears to be a false positive. Disable the warning around the affected code.
Signed-off-by: Keith Packard [email protected]