-
Notifications
You must be signed in to change notification settings - Fork 13.4k
std: Get the standard library compiling for wasm64 #90382
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
Changes from all commits
7f3ffbc
cfb2f98
9716388
f738abe
caa9e4a
d208e19
d2a3c24
a3b9405
88f1bf7
b5c3f4c
e4b3496
9d6f7f7
1d74c77
9a44235
7dc3836
97cd27a
af217f7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,8 @@ pub const MIN_ALIGN: usize = 8; | |
target_arch = "mips64", | ||
target_arch = "s390x", | ||
target_arch = "sparc64", | ||
target_arch = "riscv64" | ||
target_arch = "riscv64", | ||
target_arch = "wasm64", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This isn't something you need to fix in this PR, but it feels like these should use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If someone forgets to add an exception that may lead to a hard to track down bug. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this would still be a maintenance improvement even if code directly above this had a list of all target architectures and a compilation error for an unknown architecture. |
||
)))] | ||
pub const MIN_ALIGN: usize = 16; | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.