@@ -39,7 +39,7 @@ soon as possible.)
3939and fully ported libcxx to run under [ lit] [ ] using the various configurations/compilers we test internally.
4040
4141* Continuous Integration: ** In progress.** We've set up Azure Pipelines to validate changes to the repository.
42- Currently, it builds the STL (native desktop for x86, x64, ARM, and ARM64). Also, it strictly verifies that all of our
42+ Currently, it builds the STL (native desktop for x86, x64, and ARM64). Also, it strictly verifies that all of our
4343files have been formatted with [ clang-format] [ ] and follow our other whitespace conventions.
4444
4545* Contribution Guidelines: ** Coming soon.** Working on the STL's code involves following many rules. We have codebase
@@ -141,12 +141,10 @@ Just try to follow these rules, so we can spend more time fixing bugs and implem
141141
142142# How To Build With The Visual Studio IDE
143143
144- 1 . Install Visual Studio 2022 17.14.5 Preview 1 or later.
144+ 1 . Install Visual Studio 2022 17.14.8 Preview 1 or later.
145145 * Select "Windows 11 SDK (10.0.26100.3916)" in the VS Installer.
146146 * Select "MSVC v143 - VS 2022 C++ ARM64/ARM64EC build tools (Latest)" in the VS Installer
147147 if you would like to build the ARM64/ARM64EC target.
148- * Select "MSVC v143 - VS 2022 C++ ARM build tools (Latest)" in the VS Installer
149- if you would like to build the ARM target.
150148 * We recommend selecting "C++ CMake tools for Windows" in the VS Installer.
151149 This will ensure that you're using supported versions of CMake and Ninja.
152150 * Otherwise, install [ CMake] [ ] 3.31.0 or later, and [ Ninja] [ ] 1.12.1 or later.
@@ -160,12 +158,10 @@ Just try to follow these rules, so we can spend more time fixing bugs and implem
160158
161159# How To Build With A Native Tools Command Prompt
162160
163- 1 . Install Visual Studio 2022 17.14.5 Preview 1 or later.
161+ 1 . Install Visual Studio 2022 17.14.8 Preview 1 or later.
164162 * Select "Windows 11 SDK (10.0.26100.3916)" in the VS Installer.
165163 * Select "MSVC v143 - VS 2022 C++ ARM64/ARM64EC build tools (Latest)" in the VS Installer
166164 if you would like to build the ARM64/ARM64EC target.
167- * Select "MSVC v143 - VS 2022 C++ ARM build tools (Latest)" in the VS Installer
168- if you would like to build the ARM target.
169165 * We recommend selecting "C++ CMake tools for Windows" in the VS Installer.
170166 This will ensure that you're using supported versions of CMake and Ninja.
171167 * Otherwise, install [ CMake] [ ] 3.31.0 or later, and [ Ninja] [ ] 1.12.1 or later.
@@ -188,14 +184,6 @@ To build the x64 target (recommended):
1881843 . ` cmake --preset x64 `
1891854 . ` cmake --build --preset x64 `
190186
191- To build the ARM target:
192-
193- 1 . ` "C:\Program Files\Microsoft Visual Studio\2022\Preview\VC\Auxiliary\Build\vcvarsall.bat" x64_arm `
194- * If you installed VS to a non-default location, change this path accordingly.
195- 2 . Change directories to the previously cloned ` STL ` directory.
196- 3 . ` cmake --preset ARM `
197- 4 . ` cmake --build --preset ARM `
198-
199187To build the ARM64 target:
200188
2011891 . ` "C:\Program Files\Microsoft Visual Studio\2022\Preview\VC\Auxiliary\Build\vcvarsall.bat" x64_arm64 `
0 commit comments