-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Update build to net9.0
images
#101630
Update build to net9.0
images
#101630
Conversation
Tagging subscribers to this area: @dotnet/area-infrastructure-libraries |
Co-authored-by: Adeel Mujahid <[email protected]>
Looks like the x86 build has a failure with the new compiler. Reverting that for now. We'll need to deal with that in a separate focused PR. Other architectures appear to be fine. /__w/1/s/src/coreclr/pal/inc/pal.h:3605:5: error: __sync builtin operation MUST have natural alignment (consider using __atomic). [-Werror,-Wsync-alignment]
3605 | __sync_val_compare_and_swap(
| ^
/__w/1/s/src/coreclr/pal/inc/pal.h:3471:5: error: __sync builtin operation MUST have natural alignment (consider using __atomic). [-Werror,-Wsync-alignment]
3471 | __sync_add_and_fetch(lpAddend, (LONGLONG)1)
| ^
/__w/1/s/src/coreclr/pal/inc/pal.h:3506:5: error: __sync builtin operation MUST have natural alignment (consider using __atomic). [-Werror,-Wsync-alignment]
3506 | __sync_sub_and_fetch(lpAddend, (LONGLONG)1)
| ^
3 errors generated. |
@lewing do you think the wasm failures are related to this change? |
The wasm failures are know issues. |
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.
Thank you!
* Update build to `net9.0` images * Update docs/workflow/building/coreclr/linux-instructions.md Co-authored-by: Adeel Mujahid <[email protected]> * Revert x86 build change --------- Co-authored-by: Sven Boemer <[email protected]> Co-authored-by: Adeel Mujahid <[email protected]>
* Update build to `net9.0` images * Update docs/workflow/building/coreclr/linux-instructions.md Co-authored-by: Adeel Mujahid <[email protected]> * Revert x86 build change --------- Co-authored-by: Sven Boemer <[email protected]> Co-authored-by: Adeel Mujahid <[email protected]>
* Update build to `net9.0` images * Update docs/workflow/building/coreclr/linux-instructions.md Co-authored-by: Adeel Mujahid <[email protected]> * Revert x86 build change --------- Co-authored-by: Sven Boemer <[email protected]> Co-authored-by: Adeel Mujahid <[email protected]>
This change will update the branch to building with LLVM 18.1.4. Everything else should be the same relative to the
net8.0
image flavor (which we intend to apply torelease/8.0
branch in July or so).Supports: #91826
dotnet/dotnet-buildtools-prereqs-docker#1015
@sbomer