-
Notifications
You must be signed in to change notification settings - Fork 5k
[wasm coreclr] Make clr.runtime+libs build on Windows #115058
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
base: main
Are you sure you want to change the base?
Conversation
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.
Copilot wasn't able to review any files in this pull request.
Files not reviewed (3)
- eng/native/configureplatform.cmake: Language not supported
- src/coreclr/build-runtime.cmd: Language not supported
- src/coreclr/runtime.proj: Language not supported
Tagging subscribers to this area: @hoyosjs |
@@ -434,7 +434,7 @@ if(CLR_CMAKE_TARGET_OS STREQUAL haiku) | |||
set(CLR_CMAKE_TARGET_HAIKU 1) | |||
endif(CLR_CMAKE_TARGET_OS STREQUAL haiku) | |||
|
|||
if(CLR_CMAKE_TARGET_OS STREQUAL emscripten) | |||
if(CLR_CMAKE_TARGET_OS STREQUAL emscripten OR CLR_CMAKE_TARGET_OS STREQUAL browser) |
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 is this needed? I think we should be using emscripten here
@@ -152,6 +154,7 @@ if /i "%1" == "-enforcepgo" (set __EnforcePgo=1&shift&goto Arg_Loop) | |||
if /i "%1" == "-pgodatapath" (set __PgoOptDataPath=%~2&set __PgoOptimize=1&shift&shift&goto Arg_Loop) | |||
if /i "%1" == "-component" (set __RequestedBuildComponents=%__RequestedBuildComponents%-%2&set "__remainingArgs=!__remainingArgs:*%2=!"&shift&shift&goto Arg_Loop) | |||
if /i "%1" == "-fsanitize" (set __CMakeArgs=%__CMakeArgs% "-DCLR_CMAKE_ENABLE_SANITIZERS=%2"&shift&shift&goto Arg_Loop) | |||
if /i "%1" == "-keepnativesymbols" (set __CMakeArgs=%__CMakeArgs% "-DCLR_CMAKE_KEEP_NATIVE_SYMBOLS=true"&shift&goto Arg_Loop) |
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'd rather use #114466 for that instead.
No description provided.