You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- From within a **developer** command prompt (not PowerShell nor cmd, but the [Visual Studio Developer Command Prompt](https://msdn.microsoft.com/en-us/library/f35ctcxw.aspx)), execute the following command if you have an x64 PC.
Warning: Creating the above links usually requires administrator privileges. The quick and easy way to do this is to open a second developer prompt by right clicking whatever shortcut you used to open the first one, choosing Run As Administrator, and pasting the above commands into the resulting window. You can then close the privileged prompt; this is the only step which requires elevation.
121
100
122
-
###6. Build LLVM/Clang
101
+
## 6. Build LLVM/Clang
123
102
- This must be done from within a developer command prompt. LLVM and Clang are
124
103
large projects, so building might take a few hours. Make sure that the build
125
104
type for LLVM/Clang is compatbile with the build type for Swift. That is,
@@ -147,8 +126,7 @@ cmake --build "S:\b\llvm"
147
126
```cmd
148
127
path S:\b\llvm\bin;%PATH%
149
128
```
150
-
151
-
### 7. Build CMark
129
+
## 7. Build CMark
152
130
- This must be done from within a developer command prompt. CMark is a fairly
153
131
small project and should only take a few minutes to build.
154
132
```cmd
@@ -163,7 +141,7 @@ popd
163
141
cmake --build "S:\b\cmark"
164
142
```
165
143
166
-
###8. Build Swift
144
+
## 8. Build Swift
167
145
- This must be done from within a developer command prompt
168
146
- Note that Visual Studio vends a 32-bit python 2.7 installation in `C:\Python27` and a 64-bit python in `C:\Python27amd64`. You may use either one based on your installation.
169
147
@@ -204,7 +182,7 @@ cmake --build "S:\b\swift"
204
182
cmake -G "Visual Studio 2017" -A x64 -T "host=x64"^ ...
205
183
```
206
184
207
-
###9. Build lldb
185
+
## 9. Build lldb
208
186
- This must be done from within a developer command prompt and could take hours
209
187
depending on your system.
210
188
```cmd
@@ -225,7 +203,7 @@ popd
225
203
cmake --build S:\b\lldb
226
204
```
227
205
228
-
###10. Running tests on Windows
206
+
## 10. Running tests on Windows
229
207
230
208
Running the testsuite on Windows has additional external dependencies. You must have a subset of the GNUWin32 programs installed and available in your path. The following packages are currently required:
0 commit comments