From: unknown Date: Thu, 16 Feb 2012 10:09:34 +0000 (+0100) Subject: Load libSG_java instead of SG_java X-Git-Tag: v3_9_90~569^2~19^2~142 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/4c2c6b6eee29fde60e2654e4c4fb09cb0bcb627f?hp=8bf3d06d49fcd7061f0a08dd4bfed74a7eeae7d0 Load libSG_java instead of SG_java --- diff --git a/org/simgrid/msg/Msg.java b/org/simgrid/msg/Msg.java index c9dcc48cdf..557d2b4805 100644 --- a/org/simgrid/msg/Msg.java +++ b/org/simgrid/msg/Msg.java @@ -15,7 +15,7 @@ public final class Msg { /* Statically load the library which contains all native functions used in here */ static { try { - System.loadLibrary("SG_java"); + System.loadLibrary("libSG_java"); } catch(UnsatisfiedLinkError e) { System.err.println("Cannot load the bindings to the simgrid library: "); e.printStackTrace();