X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7f4f03348bd07609e258eb3b545bdafc2c881847..77d095374d3f966ce0f54f3837116c73bc3e52e4:/src/bindings/java/org/simgrid/NativeLib.java diff --git a/src/bindings/java/org/simgrid/NativeLib.java b/src/bindings/java/org/simgrid/NativeLib.java index e2931c5a3d..7c08bc267b 100644 --- a/src/bindings/java/org/simgrid/NativeLib.java +++ b/src/bindings/java/org/simgrid/NativeLib.java @@ -27,7 +27,6 @@ public final class NativeLib { NativeLib.nativeInit("boost_context"); } catch (Exception e) {/* Dont care */} NativeLib.nativeInit("simgrid"); - NativeLib.nativeInit("surf-java"); NativeLib.nativeInit("simgrid-java"); isNativeInited = true; } @@ -41,10 +40,12 @@ public final class NativeLib { try { System.loadLibrary(name); } catch (UnsatisfiedLinkError e2) { - System.err.println("Cannot load the bindings to the "+name+" library in path "+getPath()); - e.printStackTrace(); - System.err.println("This jar file does not seem to fit your system, and I cannot find an installation of SimGrid."); - System.exit(1); + if (! name.equals("boost_context")) { + System.err.println("Cannot load the bindings to the "+name+" library in path "+getPath()); + e.printStackTrace(); + System.err.println("This jar file does not seem to fit your system, and I cannot find an installation of SimGrid."); + System.exit(1); + } } } }