-
Notifications
You must be signed in to change notification settings - Fork 10.4k
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
Enable _Concurrency
for Embedded Swift with WASI
#79292
Conversation
@swift-ci build toolchain |
@swift-ci smoke test |
@swift-ci test |
@swift-ci build toolchain |
@swift-ci test |
@swift-ci smoke test |
@swift-ci build toolchain |
This allows creation of small binaries without Swift runtime included, while still maintaining WASI 0.1 ABI and access to libc/libc++ APIs and headers. (cherry picked from commit 440a869)
@swift-ci smoke test |
@swift-ci build toolchain |
_Concurrency
for Wasm in Embedded Swift_Concurrency
for Embedded Swift with WASI
@swift-ci smoke test |
@swift-ci build toolchain |
@swift-ci test |
@swift-ci smoke test |
@swift-ci smoke test |
@swift-ci build toolchain |
@swift-ci smoke test macos |
@swift-ci build toolchain macos |
…currency Embedded concurrency for WASI fixes
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.
Thanks, seems good to me
@swift-ci build toolchain |
@swift-ci test |
@etcwilde would you mind having a look? |
@swift-ci build toolchain macos |
set(extra_c_compile_flags -D__MACH__ -D__APPLE__ -ffreestanding -stdlib=libc++) | ||
set(extra_swift_compile_flags -Xcc -D__MACH__ -Xcc -D__APPLE__ -Xcc -ffreestanding) |
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.
Why are -D__MACH__ -D__APPLE__
needed? those should be present with the apple
vendor.
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.
That's unclear to me. Keeping as is, changing it doesn't seem relevant to this PR.
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.
These are needed for -apple-none-macho but shouldn't be needed otherwise. the __MACH__
one should only be needed for os ~= darwin but sadly __MACH__
is abused to also mean __MACHO__
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 this will work. build-script really needs a better/more general way to pass sysroots through to all of the runtime builds, but this should work.
WASI with Embedded Swift provides WASI-libc and libc++ headers necessary to build the
_Concurrency
module for Wasm. We now addwasm32-unknown-wasip1-wasm
triple toEMBEDDED_STDLIB_TARGET_TRIPLES
whenSWIFT_WASI_SYSROOT_PATH
is set, which builds the necessary stdlib slice.