Project Home
Project Home
Trackers
Trackers
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - IDE runs a little on 64bit system: (3 Items)
   
IDE runs a little on 64bit system  
Hello,

I'm running an Ubuntu 9.10 and installed the IDE including the latest update to 4.7

Now I'm able to start the IDE and can use my old workspace, everything looks fine until I try to add a new project, 
build a project or anything else which includes some kind of wizard popping up.

The wizards show correctly, I can change and set the contents but the (next >) and (finish) buttons won't work. They are
 unghosted correctly when all data is in but when I click, they just change the bevel but the wizard doesn't change. 
Clicking the (cancel) button twice will end the wizard and I'm back on step one.

The console shows a bunch of messages about mismatched libraries, so I guess the IDE runs in ia32 mode and tries to open
 someof the 64 bit libraries. 

What confuses me is the fact that the standard IDE (4.6) worked flawless with Ubuntu 8.04 64Bit.

Will there be a 64Bit version of the IDE?

Thanks and greetings,

    bweb


/usr/lib/gio/modules/libgioremote-volume-monitor.so: wrong ELF class: ELFCLASS64
Failed to load module: /usr/lib/gio/modules/libgioremote-volume-monitor.so
/usr/lib/gio/modules/libgiogconf.so: wrong ELF class: ELFCLASS64
Failed to load module: /usr/lib/gio/modules/libgiogconf.so
/usr/lib/gio/modules/libgvfsdbus.so: wrong ELF class: ELFCLASS64
Failed to load module: /usr/lib/gio/modules/libgvfsdbus.so
Re: IDE runs a little on 64bit system  
Hi, Bjoern,

This is the change in the GTK API in GTK 2.18 that caught Eclipse SWT
off-guard.  There is a work-around:  in your run_qde.sh script, set this
environment variable:

  export GDK_NATIVE_WINDOWS=1

before launching the qde launcher.

We expect to adopt a fix from the Eclipse Platform in time for the IDE
release; stay tuned.

The wizard button problems are not related to 64-bit or lbrary
compatibility.  I don't know whether the libraries you indicate are
critical to the functioning of the IDE.  Let's see how far you get with
the GTK work-around  :-)

Cheers,

Christian

On Tue, 2010-02-09 at 06:01 -0500, Bjoern Weber wrote:

> Hello,
> 
> I'm running an Ubuntu 9.10 and installed the IDE including the latest update to 4.7
> 
> Now I'm able to start the IDE and can use my old workspace, everything looks fine until I try to add a new project, 
build a project or anything else which includes some kind of wizard popping up.
> 
> The wizards show correctly, I can change and set the contents but the (next >) and (finish) buttons won't work. They 
are unghosted correctly when all data is in but when I click, they just change the bevel but the wizard doesn't change. 
Clicking the (cancel) button twice will end the wizard and I'm back on step one.
> 
> The console shows a bunch of messages about mismatched libraries, so I guess the IDE runs in ia32 mode and tries to 
open someof the 64 bit libraries. 
> 
> What confuses me is the fact that the standard IDE (4.6) worked flawless with Ubuntu 8.04 64Bit.
> 
> Will there be a 64Bit version of the IDE?
> 
> Thanks and greetings,
> 
>     bweb
> 
> 
> /usr/lib/gio/modules/libgioremote-volume-monitor.so: wrong ELF class: ELFCLASS64
> Failed to load module: /usr/lib/gio/modules/libgioremote-volume-monitor.so
> /usr/lib/gio/modules/libgiogconf.so: wrong ELF class: ELFCLASS64
> Failed to load module: /usr/lib/gio/modules/libgiogconf.so
> /usr/lib/gio/modules/libgvfsdbus.so: wrong ELF class: ELFCLASS64
> Failed to load module: /usr/lib/gio/modules/libgvfsdbus.so
> 
> 
> 
> 
> _______________________________________________
> 
> General
> http://community.qnx.com/sf/go/post46884
> 


Re: IDE runs a little on 64bit system  
Hello Christian,

> This is the change in the GTK API in GTK 2.18 that caught Eclipse SWT
> off-guard.  There is a work-around:  in your run_qde.sh script, set this
> environment variable:
> 
>   export GDK_NATIVE_WINDOWS=1
> 
> before launching the qde launcher.export GDK_NATIVE_WINDOWS=1
> [...]

Awesome! Now even the 4.6 IDE is working fine and even the 64Bit warnings went away. Just what I needed to keep on 
working on my desktop.

Thanks,

  Bjoern