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) {
3232 boolean traceDowncalls = Boolean .getBoolean ("jextract.trace.downcalls" );
3333 System .out .println ("Property: jextract.trace.downcalls = " + traceDowncalls );
3434
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 ());
3936
4037 examples ();
41-
4238 }
4339
4440 static void examples () {
Original file line number Diff line number Diff line change @@ -29,10 +29,11 @@ public class SwiftKit {
2929
3030 public static final String STDLIB_DYLIB_NAME = "swiftCore" ;
3131 public static final String SWIFTKITSWIFT_DYLIB_NAME = "SwiftKitSwift" ;
32+ public static final boolean TRACE_DOWNCALLS = Boolean .getBoolean ("jextract.trace.downcalls" );
33+
3234 private static final String STDLIB_MACOS_DYLIB_PATH = "/usr/lib/swift/libswiftCore.dylib" ;
3335
3436 private static final Arena LIBRARY_ARENA = Arena .ofAuto ();
35- static final boolean TRACE_DOWNCALLS = Boolean .getBoolean ("jextract.trace.downcalls" );
3637
3738 @ SuppressWarnings ("unused" )
3839 private static final boolean INITIALIZED_LIBS = loadLibraries (false );
You can’t perform that action at this time.
0 commit comments