-
Hi, when building the runtime in Release mode, we used to have (at least for .Net 6) a |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You can try generating the core_root layout after building clr+libs using
Then all necessary files including coreclr, libraries and their pdb will be placed under |
Beta Was this translation helpful? Give feedback.
-
It was changed in #90050. Besides "use source-build" which has a slightly different workflow, there are two options:
|
Beta Was this translation helpful? Give feedback.
It was changed in #90050. Besides "use source-build" which has a slightly different workflow, there are two options:
SkipArchivesBuild
from build command./build.sh clr+libs+packs -c Release -p:SkipArchivesBuild=false
; it producesdotnet-runtime-symbols-<platform>-<version>.tar.gz
as before../build.sh clr+libs+packs -keepnativesymbols true -c Release
; it produces fat/unstripped native binaries containing the debug symbols within.