mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-10 10:00:57 +09:00
Clarified documentation regarding building the Core_Root. (#72560)
* Added a note emphasizing Libraries have to be built in Release mode to generate the Core_Root. * Corrected a statement regarding libraries' configuration. Co-authored-by: Seeker186 <101211595+Seeker186@users.noreply.github.com>
This commit is contained in:
parent
2f02f1241c
commit
cd24e183a1
2 changed files with 6 additions and 3 deletions
|
@ -87,8 +87,9 @@ After the build is completed, there should some files placed in `artifacts/bin/c
|
||||||
Create the Core_Root
|
Create the Core_Root
|
||||||
===================
|
===================
|
||||||
|
|
||||||
The Core_Root folder will contain the built binaries, generated by `build.sh`, as well as the library packages required to run tests. Note that you need to build
|
The Core_Root folder will contain the built binaries, generated by `build.sh`, as well as the library packages required to run tests. It is required that you build
|
||||||
the libraries subset (`-subset libs`) before this command can be run.
|
the libraries subset (`-subset libs`) before this command can be run. Note that this by default searches the libraries in Release mode, regardless of the runtime
|
||||||
|
configuration you specify. If you built your libs in another configuration, then you have to pass down the appropriate flag `/p:LibrariesConfiguration=<your_config>`.
|
||||||
|
|
||||||
```
|
```
|
||||||
./src/tests/build.sh generatelayoutonly
|
./src/tests/build.sh generatelayoutonly
|
||||||
|
|
|
@ -26,7 +26,9 @@ After the build has completed, there should some files placed in `artifacts/bin/
|
||||||
Create the Core_Root
|
Create the Core_Root
|
||||||
===================
|
===================
|
||||||
|
|
||||||
The Core_Root folder will have the built binaries, from `src/coreclr/build.sh` and it will also include the CoreFX packages required to run tests.
|
The Core_Root folder will contain the built binaries, generated by `build.sh`, as well as the library packages required to run tests. It is required that you build
|
||||||
|
the libraries subset (`-subset libs`) before this command can be run. Note that this by default searches the libraries in Release mode, regardless of the runtime
|
||||||
|
configuration you specify. If you built your libs in another configuration, then you have to pass down the appropriate flag `/p:LibrariesConfiguration=<your_config>`.
|
||||||
|
|
||||||
```
|
```
|
||||||
./src/tests/build.sh generatelayoutonly
|
./src/tests/build.sh generatelayoutonly
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue