コード例 #1
0
ファイル: RContext.java プロジェクト: nunb/fastr
 public static boolean hasGNUR() {
   if (hasGNUR == -1) {
     try {
       System.loadLibrary("gnurglue");
       hasGNUR = 1;
     } catch (Throwable t) {
       hasGNUR = 0;
     }
   }
   return hasGNUR == 1;
 }