File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
Samples/SwiftKitSampleApp/src/main/java/com/example/swift
SwiftKit/src/main/java/org/swift/swiftkit Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -32,13 +32,9 @@ public static void main(String[] args) {
32
32
boolean traceDowncalls = Boolean .getBoolean ("jextract.trace.downcalls" );
33
33
System .out .println ("Property: jextract.trace.downcalls = " + traceDowncalls );
34
34
35
- System .out .print ("Property: java.library.path = \n " );
36
- System .out .println (SwiftKit .getJavaLibraryPath ());
37
- System .out .println (" " + path );
38
- }
35
+ System .out .print ("Property: java.library.path = " +SwiftKit .getJavaLibraryPath ());
39
36
40
37
examples ();
41
-
42
38
}
43
39
44
40
static void examples () {
Original file line number Diff line number Diff line change @@ -29,10 +29,11 @@ public class SwiftKit {
29
29
30
30
public static final String STDLIB_DYLIB_NAME = "swiftCore" ;
31
31
public static final String SWIFTKITSWIFT_DYLIB_NAME = "SwiftKitSwift" ;
32
+ public static final boolean TRACE_DOWNCALLS = Boolean .getBoolean ("jextract.trace.downcalls" );
33
+
32
34
private static final String STDLIB_MACOS_DYLIB_PATH = "/usr/lib/swift/libswiftCore.dylib" ;
33
35
34
36
private static final Arena LIBRARY_ARENA = Arena .ofAuto ();
35
- static final boolean TRACE_DOWNCALLS = Boolean .getBoolean ("jextract.trace.downcalls" );
36
37
37
38
@ SuppressWarnings ("unused" )
38
39
private static final boolean INITIALIZED_LIBS = loadLibraries (false );
You can’t perform that action at this time.
0 commit comments