RSS/Atom feed Twitter
Site is read-only, email is disabled

My plugin doesn't start anymore after upgrading mingw/gcc suite

This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

4 of 4 messages available
Toggle history

Please log in to manage your subscriptions.

My plugin doesn't start anymore after upgrading mingw/gcc suite Alessandro Francesconi 05 Oct 09:43
  My plugin doesn't start anymore after upgrading mingw/gcc suite Michael Henning 06 Oct 21:21
   My plugin doesn't start anymore after upgrading mingw/gcc suite Alessandro Francesconi 08 Oct 11:05
    My plugin doesn't start anymore after upgrading mingw/gcc suite Jehan Pagès 09 Oct 02:29
Alessandro Francesconi
2013-10-05 09:43:31 UTC (about 11 years ago)

My plugin doesn't start anymore after upgrading mingw/gcc suite

Anyone can give me help? I’m still blocked for this problem. As I said to Partha in private, I can’t figure another reason about this, apart from a GCC’s fault. The fact is that my code worked few minutes before upgrading to GCC 4.8.1, then, without changes, the new compiler made it “invisible” to GIMP.

Moreover, the plugin now crashes when queryied by GIMP at startup (http://www.alessandrofrancesconi.it/bimp-fail.jpg).

My system is Windows 8 64bit, GIMP 2.6.8.

Can it be related to the 64bit environment? Never had problems before.

Ale

Da: Alessandro Francesconi Data invio: ‎venerdì‎ ‎4‎ ‎ottobre‎ ‎2013 ‎11‎.‎12 A: gimp-developer-list@gnome.org

Hello everyone,

This morning, on my Windows platform, I’ve decided to run a “mingw-get.exe upgrade” command in order to give a fresh update to my compiling tools.

The process finished fine and the GCC version changed from 4.7.2 to 4.8.1... but I shouldn't have done it!

I went to my plugin source code (it’s BIMP, by the way), then I run the usual batch command in order to compile it with the “new” tools. The compiler ended without errors, but now the plugin is disappeared from GIMP!

One strange thing after the upgrade: the filesize of my plugin’s executable changed from 270 KB to 320 KB... I think I have to add some new options to the compiler, or what?

This is the full command I use to compile my plugin: https://github.com/alessandrofrancesconi/gimp-plugin-bimp/blob/master/makewin.bat

Thanks for your attention

Michael Henning
2013-10-06 21:21:02 UTC (about 11 years ago)

My plugin doesn't start anymore after upgrading mingw/gcc suite

It's hard to help you without any additional information. I would suggest that you grab mingw's gdb and try debugging the plugin with that. You can try these instructions: https://git.gnome.org/browse/gimp/tree/devel-docs/debug-plug-ins.txt I forget if they work on windows.

Anyway, good luck!

On Sat, Oct 5, 2013 at 5:43 AM, Alessandro Francesconi wrote:

Anyone can give me help? Im still blocked for this problem. As I said to Partha in private, I cant figure another reason about this, apart from a GCCs fault. The fact is that my code worked few minutes before upgrading to GCC 4.8.1, then, without changes, the new compiler made it invisible to GIMP.

Moreover, the plugin now crashes when queryied by GIMP at startup (http://www.alessandrofrancesconi.it/bimp-fail.jpg).

My system is Windows 8 64bit, GIMP 2.6.8.

Can it be related to the 64bit environment? Never had problems before.

Ale

Da: Alessandro Francesconi Data invio: venerd 4 ottobre 2013 11.12 A: gimp-developer-list@gnome.org

Hello everyone,

This morning, on my Windows platform, Ive decided to run a mingw-get.exe upgrade command in order to give a fresh update to my compiling tools.

The process finished fine and the GCC version changed from 4.7.2 to 4.8.1... but I shouldn't have done it!

I went to my plugin source code (its BIMP, by the way), then I run the usual batch command in order to compile it with the new tools. The compiler ended without errors, but now the plugin is disappeared from GIMP!

One strange thing after the upgrade: the filesize of my plugins executable changed from 270 KB to 320 KB... I think I have to add some new options to the compiler, or what?

This is the full command I use to compile my plugin: https://github.com/alessandrofrancesconi/gimp-plugin-bimp/blob/master/makewin.bat

Thanks for your attention _______________________________________________ gimp-developer-list mailing list
List address: gimp-developer-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list _______________________________________________ gimp-developer-list mailing list
List address: gimp-developer-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list

Alessandro Francesconi
2013-10-08 11:05:13 UTC (about 11 years ago)

My plugin doesn't start anymore after upgrading mingw/gcc suite

You know what? I give up, for now.

I spent like an entire day searching for a solution to this problem... and I "solved" it simply by removing the current mingw32 package and re-installing an version which still includes gcc 4.7.0 (luckily found on another PC).

I can't really focus on a possibile solution, I've everything on the right place (GIMP-dev and GTK-dev libraries, in primis) and the only thing that changed was the version of gcc, from 4.7 to 4.8 branch.

With gcc 4.7, compiled for mingw32 on Windows 64bit, I just run the bat command I posted before in order to compile every new version of BIMP. The resulting 32bit binary is put on the usual GIMP's plugin directory, no matter if 32 or 64bit distribution because as far as I know GIMP on a x64 machine can run plugins for both the architectures: http://www.dpreview.com/forums/post/41353679. That's the reason why I never had problems in distributing a 32bit-only versions of my plugin. They simply work "everywhere".

On the other hand, if doing the same thing but using gcc 4.8, the resulting 32bit .exe is twice the size of the previous one and crashes when loaded by GIMP.

@drawoc: your tip is good, but in order to use gdb I must re-compile GIMP with debug symbols. I've never done it before and I haven't got time to solve issues that might arise from this step under Windows.

So, thank you. Maybe I'll face this problem again in future, but I'd like to deal with other issues for now. By the way, a new version of BIMP is out, if you're interested: http://www.alessandrofrancesconi.it/projects/bimp

From: drawoc@darkrefraction.com
Date: Sun, 6 Oct 2013 17:21:02 -0400 Subject: Re: [Gimp-developer] My plugin doesn't start anymore after upgrading mingw/gcc suite To: alessandrofrancesconi@live.it
CC: gimp-developer-list@gnome.org

It's hard to help you without any additional information. I would suggest that you grab mingw's gdb and try debugging the plugin with that. You can try these instructions: https://git.gnome.org/browse/gimp/tree/devel-docs/debug-plug-ins.txt I forget if they work on windows.

Anyway, good luck!

On Sat, Oct 5, 2013 at 5:43 AM, Alessandro Francesconi wrote:

Anyone can give me help? Im still blocked for this problem. As I said to Partha in private, I cant figure another reason about this, apart from a GCCs fault. The fact is that my code worked few minutes before upgrading to GCC 4.8.1, then, without changes, the new compiler made it invisible to GIMP.

Moreover, the plugin now crashes when queryied by GIMP at startup (http://www.alessandrofrancesconi.it/bimp-fail.jpg).

My system is Windows 8 64bit, GIMP 2.6.8.

Can it be related to the 64bit environment? Never had problems before.

Ale

Da: Alessandro Francesconi Data invio: venerd 4 ottobre 2013 11.12 A: gimp-developer-list@gnome.org

Hello everyone,

This morning, on my Windows platform, Ive decided to run a mingw-get.exe upgrade command in order to give a fresh update to my compiling tools.

The process finished fine and the GCC version changed from 4.7.2 to 4.8.1... but I shouldn't have done it!

I went to my plugin source code (its BIMP, by the way), then I run the usual batch command in order to compile it with the new tools. The compiler ended without errors, but now the plugin is disappeared from GIMP!

One strange thing after the upgrade: the filesize of my plugins executable changed from 270 KB to 320 KB... I think I have to add some new options to the compiler, or what?

This is the full command I use to compile my plugin: https://github.com/alessandrofrancesconi/gimp-plugin-bimp/blob/master/makewin.bat

Thanks for your attention _______________________________________________ gimp-developer-list mailing list
List address: gimp-developer-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list _______________________________________________ gimp-developer-list mailing list
List address: gimp-developer-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list

Jehan Pagès
2013-10-09 02:29:27 UTC (about 11 years ago)

My plugin doesn't start anymore after upgrading mingw/gcc suite

Hi,

On Wed, Oct 9, 2013 at 12:05 AM, Alessandro Francesconi wrote:

You know what? I give up, for now.

I spent like an entire day searching for a solution to this problem... and I "solved" it simply by removing the current mingw32 package and re-installing an version which still includes gcc 4.7.0 (luckily found on another PC).

I can't really focus on a possibile solution, I've everything on the right place (GIMP-dev and GTK-dev libraries, in primis) and the only thing that changed was the version of gcc, from 4.7 to 4.8 branch.

With gcc 4.7, compiled for mingw32 on Windows 64bit, I just run the bat command I posted before in order to compile every new version of BIMP.

Same as others, I can't help much without much information. I see one thing I would do in your place though: have you tried completely cleaning out all the compiled files first before recompilation? I don't know which compilation system you use (autotools, cmake...), but even though they are very good, sometimes they would not detect a good reason for re-compiling. And I figure that a change of your compiler version is a very good reason, and that because of it, the whole project should be recompiled. Maybe there may be issues by mixing objects compiled by different compilers.

If you use git, you can for instance "git clean -d -f -x" (be careful, it would clean *any* file not versionned, even files listed by the .gitignore. So be careful if you kept non-versionned files you don't want erased).

The resulting 32bit binary is put on the usual GIMP's plugin directory, no matter if 32 or 64bit distribution because as far as I know GIMP on a x64 machine can run plugins for both the architectures: http://www.dpreview.com/forums/post/41353679. That's the reason why I never had problems in distributing a 32bit-only versions of my plugin. They simply work "everywhere".

But do you use the mingw-w64 project or the original mingw project (which has no 64-bit support, as far as I know, and has different features, I think)?

On the other hand, if doing the same thing but using gcc 4.8, the resulting 32bit .exe is twice the size of the previous one and crashes when loaded by GIMP.

@drawoc: your tip is good, but in order to use gdb I must re-compile GIMP with debug symbols. I've never done it before and I haven't got time to solve issues that might arise from this step under Windows.

So, thank you. Maybe I'll face this problem again in future, but I'd like to deal with other issues for now. By the way, a new version of BIMP is out, if you're interested: http://www.alessandrofrancesconi.it/projects/bimp

Finally if none of the answers you get here help you, I would suggest to ask to the mingw/mingw-w64 mailing list/IRC rather than here. They might be better suited to help you.

But yeah if an older version of GCC works well, you may also as well stay there for the time being. I myself use an older version of mingw-w64 gcc, the one in my distribution repository. And I don't see the need to install by hand a more recent version.

Jehan

From: drawoc@darkrefraction.com
Date: Sun, 6 Oct 2013 17:21:02 -0400 Subject: Re: [Gimp-developer] My plugin doesn't start anymore after upgrading mingw/gcc suite To: alessandrofrancesconi@live.it
CC: gimp-developer-list@gnome.org

It's hard to help you without any additional information. I would suggest that you grab mingw's gdb and try debugging the plugin with that. You can try these instructions: https://git.gnome.org/browse/gimp/tree/devel-docs/debug-plug-ins.txt I forget if they work on windows.

Anyway, good luck!

On Sat, Oct 5, 2013 at 5:43 AM, Alessandro Francesconi wrote:

Anyone can give me help? I’m still blocked for this problem. As I said to Partha in private, I can’t figure another reason about this, apart from a GCC’s fault. The fact is that my code worked few minutes before upgrading to GCC 4.8.1, then, without changes, the new compiler made it “invisible” to GIMP.

Moreover, the plugin now crashes when queryied by GIMP at startup (http://www.alessandrofrancesconi.it/bimp-fail.jpg).

My system is Windows 8 64bit, GIMP 2.6.8.

Can it be related to the 64bit environment? Never had problems before.

Ale

Da: Alessandro Francesconi Data invio: venerdì 4 ottobre 2013 11.12 A: gimp-developer-list@gnome.org

Hello everyone,

This morning, on my Windows platform, I’ve decided to run a “mingw-get.exe upgrade” command in order to give a fresh update to my compiling tools.

The process finished fine and the GCC version changed from 4.7.2 to 4.8.1... but I shouldn't have done it!

I went to my plugin source code (it’s BIMP, by the way), then I run the usual batch command in order to compile it with the “new” tools. The compiler ended without errors, but now the plugin is disappeared from GIMP!

One strange thing after the upgrade: the filesize of my plugin’s executable changed from 270 KB to 320 KB... I think I have to add some new options to the compiler, or what?

This is the full command I use to compile my plugin: https://github.com/alessandrofrancesconi/gimp-plugin-bimp/blob/master/makewin.bat

Thanks for your attention _______________________________________________ gimp-developer-list mailing list
List address: gimp-developer-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list _______________________________________________ gimp-developer-list mailing list
List address: gimp-developer-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list

_______________________________________________ gimp-developer-list mailing list
List address: gimp-developer-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list