-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[mono][wasm] Add beginnings of support for WASI. #59752
Conversation
Tagging subscribers to this area: Issue Detailsnull
|
src/mono/CMakeLists.txt
Outdated
# FIXME: Is there a cmake option for this ? | ||
set(DISABLE_SHARED_LIBS 1) |
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.
From https://cmake.org/cmake/help/latest/guide/tutorial/Selecting%20Static%20or%20Shared%20Libraries.html
# FIXME: Is there a cmake option for this ? | |
set(DISABLE_SHARED_LIBS 1) | |
option(BUILD_SHARED_LIBS "Disabling shared libraries for WASI" OFF) |
5d6c977
to
83dcee4
Compare
Would it be different RID we could make it compatible with |
It's a very different environment, there is no JS, and currently, a lot of things are missing, like networking, threads etc. |
With these changes, the build still fails because a lot of things are missing like pthread.h, socket functions, etc. But its a start. |
No description provided.