Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion eng/liveBuilds.targets
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@

<LibrariesRuntimeFiles Condition="'$(TargetOS)' == 'browser' and '$(RuntimeFlavor)' == 'CoreCLR'"
Include="
$(CoreCLRSharedFrameworkDir)libclrinterpreter.a;
$(CoreCLRSharedFrameworkDir)libcoreclr_static.a;
$(CoreCLRSharedFrameworkDir)libcoreclrminipal.a;
$(CoreCLRSharedFrameworkDir)libcoreclrpal.a;
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/interpreter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ target_link_libraries(clrinterpreter
${INTERPRETER_LINK_LIBRARIES}
)

if (CLR_CMAKE_TARGET_IOS OR CLR_CMAKE_TARGET_TVOS OR CLR_CMAKE_TARGET_MACCATALYST)
if (FEATURE_STATICALLY_LINKED)
install_clr(TARGETS clrinterpreter DESTINATIONS . COMPONENT runtime OPTIONAL)
else()
install_clr(TARGETS clrinterpreter DESTINATIONS . sharedFramework COMPONENT runtime OPTIONAL)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@
<PlatformManifestFileEntry Include="ILLink.Substitutions.WasmIntrinsics.xml" IsNative="true" />
<PlatformManifestFileEntry Include="ILLink.Substitutions.NoWasmIntrinsics.xml" IsNative="true" />
<!-- CoreCLR WASM-specific files -->
<PlatformManifestFileEntry Include="libclrinterpreter.a" IsNative="true" />
<PlatformManifestFileEntry Include="libcoreclrminipal.a" IsNative="true" />
<PlatformManifestFileEntry Include="libcoreclrpal.a" IsNative="true" />
<PlatformManifestFileEntry Include="libgcinfo_unix_wasm.a" IsNative="true" />
Expand Down
1 change: 0 additions & 1 deletion src/native/corehost/browserhost/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ set(SHARED_CLR_DESTINATION
# these dependencies assume that you built `libs.native+clr.runtime` subsets first
LIST(APPEND NATIVE_LIBS
${SHARED_CLR_DESTINATION}/libcoreclr_static.a
${SHARED_CLR_DESTINATION}/libclrinterpreter.a
${SHARED_CLR_DESTINATION}/libnativeresourcestring.a
${SHARED_CLR_DESTINATION}/libgcinfo_unix_wasm.a
${SHARED_CLR_DESTINATION}/libcoreclrminipal.a
Expand Down
Loading