#1362: Tighter catch on errors in native lib compilation.
This commit is contained in:
parent
f4ae511af0
commit
eeaa44e1e7
@ -70,6 +70,9 @@ public final class NativeCode<T>
|
||||
} catch ( IOException ex )
|
||||
{
|
||||
// Can't write to tmp?
|
||||
} catch ( UnsatisfiedLinkError ex )
|
||||
{
|
||||
System.out.println( "Could not load native library: " + ex.getMessage() );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user