Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 5.6k
Add beginnings of WebAssembly build support for mono.#33551
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
7703390b8030775638e2b03bd7da971224973d2a7c9e130dc74819de1da9cc8a4b955fFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -49,10 +49,13 @@ source "$__RepoRootDir"/eng/native/build-commons.sh | ||
| if [[ "$__BuildArch" == wasm ]]; then | ||
| if [[ -z "$EMSDK_PATH" ]]; then | ||
| echo "Error: Should set EMSDK_PATH environment variable pointing to emsdk root." | ||
| echo "Error: You need to set the EMSDK_PATH environment variable pointing to the emscripten SDK root." | ||
| exit 1 | ||
| fi | ||
| source "$EMSDK_PATH"/emsdk_env.sh | ||
| export CLR_CC=$(which emcc) | ||
| export CLR_CXX=$(which em++) | ||
Comment on lines
+57
to
+58
Member 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. A nit, typically posix-y
| ||
| elif [[ "$__TargetOS" == iOS ]]; then | ||
| # nothing to do here | ||
| true | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.