File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,14 @@ In order to build on Windows, some additional parameters must be passed to the b
16
16
swift build -Xcc -I%SDKROOT%\usr\include\swift\SwiftRemoteMirror -Xlinker %SDKROOT%\usr\lib\swift\windows\x86_64\swiftRemoteMirror.lib
17
17
~~~
18
18
19
+ #### Linux
20
+
21
+ In order to build on Linux, some additional parameters must be passed to the build tool to loace the necessary includes and libraries
22
+
23
+ ~~~
24
+ swift build -Xswiftc -I$(git rev-parse --show-toplevel)/include/swift/SwiftRemoteMirror -Xswiftc -lswiftRemoteMirror
25
+ ~~~
26
+
19
27
#### CMake
20
28
21
29
In order to build on Windows with CMake, some additional parameters must be passed to the build tool to locate the necessary Swift modules.
@@ -30,9 +38,6 @@ The following inspection operations are available currently.
30
38
31
39
##### All Platforms
32
40
33
- dump-arrays < ; name-or-pid> ;
34
- : Print information about array objects in the target
35
-
36
41
dump-cache-nodes < ; name-or-pid> ;
37
42
: Print the metadata cache nodes.
38
43
@@ -45,6 +50,11 @@ dump-generic-metadata <name-or-pid> [--backtrace] [--backtrace-long]
45
50
dump-raw-metadata < ; name-or-pid> ; [ --backtrace] [ --backtrace-long]
46
51
: Print metadata allocations.
47
52
53
+ #### Darwin and Windows Only
54
+
55
+ dump-arrays < ; name-or-pid> ;
56
+ : Print information about array objects in the target
57
+
48
58
##### Darwin Only
49
59
50
60
dump-concurrency < ; name-or-pid> ;
You can’t perform that action at this time.
0 commit comments