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
Copy file name to clipboardExpand all lines: README.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,19 +24,22 @@ After that, verify that the `experimental-sdk` command is available:
24
24
swift experimental-sdk list
25
25
```
26
26
27
-
The output will either state that no Swift SDKs are available, or produce a list of those you previously had
28
-
installed, in case you've used the `swift experimental-sdk install` command before.
27
+
The output will either state that no Swift SDKs are available, or produce a list of those you previously had installed, in case you've used the `swift experimental-sdk install` command before.
29
28
30
29
### macOS Requirements
31
30
32
-
The generator depends on the `xz` utility for more efficient downloading of package lists for Ubuntu. This is optional, but can be installed via the included `Brewfile`:
31
+
The generator depends on the following dependencies to be installed on macOS:
32
+
33
+
-`xz`: used for more efficient downloading of package lists for Ubuntu. If `xz` is not found, the generator will fallback on `gzip`.
34
+
-`cmake` and `ninja`: required for building LLVM native for versions of Swift before 6.0.
35
+
-`zstd`: required to decompress certain downloaded artifacts that use [Zstandard](https://github.com/facebook/zstd) compression.
36
+
37
+
These dependencies can be installed from the `Brewfile`:
33
38
34
39
```bash
35
40
brew bundle install
36
41
```
37
42
38
-
If `xz` is not found, the generator will fallback on `gzip`.
39
-
40
43
## Supported platforms and minimum versions
41
44
42
45
macOS as a host platform and Linux as both host and target platforms are supported by the generator.
0 commit comments