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
- when building on Linux the usage of swiftly improves the installation
of Swift toolchains. Updated README and Package.swift to help building
it when using swiftly.
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,7 @@ dependencies: [
38
38
```
39
39
40
40
> [!NOTE]
41
+
>
41
42
> - You may need to configure the Swift toolchain header for proper integration of OpenAttributeGraph
42
43
> - By default, OpenAttributeGraphShims will use the private AttributeGraph as its implementation on Apple platforms
43
44
@@ -49,6 +50,20 @@ For a simpler setup, you can use the prebuilt XCFramework available on the [rele
49
50
50
51
The current suggested toolchain to build the project is Swift 6.1.2 / Xcode 16.4.
51
52
53
+
### Usage with ```swiftly````
54
+
55
+
If you have installed [Swiftly](https://github.com/swiftlang/swiftly) for managing your installed swift toolchains (Linux) set the following variable to your shell:
56
+
57
+
```bash
58
+
export SWIFT_TOOLCHAIN_PATH="$(swiftly use --print-location)"
59
+
```
60
+
61
+
```fish
62
+
set -gx SWIFT_TOOLCHAIN_PATH (swiftly use --print-location)
0 commit comments