Commit b2db399
authored
Avoid shipping libclrinterpreter in wasm runtime packs (#121405)
## Description
The libclrinterpreter is already linked into the coreclr_static library
for wasm in:
https://github.com/dotnet/runtime/blob/e0837be345978738d0387055e0eb1e2b989dd787/src/coreclr/dlls/mscoree/coreclr/CMakeLists.txt#L201
This PR updates the build to avoid shipping libclrinterpreter in the
wasm runtime packs as separate static librariy, which resolves the
manifest errors:
```
The following files are missing entries in the templated manifest: libclrinterpreter.dylib.
```
Fixes #1213991 parent 6e1e6b1 commit b2db399
File tree
4 files changed
+1
-4
lines changed- eng
- src
- coreclr/interpreter
- installer/pkg/sfx/Microsoft.NETCore.App
- native/corehost/browserhost
4 files changed
+1
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
223 | 223 | | |
224 | 224 | | |
225 | 225 | | |
226 | | - | |
227 | 226 | | |
228 | 227 | | |
229 | 228 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
70 | | - | |
| 70 | + | |
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
| |||
Lines changed: 0 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
262 | 262 | | |
263 | 263 | | |
264 | 264 | | |
265 | | - | |
266 | 265 | | |
267 | 266 | | |
268 | 267 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
61 | 60 | | |
62 | 61 | | |
63 | 62 | | |
| |||
0 commit comments