Sign up

Load dll issue transferred from dsource.org forums

Hi Mike,

gtk3-runtime3.8.132-bit is the GTK_Runtime.

You sent through gtkdTest.exe to another poster chasing the same problem. The output from this is"object.exception@..\\gtkc\Loader.d(123): Library load failed: libgtk-3-0.dll"

I seem to be having the same load dll issues with Derelict. I am on XP sp3.

Also, the BASE_PATH was in conjunction with setting the path variable to the Gtk-Runtime bin.

Re: Load dll issue transferred from dsource.org forums

On 05/28/2013 04:26 AM, Stephen Jones wrote:

Hi Mike,

gtk3-runtime3.8.132-bit is the GTK_Runtime.

You sent through gtkdTest.exe to another poster chasing the same problem. The output from this is"object.exception@..\\gtkc\Loader.d(123): Library load failed: libgtk-3-0.dll"

I don't remember sending someone a gtkdTest.exe, i did sent someone a
modified version of src/gtkc/Loader.d so it would print an error message
thats hopefully more helpful.

It's available as a git gist: https://gist.github.com/MikeWey/3804415
Recompiling GtkD with is it should print a better error message.

I seem to be having the same load dll issues with Derelict. I am on XP sp3.

Also, the BASE_PATH was in conjunction with setting the path variable to the Gtk-Runtime bin.

Mike Wey

Re: Load dll issue transferred from dsource.org forums

Hi, I'm still getting this error:

object.Exception@gtkc\Loader.d(123): Library load failed: libgtk-3-0.dll

I noticed the test program worked, though.

Re: Load dll issue transferred from dsource.org forums

On Sun, 20 Jul 2014 01:55:12 GMT, Joel Christensen wrote:

Hi, I'm still getting this error:

object.Exception@gtkc\Loader.d(123): Library load failed: libgtk-3-0.dll

I noticed the test program worked, though.

With Xamarin I get a similar error:

object.Exception@src\gtkc\Loader.d(127): Library load failed: libgdk-3-0.dll.

Re: Load dll issue transferred from dsource.org forums

On 07/20/2014 05:04 AM, Joel Christensen wrote:

On Sun, 20 Jul 2014 01:55:12 GMT, Joel Christensen wrote:

Hi, I'm still getting this error:

object.Exception@gtkc\Loader.d(123): Library load failed: libgtk-3-0.dll

I noticed the test program worked, though.

With Xamarin I get a similar error:

object.Exception@src\gtkc\Loader.d(127): Library load failed: libgdk-3-0.dll.

Are you using the master branch or the 2.3 branch? The version of the
Loader on master was modified to avoid issues with having multiple
versions of Gtk+ installed.

Re: Load dll issue transferred from dsource.org forums

On Sun, 20 Jul 2014 10:55:17 +0200, Mike Wey wrote:

On 07/20/2014 05:04 AM, Joel Christensen wrote:

On Sun, 20 Jul 2014 01:55:12 GMT, Joel Christensen wrote:

Hi, I'm still getting this error:

object.Exception@gtkc\Loader.d(123): Library load failed: libgtk-3-0.dll

I noticed the test program worked, though.

With Xamarin I get a similar error:

object.Exception@src\gtkc\Loader.d(127): Library load failed: libgdk-3-0.dll.

Are you using the master branch or the 2.3 branch? The version of the
Loader on master was modified to avoid issues with having multiple
versions of Gtk+ installed.

The 2.3 branch (didn't use Git).

Re: Load dll issue transferred from dsource.org forums

On 07/21/2014 03:19 AM, Joel Christensen wrote:

On Sun, 20 Jul 2014 10:55:17 +0200, Mike Wey wrote:

On 07/20/2014 05:04 AM, Joel Christensen wrote:

On Sun, 20 Jul 2014 01:55:12 GMT, Joel Christensen wrote:

Hi, I'm still getting this error:

object.Exception@gtkc\Loader.d(123): Library load failed: libgtk-3-0.dll

I noticed the test program worked, though.

With Xamarin I get a similar error:

object.Exception@src\gtkc\Loader.d(127): Library load failed: libgdk-3-0.dll.

Are you using the master branch or the 2.3 branch? The version of the
Loader on master was modified to avoid issues with having multiple
versions of Gtk+ installed.

The 2.3 branch (didn't use Git).

The error is because without the changes in master, the location of the
newer GTK+ version needs to be listed in the PATH before the older version.

A 2.4 release has been long overdue, i might need to release it without
updating the wrapped GTK+ version.

Re: Load dll issue transferred from dsource.org forums

On Mon, 21 Jul 2014 23:26:42 +0200, Mike Wey wrote:

On 07/21/2014 03:19 AM, Joel Christensen wrote:

On Sun, 20 Jul 2014 10:55:17 +0200, Mike Wey wrote:

On 07/20/2014 05:04 AM, Joel Christensen wrote:

On Sun, 20 Jul 2014 01:55:12 GMT, Joel Christensen wrote:

Hi, I'm still getting this error:

object.Exception@gtkc\Loader.d(123): Library load failed: libgtk-3-0.dll

I noticed the test program worked, though.

With Xamarin I get a similar error:

object.Exception@src\gtkc\Loader.d(127): Library load failed: libgdk-3-0.dll.

Are you using the master branch or the 2.3 branch? The version of the
Loader on master was modified to avoid issues with having multiple
versions of Gtk+ installed.

The 2.3 branch (didn't use Git).

The error is because without the changes in master, the location of the
newer GTK+ version needs to be listed in the PATH before the older version.

A 2.4 release has been long overdue, i might need to release it without
updating the wrapped GTK+ version.

Yay, got it working with git (Master). Thanks Mike.