Qt-jambi-interest Archive, February 2007
Qt Designer issues in beta version
Pages: Prev | 1 | 2 | Next
Message 1 in thread
Hi,
Starting from an empty QMainWIndow I want to add Dock Widgets within the Qt
designer (jambi beta release). These dock widgets always become a child of
centralwidget, rather than MainWindow. How can I drag the dock widgets, such
that they become a child of MainWindow ? When I display the example jui file
./com/trolltech/demos/imageviewer/MainWindowUI.jui in the designer, then I see
that this seems to be possible. Or was the imageviewer jui file
created "manually" rather than with the designer ?
Another issue seems to be, that one can no longer reset properties to their
standard values (the red curled arrow is missing).
Then the handling of spacers looks strange. In the created jui file still the
old C++ like "Qt::horizontal" enums are created. Also somehow the display
mixes up horizontal and vertical spacers.
The property WindowTitle seems to be missing as well, at least for
QDockWidgets.
Do others have the same problems or is this a problem with my installation ?
Message 2 in thread
Hi, Stephan.
Stephan Egli wrote:
>Hi,
>
>Starting from an empty QMainWIndow I want to add Dock Widgets within the Qt
>designer (jambi beta release). These dock widgets always become a child of
>centralwidget, rather than MainWindow. How can I drag the dock widgets, such
>that they become a child of MainWindow ? When I display the example jui file
>./com/trolltech/demos/imageviewer/MainWindowUI.jui in the designer, then I see
>that this seems to be possible. Or was the imageviewer jui file
>created "manually" rather than with the designer ?
>
>
Yes, there seem to be a few properties missing from the dock widgets due
to a bug in the Qt Jambi plugin. The MainWindowUI.jui is created prior
to the plugin, which is why we hadn't caught this one yet.
The best work-around I can come up with for this is to create the main
window layout first, using Designer without the plugin installed (just
run the designer executable with QT_PLUGIN_PATH set to nothing.) If you
have a source copy of Qt available, the file you create can then be
converted to Jambi with the following command (set the QTDIR environment
variable to your Qt source installation first.)
% bin/generator --convert-to-jui=myuifile.ui header.h
generator_example/typesystem_generatorexample.txt
The header.h file needs to include the necessary Qt header files (the
definitions of the classes used in the .ui file.) The easiest thing
would be to have something like this:
-- header.h
#include <QtCore/QtCore>
#include <QtGui/QtGui>
--
[ signature omitted ]
Message 3 in thread
On Monday 19 February 2007 10:54, Eskil A. Blomfeldt wrote:
>
> >Then the handling of spacers looks strange. In the created jui file still
> > the old C++ like "Qt::horizontal" enums are created. Also somehow the
> > display mixes up horizontal and vertical spacers.
>
> The problem where C++ syntax is used for the enum is an implementation
> incovenience, but it is only cosmetic, as juic and QUiLoader will still
> handle these specific cases correctly.
>
> I can however not reproduce any problem with the orientation of the
> spacers. Are there any special steps I need to take to reproduce this?
>
> Thank you for the report!
>
> -- Eskil
It seems that the default orientation of spacers has changed from horizontal
to vertical. If I start from a jui file with NO definition of orientation in
it for a spacer, then it is drawn in the Designer as a vertical spacer
whereas before it was assumed to be a horizontal spacer. Can you confirm
this ? Will it stay like this ?
Stephan
Message 4 in thread
Hi everybody
A similar problem exists for Toolbars added in the designer. The generated
Java File (UI_...Class.java) Contains a QT::Horizontal, what is an error.
It should be Orientation.Horizontal.
After correcting this error and Starting the application I get the
following error:
QMainWindow::addToolBar: invalid 'area' argument
Regards, Mike
> On Monday 19 February 2007 10:54, Eskil A. Blomfeldt wrote:
>
>>
>> >Then the handling of spacers looks strange. In the created jui file
>> still
>> > the old C++ like "Qt::horizontal" enums are created. Also somehow the
>> > display mixes up horizontal and vertical spacers.
>>
>> The problem where C++ syntax is used for the enum is an implementation
>> incovenience, but it is only cosmetic, as juic and QUiLoader will still
>> handle these specific cases correctly.
>>
>> I can however not reproduce any problem with the orientation of the
>> spacers. Are there any special steps I need to take to reproduce this?
>>
>> Thank you for the report!
>>
>> -- Eskil
>
> It seems that the default orientation of spacers has changed from
> horizontal
> to vertical. If I start from a jui file with NO definition of orientation
> in
> it for a spacer, then it is drawn in the Designer as a vertical spacer
> whereas before it was assumed to be a horizontal spacer. Can you confirm
> this ? Will it stay like this ?
>
> Stephan
>
>
Message 5 in thread
mike@xxxxxxxxxxxx wrote:
>A similar problem exists for Toolbars added in the designer. The generated
>Java File (UI_...Class.java) Contains a QT::Horizontal, what is an error.
>It should be Orientation.Horizontal.
>After correcting this error and Starting the application I get the
>following error:
>QMainWindow::addToolBar: invalid 'area' argument
>
>
>
Hi, Mike.
Thanks for the report. However, I am not able to reproduce this with a
simple main window that has a tool bar in it.
Would you be able to either give me a walk through of the steps needed
to reproduce it or mail me an example .jui file which demonstrates the
problem?
-- Eskil
Message 6 in thread
Hi, Michael.
Michael Christen wrote:
>Here the steps to reproduce the error:
>
>1) Create a new Project (QT Jambi Using Designer Form)
>2) Just use the defaults in the wizard
>3) Choose QMainWindow on the last page of the wizard
>4) Doubleclick the jui file
>5) Right click on the mainwindow and choose 'Add Toolbar'
>6) Save the form
>
>--> the UI....Class.java has an error.
>
>
I think I know what is causing this. Designer needs to load a couple of
plugins from the Qt Jambi package. We are working to make this
dependency simpler, but currently you have to set the Qt Jambi location
in your preferences correctly in order to use the Eclipse integration.
Could the problem be that it is somehow failing to load the plugins? If
the plugins are loaded correctly, then you should see Java syntax in the
property editor and the signals and slots editor, and your resource
browser should look like this:
http://doc.trolltech.com/qtjambi-1.0/com/trolltech/qt/images/eclipse-resource-editor.png
-- Eskil
Message 7 in thread
> Hi, Michael.
>
> mike@xxxxxxxxxxxx wrote:
>
>>>I think I know what is causing this. Designer needs to load a couple of
>>>plugins from the Qt Jambi package. We are working to make this
>>>dependency simpler, but currently you have to set the Qt Jambi location
>>>in your preferences correctly in order to use the Eclipse integration.
>>>
>>>Could the problem be that it is somehow failing to load the plugins? If
>>>the plugins are loaded correctly, then you should see Java syntax in the
>>>property editor and the signals and slots editor, and your resource
>>>browser should look like this:
>>>
>>>http://doc.trolltech.com/qtjambi-1.0/com/trolltech/qt/images/eclipse-resource-editor.png
>>>
>>>
>>
>>
>>I think the Qt Jambi location is set correctly. The path is ok and the
>>Validate Button is happy too. But I don't see Java syntax. The Property
>>values are in Qt style (e.g. Qt::...).
>>
>>
>
> This indicates that the plugin is not loaded :-/
>
>>The LD_LIBRARY_PATH i also have set.
>>What else could be the Problem? Do you need further Infos?
>>
>>
>>
>
> I'm not quite sure what the problem is. If validate is happy and since
> juic is being run it seems that both the LD_LIBRARY_PATH and the Qt
> Jambi location are set correctly. It is of course the install path of Qt
> Jambi beta you have set as the Jambi location?
I set the jambi location to: /opt/qtjambi which is a symbolic link to
/opt/qtjambi-linux-1.0.0-beta
See the attached file for the contents of this directory
> Could you check, just to
> make sure, that the directory contains a subdirectory called
> plugins/designer which has libraries JambiCustomWidget.so and
> JambiLanguage.so in it?
Yes, there is a libJambiCustomWidget.so and a libJambiLanguage.so.
> Another possibility is that the Eclipse Integration are binding against
> the wrong set of Qt libraries, which will then refuse to load the binary
> incompatible plugins. This would however mean that another directory in
> the LD_LIBRARY_PATH contains Qt libraries. Is this the case?
I startet eclipse from commandline:
tgdchmi2@narsil:~> echo ${LD_LIBRARY_PATH};
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/opt/qtjambi/lib
/opt/eclipse_qt/eclipse -vm /data/software/java/jdkSUN15/jre/bin/java
-data /data/home/tgdchmi2/workspaces/qtjambi
/home/db2inst1/sqllib/lib:/opt/mqm/lib
QObject::killTimers: timers cannot be stopped from another thread
tgdchmi2@narsil:~>
As you can see the LD_LIBRARY_PATH is
/home/db2inst1/sqllib/lib:/opt/mqm/lib and then I add /opt/qtjambi/lib
Should I also add /opt/qtjambi/plugins/designer to the LD_LIBRARY_PATH?
>
> Also: Is there any output to the console if you try running eclipse from
> the command line? If Designer tries and fails to load the plugins, it
> should print out the warning.
There is no warning.
Miketgdchmi2@narsil:~> ls -al /opt/qtjambi-linux-1.0.0-beta
total 1820
drwxr-xr-x 9 root root 4096 2007-01-26 17:18 .
drwxr-xr-x 16 root root 4096 2007-02-21 07:39 ..
drwxr-xr-x 2 root root 4096 2007-01-26 17:18 bin
-rw-r--r-- 1 root root 8038 2007-01-26 17:18 changes-1.0.0-beta
drwxr-xr-x 3 root root 4096 2007-01-26 17:02 com
-rwxr--r-- 1 root root 637 2007-01-26 17:18 designer.sh
drwxr-xr-x 3 root root 4096 2007-01-26 17:17 doc
drwxr-xr-x 2 root root 4096 2007-01-26 17:18 generator_example
drwxr-xr-x 2 root root 4096 2007-01-26 17:18 include
-rw-r--r-- 1 root root 1683 2007-01-26 17:18 KNOWN_ISSUES
drwxr-xr-x 2 root root 4096 2007-01-26 17:17 lib
-rw-r--r-- 1 root root 21416 2007-01-26 17:18 LICENSE
drwxr-xr-x 10 root root 4096 2007-01-26 17:17 plugins
-rw-r--r-- 1 root root 1773083 2007-01-26 17:17 qtjambi.jar
-rwxr--r-- 1 root root 626 2007-01-26 17:18 qtjambi.sh
-rw-r--r-- 1 root root 3653 2007-01-26 17:18 README
tgdchmi2@narsil:~> ls -al /opt/qtjambi-linux-1.0.0-beta/lib/
total 33460
drwxr-xr-x 2 root root 4096 2007-01-26 17:17 .
drwxr-xr-x 9 root root 4096 2007-01-26 17:18 ..
lrwxrwxrwx 1 root root 33 2007-02-15 14:14 libcom_trolltech_qt_core.so -> libcom_trolltech_qt_core.so.1.0.0
lrwxrwxrwx 1 root root 33 2007-02-15 14:14 libcom_trolltech_qt_core.so.1 -> libcom_trolltech_qt_core.so.1.0.0
lrwxrwxrwx 1 root root 33 2007-02-15 14:14 libcom_trolltech_qt_core.so.1.0 -> libcom_trolltech_qt_core.so.1.0.0
-rwxr-xr-x 1 root root 1306563 2007-01-26 17:06 libcom_trolltech_qt_core.so.1.0.0
lrwxrwxrwx 1 root root 32 2007-02-15 14:14 libcom_trolltech_qt_gui.so -> libcom_trolltech_qt_gui.so.1.0.0
lrwxrwxrwx 1 root root 32 2007-02-15 14:14 libcom_trolltech_qt_gui.so.1 -> libcom_trolltech_qt_gui.so.1.0.0
lrwxrwxrwx 1 root root 32 2007-02-15 14:14 libcom_trolltech_qt_gui.so.1.0 -> libcom_trolltech_qt_gui.so.1.0.0
-rwxr-xr-x 1 root root 11295901 2007-01-26 17:15 libcom_trolltech_qt_gui.so.1.0.0
lrwxrwxrwx 1 root root 36 2007-02-15 14:14 libcom_trolltech_qt_network.so -> libcom_trolltech_qt_network.so.1.0.0
lrwxrwxrwx 1 root root 36 2007-02-15 14:14 libcom_trolltech_qt_network.so.1 -> libcom_trolltech_qt_network.so.1.0.0
lrwxrwxrwx 1 root root 36 2007-02-15 14:14 libcom_trolltech_qt_network.so.1.0 -> libcom_trolltech_qt_network.so.1.0.0
-rwxr-xr-x 1 root root 429765 2007-01-26 17:16 libcom_trolltech_qt_network.so.1.0.0
lrwxrwxrwx 1 root root 35 2007-02-15 14:14 libcom_trolltech_qt_opengl.so -> libcom_trolltech_qt_opengl.so.1.0.0
lrwxrwxrwx 1 root root 35 2007-02-15 14:14 libcom_trolltech_qt_opengl.so.1 -> libcom_trolltech_qt_opengl.so.1.0.0
lrwxrwxrwx 1 root root 35 2007-02-15 14:14 libcom_trolltech_qt_opengl.so.1.0 -> libcom_trolltech_qt_opengl.so.1.0.0
-rwxr-xr-x 1 root root 216844 2007-01-26 17:15 libcom_trolltech_qt_opengl.so.1.0.0
lrwxrwxrwx 1 root root 32 2007-02-15 14:14 libcom_trolltech_qt_sql.so -> libcom_trolltech_qt_sql.so.1.0.0
lrwxrwxrwx 1 root root 32 2007-02-15 14:14 libcom_trolltech_qt_sql.so.1 -> libcom_trolltech_qt_sql.so.1.0.0
lrwxrwxrwx 1 root root 32 2007-02-15 14:14 libcom_trolltech_qt_sql.so.1.0 -> libcom_trolltech_qt_sql.so.1.0.0
-rwxr-xr-x 1 root root 476463 2007-01-26 17:15 libcom_trolltech_qt_sql.so.1.0.0
lrwxrwxrwx 1 root root 32 2007-02-15 14:14 libcom_trolltech_qt_svg.so -> libcom_trolltech_qt_svg.so.1.0.0
lrwxrwxrwx 1 root root 32 2007-02-15 14:14 libcom_trolltech_qt_svg.so.1 -> libcom_trolltech_qt_svg.so.1.0.0
lrwxrwxrwx 1 root root 32 2007-02-15 14:14 libcom_trolltech_qt_svg.so.1.0 -> libcom_trolltech_qt_svg.so.1.0.0
-rwxr-xr-x 1 root root 280367 2007-01-26 17:15 libcom_trolltech_qt_svg.so.1.0.0
lrwxrwxrwx 1 root root 32 2007-02-15 14:14 libcom_trolltech_qt_xml.so -> libcom_trolltech_qt_xml.so.1.0.0
lrwxrwxrwx 1 root root 32 2007-02-15 14:14 libcom_trolltech_qt_xml.so.1 -> libcom_trolltech_qt_xml.so.1.0.0
lrwxrwxrwx 1 root root 32 2007-02-15 14:14 libcom_trolltech_qt_xml.so.1.0 -> libcom_trolltech_qt_xml.so.1.0.0
-rwxr-xr-x 1 root root 479797 2007-01-26 17:16 libcom_trolltech_qt_xml.so.1.0.0
lrwxrwxrwx 1 root root 40 2007-02-15 14:14 libcom_trolltech_tools_designer.so -> libcom_trolltech_tools_designer.so.1.0.0
lrwxrwxrwx 1 root root 40 2007-02-15 14:14 libcom_trolltech_tools_designer.so.1 -> libcom_trolltech_tools_designer.so.1.0.0
lrwxrwxrwx 1 root root 40 2007-02-15 14:14 libcom_trolltech_tools_designer.so.1.0 -> libcom_trolltech_tools_designer.so.1.0.0
-rwxr-xr-x 1 root root 292962 2007-01-26 17:17 libcom_trolltech_tools_designer.so.1.0.0
-rwxr-xr-x 1 root root 31668 2007-01-26 17:17 libQtAssistantClient.so.4
-rwxr-xr-x 1 root root 2032686 2007-01-26 17:17 libQtCore.so.4
-rwxr-xr-x 1 root root 2470105 2007-01-26 17:17 libQtDesignerComponents.so.4
-rwxr-xr-x 1 root root 2284430 2007-01-26 17:17 libQtDesigner.so.4
-rwxr-xr-x 1 root root 9561943 2007-01-26 17:17 libQtGui.so.4
lrwxrwxrwx 1 root root 19 2007-02-15 14:14 libqtjambi.so -> libqtjambi.so.1.0.0
lrwxrwxrwx 1 root root 19 2007-02-15 14:14 libqtjambi.so.1 -> libqtjambi.so.1.0.0
lrwxrwxrwx 1 root root 19 2007-02-15 14:14 libqtjambi.so.1.0 -> libqtjambi.so.1.0.0
-rwxr-xr-x 1 root root 239624 2007-01-26 17:04 libqtjambi.so.1.0.0
-rwxr-xr-x 1 root root 498744 2007-01-26 17:17 libQtNetwork.so.4
-rwxr-xr-x 1 root root 348081 2007-01-26 17:17 libQtOpenGL.so.4
-rwxr-xr-x 1 root root 293215 2007-01-26 17:17 libQtSql.so.4
-rwxr-xr-x 1 root root 454491 2007-01-26 17:17 libQtSvg.so.4
-rwxr-xr-x 1 root root 387758 2007-01-26 17:17 libQtXml.so.4
-rw-r--r-- 1 root root 737496 2007-01-26 17:17 libstdc++.so.5
tgdchmi2@narsil:~> ls -al /opt/qtjambi-linux-1.0.0-beta/plugins/designer/
total 100
drwxr-xr-x 2 root root 4096 2007-01-26 17:17 .
drwxr-xr-x 10 root root 4096 2007-01-26 17:17 ..
-rwxr-xr-x 1 root root 43875 2007-01-26 17:17 libJambiCustomWidget.so
-rwxr-xr-x 1 root root 48150 2007-01-26 17:17 libJambiLanguage.so
tgdchmi2@narsil:~>
Message 8 in thread
Hi, Michael.
mike@xxxxxxxxxxxx wrote:
>>I'm not quite sure what the problem is. If validate is happy and since
>>juic is being run it seems that both the LD_LIBRARY_PATH and the Qt
>>Jambi location are set correctly. It is of course the install path of Qt
>>Jambi beta you have set as the Jambi location?
>>
>>
>
>I set the jambi location to: /opt/qtjambi which is a symbolic link to
>/opt/qtjambi-linux-1.0.0-beta
>See the attached file for the contents of this directory
>
>
This is far fetched, but could you try setting it to the directory
containing Jambi directly? I.e. not going via the symbolic link? This
shouldn't make any difference, obviously.
I also have some more suggestions for trying to track this problem:
1. Could you set the LD_LIBRARY_PATH as you did, and try to run 'ldd' on
the libJambiCustomWidget.so and libJambiLanguage.so to check for any
dependencies that are missing?
2. Could you set the JAVADIR environment variable to point to the root
of the JDK you are using (/data/software/java/jdkSUN15) and see if that
makes a difference?
3. Finally: Have you tried running the stand alone version of designer
from the command line? This should work just by cd'ing into the
directory of your Jambi installation and running the command line script
'designer.sh' from there. It should set the correct environment for you.
Do you get Java syntax in the property editor if you start Designer in
this way?
>Should I also add /opt/qtjambi/plugins/designer to the LD_LIBRARY_PATH?
>
>
No, this should not be necessary.
-- Eskil
Message 9 in thread
Hi Eskil
Thanks' for your help.
>
> This is far fetched, but could you try setting it to the directory
> containing Jambi directly? I.e. not going via the symbolic link? This
> shouldn't make any difference, obviously.
I already tried this. It didn't help either.
> I also have some more suggestions for trying to track this problem:
>
> 1. Could you set the LD_LIBRARY_PATH as you did, and try to run 'ldd' on
> the libJambiCustomWidget.so and libJambiLanguage.so to check for any
> dependencies that are missing?
No there are no missing dependencies.
> 2. Could you set the JAVADIR environment variable to point to the root
> of the JDK you are using (/data/software/java/jdkSUN15) and see if that
> makes a difference?
Why is it JAVADIR? Normally it is JDK_HOME or JAVA_HOME...
I can't test this right now. It seems that eclipse 'lost' the qt plugins.
This is already the 3rd time that this happens and I don't know why... :(
The qt plugins are still in the plugins folder but i can no longer use
them. in eclipse all qt things are missing.
> 3. Finally: Have you tried running the stand alone version of designer
> from the command line? This should work just by cd'ing into the
> directory of your Jambi installation and running the command line script
> 'designer.sh' from there. It should set the correct environment for you.
> Do you get Java syntax in the property editor if you start Designer in
> this way?
Starting designer.sh does not work.
After setting JAVADIR it works. And the Property Editor contains the Java
Syntax.
I'll test this at home later. Perhaps there I'll have more luck...
Regards, Mike
PS: Is it possible to show the classname only in the properties and not
the full classpath. I don't think that it is necessary to show the full
classpath...
Message 10 in thread
Hi, Michael.
mike@xxxxxxxxxxxx wrote:
>>2. Could you set the JAVADIR environment variable to point to the root
>>of the JDK you are using (/data/software/java/jdkSUN15) and see if that
>>makes a difference?
>>
>>
>
>Why is it JAVADIR? Normally it is JDK_HOME or JAVA_HOME...
>
>
Thanks, I've noted this. I think this is merely a mistake on our part.
>I can't test this right now. It seems that eclipse 'lost' the qt plugins.
>This is already the 3rd time that this happens and I don't know why... :(
>The qt plugins are still in the plugins folder but i can no longer use
>them. in eclipse all qt things are missing.
>
>
Could you open the "Error Log" view and see if it has reported any
exceptions when trying to load the plugins?
>
>
>Starting designer.sh does not work.
>After setting JAVADIR it works. And the Property Editor contains the Java
>Syntax.
>
>I'll test this at home later. Perhaps there I'll have more luck...
>
>
Thank you. If it does not help in Eclipse, could you look at the plugin
overview to check that you are running the correct versions of all
plugins? You get the overview by clicking the "Plug-in details" button
in the "About Eclipse" dialog box. All the com.trolltech.* plugins
should have version 0.0.4.
Which version of Eclipse are you running, by the way?
>
>PS: Is it possible to show the classname only in the properties and not
>the full classpath. I don't think that it is necessary to show the full
>classpath...
>
>
It is not currently possible, but I think it definitely makes sense, so
I've registered it as a suggestion in our task tracker.
Thanks for all the feedback!
-- Eskil
Message 11 in thread
Good Morning Eskil
I'm sorry to bother you that much with my problems...
>> I can't test this right now. It seems that eclipse 'lost' the qt
>> plugins.
>> This is already the 3rd time that this happens and I don't know
>> why... :(
>> The qt plugins are still in the plugins folder but i can no longer use
>> them. in eclipse all qt things are missing.
> Could you open the "Error Log" view and see if it has reported any
> exceptions when trying to load the plugins?
The Error Log is always empty...
>> Starting designer.sh does not work.
>> After setting JAVADIR it works. And the Property Editor contains the
>> Java
>> Syntax.
>>
>> I'll test this at home later. Perhaps there I'll have more luck...
> Thank you. If it does not help in Eclipse, could you look at the
> plugin overview to check that you are running the correct versions of
> all plugins? You get the overview by clicking the "Plug-in details"
> button in the "About Eclipse" dialog box. All the com.trolltech.*
> plugins should have version 0.0.4.
>
> Which version of Eclipse are you running, by the way?
My environment at work is:
SuSE 10.2
Java Sun 1.5.0_11
Eclipse 3.2.1 and Eclipse 3.2.2 (I tried both)
My environment at home is:
Gentoo Linux
Java Sun 1.5.0_11
Eclipse 3.2.1
The problems on both systems are very similar. But at home my
installation never 'looses' the QtJambi Plugins.
The Plugins are all in Version 0.0.4...
Here some Informations from my tries at home (mostly I have the same
problems at work):
1) If I start designer.sh I get the following error:
***************************************************
titania2 qtjambi-linux-1.0.0-beta # ./designer.sh
Jambi: failed to load: '/jre/lib/i386//client/libjvm.so'
./designer.sh: line 17: 5729 Segmentation fault PATH=$me/bin:$PATH
LD_LIBRARY_PATH=$me/lib:$LD_LIBRARY_PATH QT_PLUGIN_PATH=$me/plugins
CLASSPATH=$me/qtjambi.jar:$me bin/designer
***************************************************
2) After setting JAVADIR to my java home directory it works. It also
uses the Java Syntax then... but there are some errors on command line,
but it seems to work (just for your information):
***************************************************
titania2 qtjambi-linux-1.0.0-beta # export JAVADIR=/usr/lib/jvm/sun-jdk-1.5
titania2 qtjambi-linux-1.0.0-beta # ./designer.sh
QtJambiTypeManager::getInternalTypeName: Couldn't find internal type
name of 'java/lang/Object'
QPixmap::scaled: Pixmap is a null pixmap
java.lang.ArrayIndexOutOfBoundsException: -1
at java.util.ArrayList.get(ArrayList.java:323)
at
com.trolltech.tools.designer.PropertySheet.writeProperty(PropertySheet.java:241)
***************************************************
3) If I start eclipse with LD_LIBRARY_PATH and qtjambi location set
correctly I can use eclipse and the designer. The problem is that the
designer is not in 'javamode' and so the generated UI_...Class.java
files are wrong.
4) If I start eclipse with JAVADIR, LD_LIBRARY_PATH and qtjambi location
set correctly eclipse does not start up and crashes as soon it tries to
load the qtjambi plugins, but only if there is already a qtjambi GUI
project in the workbench. With an empty workbench it starts up. The
error on command line:
***************************************************
mike@titania2 qtjambi-linux-1.0.0-beta $
JAVADIR=/usr/lib/jvm/sun-jdk-1.5
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/opt/qtjambi/lib
'/opt/eclipse/eclipse' -vm /usr/lib/jvm/sun-jdk-1.5/bin/java
Error occurred during initialization of VM
java.lang.ExceptionInInitializerError
***************************************************
5) From now on I can't start this workspace. If I try to start the
workspace without JAVADIR set I get the following error:
***************************************************
mike@titania2 qtjambi-linux-1.0.0-beta $
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/opt/qtjambi/lib
'/opt/eclipse/eclipse' -vm /usr/lib/jvm/sun-jdk-1.5/bin/java
Jambi: failed to load: '/jre/lib/i386//client/libjvm.so'
#
# An unexpected error has been detected by HotSpot Virtual Machine:
#
# SIGSEGV (0xb) at pc=0x93fd2bfa, pid=6269, tid=3084654256
#
# Java VM: Java HotSpot(TM) Server VM (1.5.0_11-b03 mixed mode)
# Problematic frame:
# C [libqtjambi.so+0x12bfa] _Z27qtjambi_current_environmentv+0x2a
#
# An error report file with more information is saved as
/tmp/hs_err_pid6269.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
#
***************************************************
6) Eclipse crashes in both cases (4 and 5) when it displays 'Loading
Workbench' on the splash screen. I have to create a new workspace now....
What am I doing wrong?
Other Suggestions:
1) Could you create the qtjambi tars (eclipse-plugins and qtjambi) that
all files and folders belong to root:root
2) the scripts (designer.sh and qtjambi.sh) should be executable by
everyone not just by its owner: chmod a+x *.sh
3) You should document somewhere that JAVADIR must be set or set it in
designer.sh accordingly
Other Questions:
1) I feel that I have rather big problems with qtjambi resp. the
designer in javamode. Am I the first one trying it on linux?
Thank you, Mike
PS: sometimes when eclipse crashes it also writes a log file. I attached
one of these...
#
#
# An unexpected error has been detected by HotSpot Virtual Machine:
#
# SIGSEGV (0xb) at pc=0x94ea3bfa, pid=5624, tid=3085219504
#
# Java VM: Java HotSpot(TM) Server VM (1.5.0_11-b03 mixed mode)
# Problematic frame:
# C [libqtjambi.so+0x12bfa] _Z27qtjambi_current_environmentv+0x2a
#
--------------- T H R E A D ---------------
Current thread (0x0805cbc0): JavaThread "main" [_thread_in_native, id=5624]
siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x00000000
Registers:
EAX=0x00000000, EBX=0x94ec15a8, ECX=0x00010004, EDX=0x08e90c60
ESP=0xbfe2fd98, EBP=0xbfe2fdc0, ESI=0x94ec1ce8, EDI=0xbfe2fdb0
EIP=0x94ea3bfa, CR2=0x00000000, EFLAGS=0x00210282
Top of Stack: (sp=0xbfe2fd98)
0xbfe2fd98: 94e944f8 95f48238 08ea2ab0 08ea2ab0
0xbfe2fda8: bfe2fdf0 b7fbf670 08e90c60 95f48238
0xbfe2fdb8: 08ea2ab0 08ea2ab0 bfe2fdf0 95f459bb
0xbfe2fdc8: 08ea2ab0 00000000 08ea2ab0 bfe2fe68
0xbfe2fdd8: bfe2fe20 b7fbf670 00000020 95f48238
0xbfe2fde8: 08ea2ab0 bfe2fe68 bfe2fe20 95f4610a
0xbfe2fdf8: 08ea2ab0 00000000 95f48360 950ec19d
0xbfe2fe08: 08eb2928 b7fbf670 01eb2928 951a9de8
Instructions: (pc=0x94ea3bfa)
0x94ea3bea: 75 f8 8b b3 84 ff ff ff 89 7d fc 8d 7d f0 8b 06
0x94ea3bfa: 8b 10 89 4c 24 08 89 7c 24 04 89 04 24 ff 52 18
Stack: [0xbfc35000,0xbfe35000), sp=0xbfe2fd98, free space=2027k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [libqtjambi.so+0x12bfa] _Z27qtjambi_current_environmentv+0x2a
C [libJambiCustomWidget.so+0x49bb] _ZN27JambiCustomWidgetCollectionC1Ev+0x5b
C [libJambiCustomWidget.so+0x510a] qt_plugin_instance+0x5a
C [libQtCore.so.4+0xef114] _ZN13QPluginLoader8instanceEv+0x34
C [libQtDesigner.so.4+0xf1b7d] _ZNK22QDesignerPluginManager8instanceERK7QString+0x8d
C [libqtdesigner.so+0x15f76] _ZN11FormEditorW13setPluginPathERK7QStringS2_S2_+0x706
C [libqtdesigner.so+0x134cd] _ZN11FormWindowW13setPluginPathERK7QStringS2_S2_+0x3d
C [libqtdesigner.so+0x10493] Java_com_trolltech_qtdesigner_views_FormWindowW_setPluginPath+0x133
j com.trolltech.qtdesigner.views.FormWindowW.setPluginPath(ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V+0
j com.trolltech.qtdesigner.views.FormWindowW.setPluginPath(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V+11
j com.trolltech.common.QtJambiConnection.setPluginPath(Ljava/lang/String;)V+413
j com.trolltech.common.QtJambiConnection.doActiveFormWindowUpdate()V+51
j com.trolltech.common.QtJambiConnection.setActiveUiEditor(Lcom/trolltech/qtdesigner/editors/UiEditor;)V+12
j com.trolltech.qtdesigner.editors.UiEditor.createPartControl(Lorg/eclipse/swt/widgets/Composite;)V+30
j org.eclipse.ui.internal.EditorReference.createPartHelper()Lorg/eclipse/ui/IEditorPart;+300
j org.eclipse.ui.internal.EditorReference.createPart()Lorg/eclipse/ui/IWorkbenchPart;+5
j org.eclipse.ui.internal.WorkbenchPartReference.getPart(Z)Lorg/eclipse/ui/IWorkbenchPart;+65
j org.eclipse.ui.internal.EditorAreaHelper.setVisibleEditor(Lorg/eclipse/ui/IEditorReference;Z)Z+12
j org.eclipse.ui.internal.EditorManager.setVisibleEditor(Lorg/eclipse/ui/IEditorReference;Z)Z+6
j org.eclipse.ui.internal.EditorManager$5.run()V+21
j org.eclipse.core.runtime.SafeRunner.run(Lorg/eclipse/core/runtime/ISafeRunnable;)V+5
j org.eclipse.core.runtime.Platform.run(Lorg/eclipse/core/runtime/ISafeRunnable;)V+1
j org.eclipse.ui.internal.EditorManager.restoreState(Lorg/eclipse/ui/IMemento;)Lorg/eclipse/core/runtime/IStatus;+153
j org.eclipse.ui.internal.WorkbenchPage.restoreState(Lorg/eclipse/ui/IMemento;Lorg/eclipse/ui/IPerspectiveDescriptor;)Lorg/eclipse/core/runtime/IStatus;+348
j org.eclipse.ui.internal.WorkbenchWindow.restoreState(Lorg/eclipse/ui/IMemento;Lorg/eclipse/ui/IPerspectiveDescriptor;)Lorg/eclipse/core/runtime/IStatus;+1413
j org.eclipse.ui.internal.Workbench.doRestoreState(Lorg/eclipse/ui/IMemento;Lorg/eclipse/core/runtime/MultiStatus;)V+161
j org.eclipse.ui.internal.Workbench.access$14(Lorg/eclipse/ui/internal/Workbench;Lorg/eclipse/ui/IMemento;Lorg/eclipse/core/runtime/MultiStatus;)V+3
j org.eclipse.ui.internal.Workbench$19.run()V+12
j org.eclipse.ui.internal.Workbench.runStartupWithProgress(ILjava/lang/Runnable;)V+59
j org.eclipse.ui.internal.Workbench.restoreState(Lorg/eclipse/ui/IMemento;)Lorg/eclipse/core/runtime/IStatus;+92
j org.eclipse.ui.internal.Workbench.access$12(Lorg/eclipse/ui/internal/Workbench;Lorg/eclipse/ui/IMemento;)Lorg/eclipse/core/runtime/IStatus;+2
j org.eclipse.ui.internal.Workbench$17.run()V+270
j org.eclipse.core.runtime.SafeRunner.run(Lorg/eclipse/core/runtime/ISafeRunnable;)V+5
j org.eclipse.ui.internal.Workbench.restoreState()Lorg/eclipse/core/runtime/IStatus;+101
j org.eclipse.ui.internal.WorkbenchConfigurer.restoreState()Lorg/eclipse/core/runtime/IStatus;+7
j org.eclipse.ui.application.WorkbenchAdvisor.openWindows()Z+4
j org.eclipse.ui.internal.Workbench.init()Z+157
j org.eclipse.ui.internal.Workbench.runUI()I+143
j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+11
j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
j org.eclipse.ui.internal.ide.IDEApplication.run(Ljava/lang/Object;)Ljava/lang/Object;+76
j org.eclipse.core.internal.runtime.PlatformActivator$1.run(Ljava/lang/Object;)Ljava/lang/Object;+219
j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+135
j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+60
v ~StubRoutines::call_stub
V [libjvm.so+0x26775c]
V [libjvm.so+0x435b48]
V [libjvm.so+0x26758f]
V [libjvm.so+0x4819ac]
V [libjvm.so+0x4846ba]
V [libjvm.so+0x2db742]
C [libjava.so+0x13774] Java_sun_reflect_NativeMethodAccessorImpl_invoke0+0x34
j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+111
j org.eclipse.core.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+181
j org.eclipse.core.launcher.Main.basicRun([Ljava/lang/String;)V+107
j org.eclipse.core.launcher.Main.run([Ljava/lang/String;)I+4
j org.eclipse.core.launcher.Main.main([Ljava/lang/String;)V+10
v ~StubRoutines::call_stub
V [libjvm.so+0x26775c]
V [libjvm.so+0x435b48]
V [libjvm.so+0x26758f]
V [libjvm.so+0x291e42]
V [libjvm.so+0x283052]
C [java+0x1873]
C [libc.so.6+0x15826] __libc_start_main+0xe6
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j com.trolltech.qtdesigner.views.FormWindowW.setPluginPath(ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V+0
j com.trolltech.qtdesigner.views.FormWindowW.setPluginPath(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V+11
j com.trolltech.common.QtJambiConnection.setPluginPath(Ljava/lang/String;)V+413
j com.trolltech.common.QtJambiConnection.doActiveFormWindowUpdate()V+51
j com.trolltech.common.QtJambiConnection.setActiveUiEditor(Lcom/trolltech/qtdesigner/editors/UiEditor;)V+12
j com.trolltech.qtdesigner.editors.UiEditor.createPartControl(Lorg/eclipse/swt/widgets/Composite;)V+30
j org.eclipse.ui.internal.EditorReference.createPartHelper()Lorg/eclipse/ui/IEditorPart;+300
j org.eclipse.ui.internal.EditorReference.createPart()Lorg/eclipse/ui/IWorkbenchPart;+5
j org.eclipse.ui.internal.WorkbenchPartReference.getPart(Z)Lorg/eclipse/ui/IWorkbenchPart;+65
j org.eclipse.ui.internal.EditorAreaHelper.setVisibleEditor(Lorg/eclipse/ui/IEditorReference;Z)Z+12
j org.eclipse.ui.internal.EditorManager.setVisibleEditor(Lorg/eclipse/ui/IEditorReference;Z)Z+6
j org.eclipse.ui.internal.EditorManager$5.run()V+21
j org.eclipse.core.runtime.SafeRunner.run(Lorg/eclipse/core/runtime/ISafeRunnable;)V+5
j org.eclipse.core.runtime.Platform.run(Lorg/eclipse/core/runtime/ISafeRunnable;)V+1
j org.eclipse.ui.internal.EditorManager.restoreState(Lorg/eclipse/ui/IMemento;)Lorg/eclipse/core/runtime/IStatus;+153
j org.eclipse.ui.internal.WorkbenchPage.restoreState(Lorg/eclipse/ui/IMemento;Lorg/eclipse/ui/IPerspectiveDescriptor;)Lorg/eclipse/core/runtime/IStatus;+348
j org.eclipse.ui.internal.WorkbenchWindow.restoreState(Lorg/eclipse/ui/IMemento;Lorg/eclipse/ui/IPerspectiveDescriptor;)Lorg/eclipse/core/runtime/IStatus;+1413
j org.eclipse.ui.internal.Workbench.doRestoreState(Lorg/eclipse/ui/IMemento;Lorg/eclipse/core/runtime/MultiStatus;)V+161
j org.eclipse.ui.internal.Workbench.access$14(Lorg/eclipse/ui/internal/Workbench;Lorg/eclipse/ui/IMemento;Lorg/eclipse/core/runtime/MultiStatus;)V+3
j org.eclipse.ui.internal.Workbench$19.run()V+12
j org.eclipse.ui.internal.Workbench.runStartupWithProgress(ILjava/lang/Runnable;)V+59
j org.eclipse.ui.internal.Workbench.restoreState(Lorg/eclipse/ui/IMemento;)Lorg/eclipse/core/runtime/IStatus;+92
j org.eclipse.ui.internal.Workbench.access$12(Lorg/eclipse/ui/internal/Workbench;Lorg/eclipse/ui/IMemento;)Lorg/eclipse/core/runtime/IStatus;+2
j org.eclipse.ui.internal.Workbench$17.run()V+270
j org.eclipse.core.runtime.SafeRunner.run(Lorg/eclipse/core/runtime/ISafeRunnable;)V+5
j org.eclipse.ui.internal.Workbench.restoreState()Lorg/eclipse/core/runtime/IStatus;+101
j org.eclipse.ui.internal.WorkbenchConfigurer.restoreState()Lorg/eclipse/core/runtime/IStatus;+7
j org.eclipse.ui.application.WorkbenchAdvisor.openWindows()Z+4
j org.eclipse.ui.internal.Workbench.init()Z+157
j org.eclipse.ui.internal.Workbench.runUI()I+143
j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+11
j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
j org.eclipse.ui.internal.ide.IDEApplication.run(Ljava/lang/Object;)Ljava/lang/Object;+76
j org.eclipse.core.internal.runtime.PlatformActivator$1.run(Ljava/lang/Object;)Ljava/lang/Object;+219
j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+135
j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+60
v ~StubRoutines::call_stub
j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+111
j org.eclipse.core.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+181
j org.eclipse.core.launcher.Main.basicRun([Ljava/lang/String;)V+107
j org.eclipse.core.launcher.Main.run([Ljava/lang/String;)I+4
j org.eclipse.core.launcher.Main.main([Ljava/lang/String;)V+10
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x08f6a918 JavaThread "Java indexing" daemon [_thread_blocked, id=5646]
0x08c99b70 JavaThread "Startup Progress Printer" [_thread_blocked, id=5645]
0x08ac5700 JavaThread "Worker-0" [_thread_blocked, id=5644]
0x9c905080 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=5643]
0x9c904c20 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=5642]
0x9c910e98 JavaThread "State Data Manager" daemon [_thread_blocked, id=5641]
0x081449e8 JavaThread "process reaper" daemon [_thread_in_native, id=5636]
0x08111640 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=5634]
0x08110168 JavaThread "CompilerThread1" daemon [_thread_blocked, id=5633]
0x0810f0b8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=5632]
0x0810df50 JavaThread "AdapterThread" daemon [_thread_blocked, id=5631]
0x0810d0c8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5630]
0x08103120 JavaThread "Finalizer" daemon [_thread_blocked, id=5629]
0x08102b58 JavaThread "Reference Handler" daemon [_thread_blocked, id=5628]
=>0x0805cbc0 JavaThread "main" [_thread_in_native, id=5624]
Other Threads:
0x08100618 VMThread [id=5627]
0x08112b08 WatcherThread [id=5635]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap
PSYoungGen total 24192K, used 15717K [0xaf720000, 0xb1390000, 0xb1390000)
eden space 21184K, 60% used [0xaf720000,0xb038b518,0xb0bd0000)
from space 3008K, 99% used [0xb10a0000,0xb138dfe8,0xb1390000)
to space 3968K, 0% used [0xb0bd0000,0xb0bd0000,0xb0fb0000)
PSOldGen total 36416K, used 4696K [0xa1390000, 0xa3720000, 0xaf720000)
object space 36416K, 12% used [0xa1390000,0xa18262a0,0xa3720000)
PSPermGen total 18176K, used 18150K [0x9d390000, 0x9e550000, 0xa1390000)
object space 18176K, 99% used [0x9d390000,0x9e549b40,0x9e550000)
Dynamic libraries:
08048000-08057000 r-xp 00000000 08:06 311121 /opt/sun-jdk-1.5.0.11/bin/java
08057000-08059000 rwxp 0000e000 08:06 311121 /opt/sun-jdk-1.5.0.11/bin/java
08059000-09119000 rwxp 08059000 00:00 0 [heap]
94e88000-94e90000 r-xp 00000000 08:06 949306 /opt/qtjambi-linux-1.0.0-beta/plugins/designer/libJambiLanguage.so
94e90000-94e91000 rwxp 00007000 08:06 949306 /opt/qtjambi-linux-1.0.0-beta/plugins/designer/libJambiLanguage.so
94e91000-94ec1000 r-xp 00000000 08:06 949327 /opt/qtjambi-linux-1.0.0-beta/lib/libqtjambi.so.1.0.0
94ec1000-94ec2000 rwxp 0002f000 08:06 949327 /opt/qtjambi-linux-1.0.0-beta/lib/libqtjambi.so.1.0.0
94ec2000-94ec5000 ---p 94ec2000 00:00 0
94ec5000-94f43000 rwxp 94ec5000 00:00 0
94f43000-94ff3000 r-xp 00000000 08:06 949373 /opt/qtjambi-linux-1.0.0-beta/lib/libstdc++.so.5
94ff3000-94ff8000 rwxp 000af000 08:06 949373 /opt/qtjambi-linux-1.0.0-beta/lib/libstdc++.so.5
94ff8000-94ffd000 rwxp 94ff8000 00:00 0
94ffd000-951a7000 r-xp 00000000 08:06 949363 /opt/qtjambi-linux-1.0.0-beta/lib/libQtCore.so.4
951a7000-951ae000 rwxp 001aa000 08:06 949363 /opt/qtjambi-linux-1.0.0-beta/lib/libQtCore.so.4
951ae000-951af000 rwxp 951ae000 00:00 0
951af000-95988000 r-xp 00000000 08:06 949364 /opt/qtjambi-linux-1.0.0-beta/lib/libQtGui.so.4
95988000-959ac000 rwxp 007d8000 08:06 949364 /opt/qtjambi-linux-1.0.0-beta/lib/libQtGui.so.4
959ac000-959ad000 rwxp 959ac000 00:00 0
959ad000-959f9000 r-xp 00000000 08:06 949367 /opt/qtjambi-linux-1.0.0-beta/lib/libQtXml.so.4
959f9000-959fb000 rwxp 0004c000 08:06 949367 /opt/qtjambi-linux-1.0.0-beta/lib/libQtXml.so.4
959fb000-95a47000 r-xp 00000000 08:06 170115 /usr/lib/libXt.so.6.0.0
95a47000-95a4b000 rwxp 0004b000 08:06 170115 /usr/lib/libXt.so.6.0.0
95a4b000-95c0d000 r-xp 00000000 08:06 949369 /opt/qtjambi-linux-1.0.0-beta/lib/libQtDesigner.so.4
95c0d000-95c17000 rwxp 001c2000 08:06 949369 /opt/qtjambi-linux-1.0.0-beta/lib/libQtDesigner.so.4
95c17000-95df4000 r-xp 00000000 08:06 949370 /opt/qtjambi-linux-1.0.0-beta/lib/libQtDesignerComponents.so.4
95df4000-95e00000 rwxp 001dd000 08:06 949370 /opt/qtjambi-linux-1.0.0-beta/lib/libQtDesignerComponents.so.4
95e00000-95e21000 rwxp 95e00000 00:00 0
95e21000-95f00000 ---p 95e21000 00:00 0
95f02000-95f11000 r-xp 00000000 08:06 1747275 /usr/share/fonts/ttf-bitstream-vera/VeraBd.ttf
95f11000-95f19000 r-xp 00000000 08:06 1800142 /usr/lib/gcc-lib/i686-pc-linux-gnu/3.4.6/libgcc_s.so.1
95f19000-95f1a000 rwxp 00007000 08:06 1800142 /usr/lib/gcc-lib/i686-pc-linux-gnu/3.4.6/libgcc_s.so.1
95f1a000-95f1c000 r-xp 00000000 08:06 1280734 /usr/lib/libXinerama.so.1.0.0
95f1c000-95f1d000 rwxp 00001000 08:06 1280734 /usr/lib/libXinerama.so.1.0.0
95f1d000-95f32000 r-xp 00000000 08:06 1279511 /usr/lib/libICE.so.6.3.0
95f32000-95f33000 rwxp 00014000 08:06 1279511 /usr/lib/libICE.so.6.3.0
95f33000-95f35000 rwxp 95f33000 00:00 0
95f35000-95f3d000 r-xp 00000000 08:06 1281448 /usr/lib/libSM.so.6.0.0
95f3d000-95f3e000 rwxp 00007000 08:06 1281448 /usr/lib/libSM.so.6.0.0
95f41000-95f48000 r-xp 00000000 08:06 949307 /opt/qtjambi-linux-1.0.0-beta/plugins/designer/libJambiCustomWidget.so
95f48000-95f49000 rwxp 00007000 08:06 949307 /opt/qtjambi-linux-1.0.0-beta/plugins/designer/libJambiCustomWidget.so
95f49000-95f5a000 r-xp 00000000 08:06 1747286 /usr/share/fonts/ttf-bitstream-vera/Vera.ttf
95f5a000-95f5c000 r-xp 00000000 08:06 1997219 /usr/lib/gconv/UTF-16.so
95f5c000-95f5e000 rwxp 00002000 08:06 1997219 /usr/lib/gconv/UTF-16.so
95f5e000-95f7f000 r-xp 00000000 08:06 930580 /opt/eclipse321/plugins/com.trolltech.qtdesigner.linux.x86_0.0.4/lib/libqtdesigner.so
95f7f000-95f81000 rwxp 00020000 08:06 930580 /opt/eclipse321/plugins/com.trolltech.qtdesigner.linux.x86_0.0.4/lib/libqtdesigner.so
95f81000-95f8a000 r-xp 00000000 08:09 13174188 /data/home/mike/.eclipse/org.eclipse.platform_3.2.0/configuration/org.eclipse.osgi/bundles/36/1/.cp/libswt-cairo-gtk-3235.so
95f8a000-95f8b000 rwxp 00009000 08:09 13174188 /data/home/mike/.eclipse/org.eclipse.platform_3.2.0/configuration/org.eclipse.osgi/bundles/36/1/.cp/libswt-cairo-gtk-3235.so
95f8b000-95f91000 r-xp 00000000 08:09 13174187 /data/home/mike/.eclipse/org.eclipse.platform_3.2.0/configuration/org.eclipse.osgi/bundles/36/1/.cp/libswt-atk-gtk-3235.so
95f91000-95f92000 rwxp 00005000 08:09 13174187 /data/home/mike/.eclipse/org.eclipse.platform_3.2.0/configuration/org.eclipse.osgi/bundles/36/1/.cp/libswt-atk-gtk-3235.so
95f92000-95f95000 ---p 95f92000 00:00 0
95f95000-96013000 rwxp 95f95000 00:00 0
96013000-96016000 ---p 96013000 00:00 0
96016000-96094000 rwxp 96016000 00:00 0
96094000-96096000 r-xp 00000000 08:06 167825 /usr/lib/pango/1.5.0/modules/pango-basic-fc.so
96096000-96097000 rwxp 00001000 08:06 167825 /usr/lib/pango/1.5.0/modules/pango-basic-fc.so
96097000-960a8000 r-xp 00000000 08:06 1747286 /usr/share/fonts/ttf-bitstream-vera/Vera.ttf
960a8000-960ae000 r-xs 00000000 08:06 115266 /var/cache/fontconfig/87f5e051180a7a75f16eb6fe7dbd3749-x86.cache-2
960ae000-960b0000 r-xs 00000000 08:06 115264 /var/cache/fontconfig/76fa4b957c916922374347f144bde9da-x86.cache-2
960b0000-960be000 r-xs 00000000 08:06 115269 /var/cache/fontconfig/8d4af663993b81a124ee82e610bb31f9-x86.cache-2
960be000-960ca000 r-xs 00000000 08:06 115267 /var/cache/fontconfig/4b5cf4386f1cde02a336ba961b4ac82d-x86.cache-2
960ca000-960cd000 r-xs 00000000 08:06 115258 /var/cache/fontconfig/d62e99ef547d1d24cdb1bd22ec1a2976-x86.cache-2
960cd000-960ef000 r-xs 00000000 08:06 115270 /var/cache/fontconfig/17090aa38d5c6f09fb8c5c354938f1d7-x86.cache-2
960ef000-96111000 r-xs 00000000 08:06 115272 /var/cache/fontconfig/df311e82a1a24c41a75c2c930223552e-x86.cache-2
96111000-96171000 rwxs 00000000 00:07 491528 /SYSV00000000 (deleted)
96171000-961d1000 rwxs 00000000 00:07 425990 /SYSV00000000 (deleted)
961d1000-961f7000 r-xp 00000000 08:09 13174179 /data/home/mike/.eclipse/org.eclipse.platform_3.2.0/configuration/org.eclipse.osgi/bundles/36/1/.cp/libswt-gtk-3235.so
961f7000-961f9000 rwxp 00025000 08:09 13174179 /data/home/mike/.eclipse/org.eclipse.platform_3.2.0/configuration/org.eclipse.osgi/bundles/36/1/.cp/libswt-gtk-3235.so
961f9000-961fa000 rwxp 961f9000 00:00 0
961fa000-9630b000 r-xp 00000000 08:06 1280712 /usr/lib/libxml2.so.2.6.27
9630b000-96310000 rwxp 00111000 08:06 1280712 /usr/lib/libxml2.so.2.6.27
96310000-96311000 rwxp 96310000 00:00 0
96311000-96332000 r-xp 00000000 08:06 167605 /usr/lib/libpng12.so.0.16.0
96332000-96333000 rwxp 00020000 08:06 167605 /usr/lib/libpng12.so.0.16.0
96333000-96337000 r-xp 00000000 08:06 1279483 /usr/lib/libXdmcp.so.6.0.0
96337000-96338000 rwxp 00003000 08:06 1279483 /usr/lib/libXdmcp.so.6.0.0
96338000-96348000 r-xp 00000000 08:06 1926146 /lib/libz.so.1.2.3
96348000-96349000 rwxp 0000f000 08:06 1926146 /lib/libz.so.1.2.3
96349000-963b0000 r-xp 00000000 08:06 395921 /usr/lib/libfreetype.so.6.3.12
963b0000-963b3000 rwxp 00067000 08:06 395921 /usr/lib/libfreetype.so.6.3.12
963b3000-963dd000 r-xp 00000000 08:06 167710 /usr/lib/libpangoft2-1.0.so.0.1400.10
963dd000-963de000 rwxp 00029000 08:06 167710 /usr/lib/libpangoft2-1.0.so.0.1400.10
963de000-963e6000 r-xp 00000000 08:06 1281329 /usr/lib/libXcursor.so.1.0.2
963e6000-963e7000 rwxp 00007000 08:06 1281329 /usr/lib/libXcursor.so.1.0.2
963e7000-9644b000 r-xp 00000000 08:06 479352 /usr/lib/libcairo.so.2.10.3
9644b000-9644d000 rwxp 00063000 08:06 479352 /usr/lib/libcairo.so.2.10.3
9644d000-964db000 r-xp 00000000 08:06 440908 /usr/lib/libglib-2.0.so.0.1200.9
964db000-964dc000 rwxp 0008d000 08:06 440908 /usr/lib/libglib-2.0.so.0.1200.9
964dc000-96513000 r-xp 00000000 08:06 440705 /usr/lib/libgobject-2.0.so.0.1200.9
96513000-96514000 rwxp 00037000 08:06 440705 /usr/lib/libgobject-2.0.so.0.1200.9
96514000-965fe000 r-xp 00000000 08:06 1279196 /usr/lib/libX11.so.6.2.0
965fe000-96603000 rwxp 000e9000 08:06 1279196 /usr/lib/libX11.so.6.2.0
96603000-9663a000 r-xp 00000000 08:06 167926 /usr/lib/libpango-1.0.so.0.1400.10
9663a000-9663c000 rwxp 00036000 08:06 167926 /usr/lib/libpango-1.0.so.0.1400.10
9663c000-966ba000 r-xp 00000000 08:06 195923 /usr/lib/libgdk-x11-2.0.so.0.1000.9
966ba000-966bd000 rwxp 0007d000 08:06 195923 /usr/lib/libgdk-x11-2.0.so.0.1000.9
966bd000-969f9000 r-xp 00000000 08:06 195979 /usr/lib/libgtk-x11-2.0.so.0.1000.9
969f9000-969ff000 rwxp 0033b000 08:06 195979 /usr/lib/libgtk-x11-2.0.so.0.1000.9
969ff000-96af9000 rwxp 969ff000 00:00 0
96af9000-96b00000 ---p 96af9000 00:00 0
96b01000-96b03000 r-xp 00000000 08:06 1279493 /usr/lib/libXau.so.6.0.0
96b03000-96b04000 rwxp 00001000 08:06 1279493 /usr/lib/libXau.so.6.0.0
96b04000-96b26000 r-xp 00000000 08:06 1279596 /usr/lib/libfontconfig.so.1.2.0
96b26000-96b2e000 rwxp 00021000 08:06 1279596 /usr/lib/libfontconfig.so.1.2.0
96b2e000-96b78000 r-xp 00000000 08:09 13174178 /data/home/mike/.eclipse/org.eclipse.platform_3.2.0/configuration/org.eclipse.osgi/bundles/36/1/.cp/libswt-pi-gtk-3235.so
96b78000-96b7a000 rwxp 0004a000 08:09 13174178 /data/home/mike/.eclipse/org.eclipse.platform_3.2.0/configuration/org.eclipse.osgi/bundles/36/1/.cp/libswt-pi-gtk-3235.so
96b7a000-96c7e000 r-xs 00000000 08:06 897860 /opt/eclipse321/plugins/org.eclipse.team.ui_3.2.1.M200608151725.jar
96c7e000-96d00000 r-xs 00000000 08:06 898779 /opt/eclipse321/plugins/org.eclipse.team.cvs.core_3.2.1.M200608161750.jar
96d00000-96de7000 rwxp 96d00000 00:00 0
96de7000-96e00000 ---p 96de7000 00:00 0
96e02000-96e09000 r-xp 00000000 08:06 1280312 /usr/lib/libXi.so.6.0.0
96e09000-96e0a000 rwxp 00006000 08:06 1280312 /usr/lib/libXi.so.6.0.0
96e0a000-96e22000 r-xp 00000000 08:06 1280609 /usr/lib/libatk-1.0.so.0.1213.0
96e22000-96e24000 rwxp 00018000 08:06 1280609 /usr/lib/libatk-1.0.so.0.1213.0
96e24000-96e38000 r-xp 00000000 08:06 196026 /usr/lib/libgdk_pixbuf-2.0.so.0.1000.9
96e38000-96e39000 rwxp 00013000 08:06 196026 /usr/lib/libgdk_pixbuf-2.0.so.0.1000.9
96e39000-96e48000 r-xs 00000000 08:06 898790 /opt/eclipse321/plugins/org.eclipse.team.cvs.ssh2_3.2.0.I200606051140.jar
96e48000-96e66000 r-xs 00000000 08:06 898753 /opt/eclipse321/plugins/com.jcraft.jsch_0.1.28.jar
96e66000-96f69000 r-xs 00000000 08:06 898789 /opt/eclipse321/plugins/org.eclipse.ant.ui_3.2.1.r321_v20060828.jar
96f69000-96f70000 r-xs 00000000 08:06 898447 /opt/eclipse321/plugins/org.eclipse.update.scheduler_3.2.1.v20092006.jar
96f70000-970dc000 r-xs 00000000 08:06 898808 /opt/eclipse321/plugins/org.eclipse.team.cvs.ui_3.2.1.M20060831.jar
970dc000-976ba000 r-xs 00000000 08:06 898777 /opt/eclipse321/plugins/org.eclipse.jdt.doc.user_3.2.0.v20060605-1400.jar
976ba000-976cd000 r-xs 00000000 08:06 898747 /opt/eclipse321/plugins/org.eclipse.core.jobs_3.2.0.v20060603.jar
976cd000-97794000 r-xs 00000000 08:06 898800 /opt/eclipse321/plugins/org.eclipse.jface_3.2.1.M20060908-1000.jar
97794000-97800000 r-xs 00000000 08:06 898782 /opt/eclipse321/plugins/org.eclipse.search_3.2.1.r321_v20060726.jar
97800000-97900000 rwxp 97800000 00:00 0
97900000-9790d000 r-xp 00000000 08:06 245482 /usr/lib/libXext.so.6.4.0
9790d000-9790e000 rwxp 0000c000 08:06 245482 /usr/lib/libXext.so.6.4.0
9790e000-97947000 r-xs 00000000 08:06 898210 /opt/eclipse321/plugins/org.eclipse.jdt.launching_3.2.1.r321_v20060731.jar
97947000-97e87000 r-xs 00000000 08:06 898784 /opt/eclipse321/plugins/org.eclipse.jdt.doc.isv_3.2.1.r321_v20060907.jar
97e87000-97f13000 r-xs 00000000 08:06 898793 /opt/eclipse321/plugins/org.eclipse.update.core_3.2.1.v20092006.jar
97f13000-982ce000 r-xs 00000000 08:06 898783 /opt/eclipse321/plugins/org.eclipse.jdt.core_3.2.1.v_677_R32x.jar
982ce000-99b00000 r-xs 00000000 08:06 898788 /opt/eclipse321/plugins/org.eclipse.platform.doc.isv_3.2.1.r321_v2006030.jar
99b00000-99bfd000 rwxp 99b00000 00:00 0
99bfd000-99c00000 ---p 99bfd000 00:00 0
99c00000-99c07000 r-xp 00000000 08:06 1280147 /usr/lib/libXrender.so.1.3.0
99c07000-99c08000 rwxp 00007000 08:06 1280147 /usr/lib/libXrender.so.1.3.0
99c08000-99c0f000 r-xp 00000000 08:06 1925945 /lib/librt-2.5.so
99c0f000-99c11000 rwxp 00006000 08:06 1925945 /lib/librt-2.5.so
99c11000-99c13000 r-xp 00000000 08:09 13174264 /data/home/mike/.eclipse/org.eclipse.platform_3.2.0/configuration/org.eclipse.osgi/bundles/68/1/.cp/os/linux/x86/liblocalfile_1_0_0.so
99c13000-99c14000 rwxp 00001000 08:09 13174264 /data/home/mike/.eclipse/org.eclipse.platform_3.2.0/configuration/org.eclipse.osgi/bundles/68/1/.cp/os/linux/x86/liblocalfile_1_0_0.so
99c14000-99c23000 r-xp 00000000 08:06 1747275 /usr/share/fonts/ttf-bitstream-vera/VeraBd.ttf
99c23000-99c26000 rwxs 00000000 00:07 458759 /SYSV00000000 (deleted)
99c2a000-99c31000 r-xs 00000000 08:06 1997291 /usr/lib/gconv/gconv-modules.cache
99c31000-99c34000 r-xs 00000000 08:06 898795 /opt/eclipse321/plugins/org.eclipse.jdt.core.manipulation_1.0.1.r321_v20060721.jar
99c34000-99c54000 r-xs 00000000 08:06 898761 /opt/eclipse321/plugins/org.eclipse.ui.externaltools_3.1.101.r321_v20060802.jar
99c54000-99c98000 r-xs 00000000 08:06 898804 /opt/eclipse321/plugins/org.eclipse.help.base_3.2.1.R321_v20060822.jar
99c98000-99d07000 r-xs 00000000 08:06 898785 /opt/eclipse321/plugins/org.eclipse.ui.editors_3.2.1.r321_v20060721.jar
99d07000-99d3c000 r-xs 00000000 08:06 898806 /opt/eclipse321/plugins/org.eclipse.text_3.2.0.v20060605-1400.jar
99d3c000-99d52000 r-xs 00000000 08:06 898801 /opt/eclipse321/plugins/org.eclipse.core.commands_3.2.0.I20060605-1400.jar
99d52000-99d5b000 r-xs 00000000 08:06 898771 /opt/eclipse321/plugins/org.eclipse.core.filesystem_1.0.0.v20060603.jar
99d5b000-9a04a000 r-xs 00000000 08:06 898094 /opt/eclipse321/plugins/org.eclipse.ui.workbench_3.2.1.M20060906-0800.jar
9a04a000-9a800000 r-xs 00000000 08:06 898812 /opt/eclipse321/plugins/org.eclipse.jdt.ui_3.2.1.r321_v20060907.jar
9a800000-9a8fd000 rwxp 9a800000 00:00 0
9a8fd000-9a900000 ---p 9a8fd000 00:00 0
9a902000-9a904000 r-xp 00000000 08:06 1280431 /usr/lib/libXrandr.so.2.0.0
9a904000-9a905000 rwxp 00002000 08:06 1280431 /usr/lib/libXrandr.so.2.0.0
9a905000-9a909000 r-xp 00000000 08:06 1280510 /usr/lib/libXfixes.so.3.1.0
9a909000-9a90a000 rwxp 00003000 08:06 1280510 /usr/lib/libXfixes.so.3.1.0
9a90a000-9a911000 r-xp 00000000 08:06 167757 /usr/lib/libpangocairo-1.0.so.0.1400.10
9a911000-9a912000 rwxp 00007000 08:06 167757 /usr/lib/libpangocairo-1.0.so.0.1400.10
9a912000-9a916000 r-xp 00000000 08:06 1281265 /usr/lib/libXtst.so.6.1.0
9a916000-9a917000 rwxp 00003000 08:06 1281265 /usr/lib/libXtst.so.6.1.0
9a917000-9a91a000 r-xp 00000000 08:06 440901 /usr/lib/libgthread-2.0.so.0.1200.9
9a91a000-9a91b000 rwxp 00003000 08:06 440901 /usr/lib/libgthread-2.0.so.0.1200.9
9a91b000-9a92c000 r-xs 00000000 08:06 898805 /opt/eclipse321/plugins/org.eclipse.ui.views_3.2.1.M20060906-0800.jar
9a92c000-9a939000 r-xs 00000000 08:06 897776 /opt/eclipse321/plugins/org.eclipse.team.cvs.ssh_3.2.0.I200606011710.jar
9a939000-9a950000 r-xs 00000000 08:06 898786 /opt/eclipse321/plugins/org.eclipse.core.filebuffers_3.2.1.r321_v20060721.jar
9a950000-9a95f000 r-xs 00000000 08:06 898449 /opt/eclipse321/plugins/org.eclipse.pde_3.2.1.v20060810-0800.jar
9a95f000-9a98a000 r-xs 00000000 08:06 898750 /opt/eclipse321/plugins/org.eclipse.ui.browser_3.2.0.v20060602.jar
9a98a000-9a999000 r-xs 00000000 08:06 898749 /opt/eclipse321/plugins/org.eclipse.jdt.apt.ui_3.2.1.R32x_v20060822-2100.jar
9a999000-9aa56000 r-xs 00000000 08:06 898209 /opt/eclipse321/plugins/org.eclipse.jface.text_3.2.1.r321_v20060810.jar
9aa56000-9aaa3000 r-xs 00000000 08:06 897785 /opt/eclipse321/plugins/org.eclipse.jdt.apt.core_3.2.1.R32x_v20060822-2100.jar
9aaa3000-9aac5000 r-xs 00000000 08:06 898787 /opt/eclipse321/plugins/org.eclipse.ui.console_3.1.100.v20060605.jar
9aac5000-9aade000 r-xs 00000000 08:06 898778 /opt/eclipse321/plugins/org.eclipse.ui.navigator.resources_3.2.1.M20060906-0800b.jar
9aade000-9aafa000 r-xs 00000000 08:06 898810 /opt/eclipse321/plugins/org.eclipse.core.resources.compatibility_3.2.0.v20060603.jar
9aafa000-9ab98000 r-xs 00000000 08:06 897782 /opt/eclipse321/plugins/org.eclipse.core.resources_3.2.1.R32x_v20060914.jar
9ab98000-9ac00000 r-xs 00000000 08:06 898762 /opt/eclipse321/plugins/org.eclipse.ltk.ui.refactoring_3.2.1.r321_v20060726.jar
9ac00000-9acff000 rwxp 9ac00000 00:00 0
9acff000-9ad00000 ---p 9acff000 00:00 0
9ad00000-9ad02000 r-xp 00000000 08:06 441142 /usr/lib/libgmodule-2.0.so.0.1200.9
9ad02000-9ad03000 rwxp 00002000 08:06 441142 /usr/lib/libgmodule-2.0.so.0.1200.9
9ad03000-9ad16000 r-xs 00000000 08:06 897773 /opt/eclipse321/plugins/org.eclipse.core.contenttype_3.2.0.v20060603.jar
9ad16000-9ad2c000 r-xs 00000000 08:06 898751 /opt/eclipse321/plugins/org.eclipse.ant.core_3.1.100.v20060531.jar
9ad2c000-9ad3d000 r-xs 00000000 08:06 898813 /opt/eclipse321/plugins/org.eclipse.core.expressions_3.2.1.r321_v20060721.jar
9ad3d000-9ad41000 r-xs 00000000 08:06 898446 /opt/eclipse321/plugins/org.eclipse.core.filesystem.linux.x86_1.0.0.v20060603.jar
9ad41000-9ad43000 r-xs 00000000 08:06 898756 /opt/eclipse321/plugins/org.eclipse.update.core.linux_3.2.0.v20060605.jar
9ad43000-9ad58000 r-xs 00000000 08:06 898752 /opt/eclipse321/plugins/org.eclipse.core.runtime.compatibility_3.1.100.v20060603.jar
9ad58000-9ad9c000 r-xs 00000000 08:06 898760 /opt/eclipse321/plugins/org.eclipse.jface.databinding_1.0.0.I20060605-1400.jar
9ad9c000-9ada1000 r-xs 00000000 08:06 898825 /opt/eclipse321/plugins/com.trolltech.qtdesigner_0.0.4.jar
9ada1000-9ada8000 r-xs 00000000 08:06 897774 /opt/eclipse321/plugins/org.eclipse.core.variables_3.1.100.v20060605.jar
9ada8000-9aebb000 r-xs 00000000 08:06 898448 /opt/eclipse321/plugins/org.eclipse.jdt.debug.ui_3.2.1.r321_v20060918.jar
9aebb000-9aeda000 r-xs 00000000 08:06 898436 /opt/eclipse321/plugins/org.eclipse.ui_3.2.1.M20060913-0800.jar
9aeda000-9b1b7000 r-xs 00000000 08:06 897786 /opt/eclipse321/plugins/org.eclipse.pde.doc.user_3.2.1.v20060816-0800.jar
9b1b7000-9b1b8000 r-xs 00000000 08:06 898809 /opt/eclipse321/plugins/org.eclipse.core.boot_3.1.100.v20060603.jar
9b1b8000-9b200000 r-xs 00000000 08:06 898746 /opt/eclipse321/plugins/org.eclipse.ui.intro_3.2.1.R321_v20060810.jar
9b200000-9b3b5000 r-xs 00000000 08:06 898798 /opt/eclipse321/plugins/org.eclipse.swt.gtk.linux.x86_3.2.1.v3235.jar
9b3b5000-9b6d0000 r-xs 00000000 08:06 898759 /opt/eclipse321/plugins/com.ibm.icu_3.4.5.jar
9b6d0000-9b6ed000 r-xs 00000000 08:06 898797 /opt/eclipse321/plugins/org.eclipse.help_3.2.1.R321_v20060920.jar
9b6ed000-9b756000 r-xs 00000000 08:06 897784 /opt/eclipse321/plugins/org.eclipse.ui.workbench.texteditor_3.2.0.v20060605-1400.jar
9b756000-9ba90000 r-xs 00000000 08:06 898811 /opt/eclipse321/plugins/org.eclipse.pde.ui_3.2.1.v20060816-0800.jar
9ba90000-9bae7000 r-xs 00000000 08:06 898774 /opt/eclipse321/plugins/org.eclipse.team.core_3.2.1.M20060711.jar
9bae7000-9baea000 r-xs 00000000 08:06 898792 /opt/eclipse321/plugins/org.eclipse.pde.junit.runtime_3.2.0.v20060605.jar
9baea000-9baf4000 r-xs 00000000 08:06 898757 /opt/eclipse321/plugins/org.eclipse.jdt_3.2.1.r321_v20060823.jar
9baf4000-9baf8000 r-xs 00000000 08:06 898755 /opt/eclipse321/plugins/org.eclipse.osgi.util_3.1.100.v20060601.jar
9baf8000-9bbb5000 r-xs 00000000 08:06 898814 /opt/eclipse321/plugins/org.eclipse.pde.core_3.2.1.v20060915-0800.jar
9bbb5000-9bd49000 r-xs 00000000 08:06 898077 /opt/eclipse321/plugins/org.eclipse.ui.ide_3.2.1.M20060915-1030.jar
9bd49000-9c282000 r-xs 00000000 08:06 897781 /opt/eclipse321/plugins/org.eclipse.platform.doc.user_3.2.1.R32x_v200608101155.jar
9c282000-9c298000 r-xs 00000000 08:06 898807 /opt/eclipse321/plugins/org.eclipse.ui.views.properties.tabbed_3.2.1.M20060830-0800.jar
9c298000-9c2d3000 r-xs 00000000 08:06 898754 /opt/eclipse321/plugins/org.eclipse.debug.core_3.2.1.v20060823.jar
9c2d3000-9c319000 r-xs 00000000 08:06 898773 /opt/eclipse321/plugins/org.eclipse.ui.navigator_3.2.1.M20060913-0800.jar
9c319000-9c330000 r-xs 00000000 08:06 898781 /opt/eclipse321/plugins/org.eclipse.ui.presentations.r21_3.2.0.I20060605-1400.jar
9c330000-9c38f000 r-xs 00000000 08:06 898796 /opt/eclipse321/plugins/org.eclipse.help.ui_3.2.0.v20060602.jar
9c38f000-9c3b1000 r-xs 00000000 08:06 898794 /opt/eclipse321/plugins/org.eclipse.pde.runtime_3.2.0.v20060605.jar
9c3b1000-9c3be000 r-xs 00000000 08:06 897778 /opt/eclipse321/plugins/org.eclipse.osgi.services_3.1.100.v20060601.jar
9c3be000-9c3f8000 r-xs 00000000 08:06 898780 /opt/eclipse321/plugins/org.eclipse.ui.forms_3.2.0.v20060602.jar
9c3f8000-9c5be000 r-xs 00000000 08:06 898770 /opt/eclipse321/plugins/org.eclipse.debug.ui_3.2.1.v20060823.jar
9c5be000-9c630000 r-xs 00000000 08:06 897779 /opt/eclipse321/plugins/org.eclipse.compare_3.2.1.M20060711.jar
9c630000-9c66b000 r-xs 00000000 08:06 898758 /opt/eclipse321/plugins/org.eclipse.ltk.core.refactoring_3.2.1.r321_v20060823.jar
9c66b000-9c6e1000 r-xs 00000000 08:06 898791 /opt/eclipse321/plugins/org.eclipse.update.ui_3.2.1.v20092006.jar
9c6e1000-9c728000 r-xs 00000000 08:06 897783 /opt/eclipse321/plugins/org.eclipse.ui.cheatsheets_3.2.1.R321_v20060720.jar
9c728000-9c73f000 r-xs 00000000 08:06 898772 /opt/eclipse321/plugins/org.eclipse.equinox.preferences_3.2.1.R32x_v20060717.jar
9c73f000-9c759000 r-xs 00000000 08:06 898826 /opt/eclipse321/plugins/com.trolltech.qtjambi_0.0.4.jar
9c759000-9c77d000 r-xs 00000000 08:06 897777 /opt/eclipse321/plugins/org.eclipse.equinox.registry_3.2.1.R32x_v20060814.jar
9c77d000-9c780000 ---p 9c77d000 00:00 0
9c780000-9c7fe000 rwxp 9c780000 00:00 0
9c7fe000-9c801000 ---p 9c7fe000 00:00 0
9c801000-9c87f000 rwxp 9c801000 00:00 0
9c87f000-9c882000 ---p 9c87f000 00:00 0
9c882000-9c9fc000 rwxp 9c882000 00:00 0
9c9fc000-9ca00000 ---p 9c9fc000 00:00 0
9ca00000-9ca01000 r-xs 00000000 08:06 930413 /opt/eclipse321/plugins/org.eclipse.ui.workbench.compatibility_3.2.0.I20060605-1400/compatibility.jar
9ca01000-9ca06000 r-xs 00000000 08:06 897775 /opt/eclipse321/plugins/org.eclipse.core.runtime.compatibility.auth_3.2.0.v20060601.jar
9ca06000-9ca0a000 r-xs 00000000 08:06 898799 /opt/eclipse321/plugins/org.eclipse.help.appserver_3.1.100.v20060602.jar
9ca0a000-9ca1d000 r-xs 00000000 08:06 898803 /opt/eclipse321/plugins/org.eclipse.core.runtime_3.2.0.v20060603.jar
9ca1d000-9ca33000 r-xs 00000000 08:06 897772 /opt/eclipse321/plugins/org.eclipse.update.configurator_3.2.1.v20092006.jar
9ca33000-9ca47000 r-xs 00000000 08:06 898802 /opt/eclipse321/plugins/org.eclipse.equinox.common_3.2.0.v20060603.jar
9ca47000-9ca4e000 r-xp 00000000 08:06 327735 /opt/sun-jdk-1.5.0.11/jre/lib/i386/libnio.so
9ca4e000-9ca4f000 rwxp 00006000 08:06 327735 /opt/sun-jdk-1.5.0.11/jre/lib/i386/libnio.so
9ca4f000-9ca60000 r-xp 00000000 08:06 327725 /opt/sun-jdk-1.5.0.11/jre/lib/i386/libnet.so
9ca60000-9ca61000 rwxp 00011000 08:06 327725 /opt/sun-jdk-1.5.0.11/jre/lib/i386/libnet.so
9ca61000-9cb31000 r-xs 00000000 08:06 898775 /opt/eclipse321/plugins/org.eclipse.osgi_3.2.1.R32x_v20060919.jar
9cb31000-9cb34000 ---p 9cb31000 00:00 0
9cb34000-9cbb2000 rwxp 9cb34000 00:00 0
9cbb2000-9cbbb000 r-xs 00000000 08:06 898823 /opt/eclipse321/startup.jar
9cbbb000-9cbe6000 r-xs 00000000 08:06 326480 /opt/sun-jdk-1.5.0.11/jre/lib/ext/sunpkcs11.jar
9cbe6000-9ccab000 r-xs 00000000 08:06 326465 /opt/sun-jdk-1.5.0.11/jre/lib/ext/localedata.jar
9ccab000-9ccd2000 r-xs 00000000 08:06 326464 /opt/sun-jdk-1.5.0.11/jre/lib/ext/sunjce_provider.jar
9ccd2000-9ccd3000 ---p 9ccd2000 00:00 0
9ccd3000-9cd53000 rwxp 9ccd3000 00:00 0
9cd53000-9cd56000 ---p 9cd53000 00:00 0
9cd56000-9cdd4000 rwxp 9cd56000 00:00 0
9cdd4000-9cdd7000 ---p 9cdd4000 00:00 0
9cdd7000-9ce55000 rwxp 9cdd7000 00:00 0
9ce55000-9ce58000 ---p 9ce55000 00:00 0
9ce58000-9ced6000 rwxp 9ce58000 00:00 0
9ced6000-9ced9000 ---p 9ced6000 00:00 0
9ced9000-9cf57000 rwxp 9ced9000 00:00 0
9cf57000-9cf5a000 ---p 9cf57000 00:00 0
9cf5a000-9cfd8000 rwxp 9cf5a000 00:00 0
9cfd8000-9cfdb000 ---p 9cfd8000 00:00 0
9cfdb000-9d059000 rwxp 9cfdb000 00:00 0
9d059000-9d05c000 ---p 9d059000 00:00 0
9d05c000-9d0da000 rwxp 9d05c000 00:00 0
9d0da000-9d0db000 ---p 9d0da000 00:00 0
9d0db000-9d15b000 rwxp 9d0db000 00:00 0
9d15b000-9d15c000 ---p 9d15b000 00:00 0
9d15c000-9d1dc000 rwxp 9d15c000 00:00 0
9d1dc000-9d1dd000 ---p 9d1dc000 00:00 0
9d1dd000-9d266000 rwxp 9d1dd000 00:00 0
9d266000-9d27d000 rwxp 9d266000 00:00 0
9d27d000-9d28f000 rwxp 9d27d000 00:00 0
9d28f000-9d2ef000 rwxp 9d28f000 00:00 0
9d2ef000-9d2f8000 rwxp 9d2ef000 00:00 0
9d2f8000-9d30f000 rwxp 9d2f8000 00:00 0
9d30f000-9d321000 rwxp 9d30f000 00:00 0
9d321000-9d380000 rwxp 9d321000 00:00 0
9d380000-9d38f000 rwxp 9d380000 00:00 0
9d38f000-9e550000 rwxp 9d38f000 00:00 0
9e550000-a1390000 rwxp 9e550000 00:00 0
a1390000-a3720000 rwxp a1390000 00:00 0
a3720000-af720000 rwxp a3720000 00:00 0
af720000-b1390000 rwxp af720000 00:00 0
b1390000-b1393000 r-xs 00000000 08:06 898776 /opt/eclipse321/plugins/org.eclipse.jdt.junit4.runtime_1.0.1.r321_v20060905.jar
b1393000-b1396000 r-xs 00000000 08:06 897780 /opt/eclipse321/plugins/org.eclipse.rcp_3.2.0.v20060605.jar
b1396000-b139f000 rwxp b1396000 00:00 0
b139f000-b1456000 rwxp b139f000 00:00 0
b1456000-b1696000 rwxp b1456000 00:00 0
b1696000-b4456000 rwxp b1696000 00:00 0
b4456000-b4cc5000 r-xs 00000000 08:06 315255 /opt/sun-jdk-1.5.0.11/jre/lib/charsets.jar
b4cc5000-b4cda000 r-xs 00000000 08:06 313921 /opt/sun-jdk-1.5.0.11/jre/lib/jce.jar
b4cda000-b4d5f000 r-xs 00000000 08:06 314589 /opt/sun-jdk-1.5.0.11/jre/lib/jsse.jar
b4d5f000-b4dc8000 rwxp b4d5f000 00:00 0
b4dc8000-b73d7000 r-xs 00000000 08:06 313974 /opt/sun-jdk-1.5.0.11/jre/lib/rt.jar
b73d7000-b73e6000 r-xp 00000000 08:06 327749 /opt/sun-jdk-1.5.0.11/jre/lib/i386/libzip.so
b73e6000-b73e8000 rwxp 0000e000 08:06 327749 /opt/sun-jdk-1.5.0.11/jre/lib/i386/libzip.so
b73e8000-b7409000 r-xp 00000000 08:06 327740 /opt/sun-jdk-1.5.0.11/jre/lib/i386/libjava.so
b7409000-b740b000 rwxp 00020000 08:06 327740 /opt/sun-jdk-1.5.0.11/jre/lib/i386/libjava.so
b740b000-b7413000 r-xp 00000000 08:06 1925767 /lib/libnss_files-2.5.so
b7413000-b7415000 rwxp 00007000 08:06 1925767 /lib/libnss_files-2.5.so
b7415000-b7426000 r-xp 00000000 08:06 1926144 /lib/libnsl-2.5.so
b7426000-b7428000 rwxp 00010000 08:06 1926144 /lib/libnsl-2.5.so
b7428000-b742a000 rwxp b7428000 00:00 0
b742a000-b742d000 r-xs 00000000 08:06 898748 /opt/eclipse321/plugins/org.eclipse.swt_3.2.1.v3235e.jar
b742d000-b7436000 r-xs 00000000 08:06 898823 /opt/eclipse321/startup.jar
b7436000-b7441000 r-xp 00000000 08:06 327732 /opt/sun-jdk-1.5.0.11/jre/lib/i386/libverify.so
b7441000-b7442000 rwxp 0000b000 08:06 327732 /opt/sun-jdk-1.5.0.11/jre/lib/i386/libverify.so
b7442000-b744a000 rwxs 00000000 08:06 1436763 /tmp/hsperfdata_mike/5624
b744a000-b746c000 r-xp 00000000 08:06 1925875 /lib/libm-2.5.so
b746c000-b746e000 rwxp 00021000 08:06 1925875 /lib/libm-2.5.so
b746e000-b79d1000 r-xp 00000000 08:06 327762 /opt/sun-jdk-1.5.0.11/jre/lib/i386/server/libjvm.so
b79d1000-b7a34000 rwxp 00563000 08:06 327762 /opt/sun-jdk-1.5.0.11/jre/lib/i386/server/libjvm.so
b7a34000-b7e4d000 rwxp b7a34000 00:00 0
b7e4d000-b7f6b000 r-xp 00000000 08:06 1925762 /lib/libc-2.5.so
b7f6b000-b7f6c000 r-xp 0011e000 08:06 1925762 /lib/libc-2.5.so
b7f6c000-b7f6e000 rwxp 0011f000 08:06 1925762 /lib/libc-2.5.so
b7f6e000-b7f71000 rwxp b7f6e000 00:00 0
b7f71000-b7f73000 r-xp 00000000 08:06 1925838 /lib/libdl-2.5.so
b7f73000-b7f75000 rwxp 00001000 08:06 1925838 /lib/libdl-2.5.so
b7f75000-b7f87000 r-xp 00000000 08:06 1926128 /lib/libpthread-2.5.so
b7f87000-b7f88000 r-xp 00012000 08:06 1926128 /lib/libpthread-2.5.so
b7f88000-b7f89000 rwxp 00013000 08:06 1926128 /lib/libpthread-2.5.so
b7f89000-b7f8b000 rwxp b7f89000 00:00 0
b7f8b000-b7f8d000 r-xs 00000000 08:06 898769 /opt/eclipse321/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.1.R32x_v20060907/runtime_registry_compatibility.jar
b7f8d000-b7f8f000 r-xs 00000000 08:06 326486 /opt/sun-jdk-1.5.0.11/jre/lib/ext/dnsns.jar
b7f8f000-b7f97000 r-xp 00000000 08:06 1925938 /lib/libnss_nis-2.5.so
b7f97000-b7f99000 rwxp 00007000 08:06 1925938 /lib/libnss_nis-2.5.so
b7f99000-b7fa0000 r-xp 00000000 08:06 1926124 /lib/libnss_compat-2.5.so
b7fa0000-b7fa2000 rwxp 00006000 08:06 1926124 /lib/libnss_compat-2.5.so
b7fa2000-b7fa8000 r-xp 00000000 08:06 327737 /opt/sun-jdk-1.5.0.11/jre/lib/i386/native_threads/libhpi.so
b7fa8000-b7fa9000 rwxp 00006000 08:06 327737 /opt/sun-jdk-1.5.0.11/jre/lib/i386/native_threads/libhpi.so
b7fa9000-b7faa000 rwxp b7fa9000 00:00 0
b7faa000-b7fab000 r-xp b7faa000 00:00 0
b7fab000-b7fac000 rwxp b7fab000 00:00 0
b7fac000-b7fad000 r-xp b7fac000 00:00 0 [vdso]
b7fad000-b7fc6000 r-xp 00000000 08:06 1925844 /lib/ld-2.5.so
b7fc6000-b7fc7000 r-xp 00019000 08:06 1925844 /lib/ld-2.5.so
b7fc7000-b7fc8000 rwxp 0001a000 08:06 1925844 /lib/ld-2.5.so
bfc35000-bfc38000 ---p bfc35000 00:00 0
bfc38000-bfe35000 rwxp bfc38000 00:00 0 [stack]
VM Arguments:
jvm_args: -Xms40m -Xmx256m
java_command: /opt/eclipse/startup.jar -os linux -ws gtk -arch x86 -launcher /opt/eclipse/eclipse -name Eclipse -showsplash 600 -exitdata 58002 -vm /usr/lib/jvm/sun-jdk-1.5/bin/java -vmargs -Xms40m -Xmx256m -jar /opt/eclipse/startup.jar
Launcher Type: SUN_STANDARD
Environment Variables:
JAVA_HOME=/etc/java-config-2/current-system-vm
CLASSPATH=.
PATH=/usr/kde/3.5/bin:/usr/local/bin:/usr/bin:/bin:/opt/bin:/usr/i686-pc-linux-gnu/gcc-bin/3.4.6:/opt/sun-jdk-1.4.2.12/bin:/opt/sun-jdk-1.4.2.12/jre/bin:/opt/sun-jdk-1.4.2.12/jre/javaws:/usr/kde/3.5/bin:/usr/qt/3/bin:/usr/games/bin
LD_LIBRARY_PATH=/opt/sun-jdk-1.5.0.11/jre/lib/i386/server:/opt/sun-jdk-1.5.0.11/jre/lib/i386:/opt/sun-jdk-1.5.0.11/jre/../lib/i386::/opt/qtjambi/lib:/usr/lib/mozilla-thunderbird
SHELL=/bin/bash
DISPLAY=:0.0
Signal Handlers:
SIGSEGV: [libjvm.so+0x510d50], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGBUS: [libjvm.so+0x510d50], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGFPE: [libjvm.so+0x434b80], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGPIPE: [libjvm.so+0x434b80], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGILL: [libjvm.so+0x434b80], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
SIGUSR2: [libjvm.so+0x436fd0], sa_mask[0]=0x00000000, sa_flags=0x10000004
SIGHUP: [libjvm.so+0x436a00], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGINT: [libjvm.so+0x436a00], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGQUIT: [libjvm.so+0x436a00], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGTERM: [libjvm.so+0x436a00], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
--------------- S Y S T E M ---------------
OS:Gentoo Base System version 1.12.9
uname:Linux 2.6.19-gentoo-r4 #1 SMP PREEMPT Tue Jan 16 21:37:06 CET 2007 i686
libc:glibc 2.5 NPTL 2.5
rlimit: STACK 8192k, CORE 0k, NPROC 16375, NOFILE 1024, AS infinity
load average:0.09 0.13 0.09
CPU:total 2 (cores per cpu 2, threads per core 1) family 6 model 15 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2
Memory: 4k page, physical 2074212k(1702020k free), swap 2000052k(2000052k free)
vm_info: Java HotSpot(TM) Server VM (1.5.0_11-b03) for linux-x86, built on Dec 15 2006 01:12:32 by java_re with gcc 3.2.1-7a (J2SE release)
Message 12 in thread
Hi, Michael.
Michael Christen wrote:
> I'm sorry to bother you that much with my problems...
That's not a problem at all :-) We're thankful for the feedback.
>
> Here some Informations from my tries at home (mostly I have the same
> problems at work):
>
> 1) If I start designer.sh I get the following error:
> ***************************************************
> titania2 qtjambi-linux-1.0.0-beta # ./designer.sh
> Jambi: failed to load: '/jre/lib/i386//client/libjvm.so'
> ./designer.sh: line 17: 5729 Segmentation fault
> PATH=$me/bin:$PATH LD_LIBRARY_PATH=$me/lib:$LD_LIBRARY_PATH
> QT_PLUGIN_PATH=$me/plugins CLASSPATH=$me/qtjambi.jar:$me bin/designer
> ***************************************************
>
> 2) After setting JAVADIR to my java home directory it works. It also
> uses the Java Syntax then... but there are some errors on command
> line, but it seems to work (just for your information):
Yes, the segfault when JAVADIR is missing, and the warnings on the
console, are all known issues. The warnings should not be anything to
worry about, although we'll of course make sure to suppress them. The
JAVADIR is required for Qt Jambi to find the jvm.so library, but I have
registered that JAVA_HOME and JDK_HOME are more familiar variables for
this purpose.
>
> 4) If I start eclipse with JAVADIR, LD_LIBRARY_PATH and qtjambi
> location set correctly eclipse does not start up and crashes as soon
> it tries to load the qtjambi plugins, but only if there is already a
> qtjambi GUI project in the workbench. With an empty workbench it
> starts up. The error on command line:
> ***************************************************
> mike@titania2 qtjambi-linux-1.0.0-beta $
> JAVADIR=/usr/lib/jvm/sun-jdk-1.5
> LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/opt/qtjambi/lib
> '/opt/eclipse/eclipse' -vm /usr/lib/jvm/sun-jdk-1.5/bin/java
> Error occurred during initialization of VM
> java.lang.ExceptionInInitializerError
> ***************************************************
Hmm, I did some digging, and I'm pretty sure the reason for this is that
Qt Jambi is trying to attach to the client VM, while you are running
Eclipse against the server VM. I'm not sure why you are running against
the server VM, as you aren't passing any special arguments to the
launcher, and the client VM is usually the default.
I think you should be able to force running Eclipse against the client
VM by passing "-client" to the Eclipse launcher. I'm not sure about the
command line syntax here. If this doesn't work, then passing the
following argument to Eclipse might:
-vm /usr/lib/jvm/sun-jdk-1.5/lib/jre/lib/libjvm.so
Could you try this and see if it resolves your problem?
>
>
> What am I doing wrong?
These are all bugs in the Qt Jambi Designer. You're definitely not doing
anything wrong.
>
>
> Other Suggestions:
> 1) Could you create the qtjambi tars (eclipse-plugins and qtjambi)
> that all files and folders belong to root:root
> 2) the scripts (designer.sh and qtjambi.sh) should be executable by
> everyone not just by its owner: chmod a+x *.sh
> 3) You should document somewhere that JAVADIR must be set or set it in
> designer.sh accordingly
Thanks, I've registered these suggestions :-)
>
> Other Questions:
> 1) I feel that I have rather big problems with qtjambi resp. the
> designer in javamode. Am I the first one trying it on linux?
We have had reports of problems on Linux before, but nothing like this.
It was also tested on several different Linux platforms here before
release, but clearly we did not find all issues. Making this process
less error prone is one of our main tasks for the next beta.
-- Eskil
Message 13 in thread
Hi Eskil
It finally works, at least at work. I'll try it later at home too.
> Hmm, I did some digging, and I'm pretty sure the reason for this is that
> Qt Jambi is trying to attach to the client VM, while you are running
> Eclipse against the server VM. I'm not sure why you are running against
> the server VM, as you aren't passing any special arguments to the
> launcher, and the client VM is usually the default.
>
> I think you should be able to force running Eclipse against the client
> VM by passing "-client" to the Eclipse launcher. I'm not sure about the
> command line syntax here. If this doesn't work, then passing the
> following argument to Eclipse might:
>
> -vm /usr/lib/jvm/sun-jdk-1.5/lib/jre/lib/libjvm.so
>
> Could you try this and see if it resolves your problem?
Do you remember, I told you that my QtJambi plugins were lost. I could
solve this be deleting my .eclipse folder in my home directory. And now
all other problems are gone too. I stil have to specify the JAVADIR, but
it works.
I'll give you feeback later if it also works at home now.
Thank you very much for your help.
Mike
PS: If I have suggestions is it ok to post them here or are there other
channels (bugzilla, ...) to use?
Message 14 in thread
Hi, Michael.
mike@xxxxxxxxxxxx wrote:
>
>PS: If I have suggestions is it ok to post them here or are there other
>channels (bugzilla, ...) to use?
>
>
>
We prefer to use the mailing list for any feed back while Qt Jambi is in
its beta stages. We are monitoring it closely, so anything reported here
should be noted by us, and investigated.
Good to hear that your problem was resolved :-)
-- Eskil
Message 15 in thread
Hi Eskil
You were right. The JDK on my private computer was indeed in server mode.
As you can see in the documentation by sun:
http://java.sun.com/j2se/1.5.0/docs/guide/vm/server-class.html
JDK starts up in server mode on linux with at least 2 CPUs and 2 GB RAM.
My computer is a core 2 duo and has 2GB RAM --> servermode.
(by the way: windows is always clientmode ;-))
After Specifying '-vmargs -client' as last parameters when starting
eclipse it
finally works.
Perhaps you should write this in the README...
Regards, Mike
mike@xxxxxxxxxxxx wrote:
> Hi Eskil
>
> It finally works, at least at work. I'll try it later at home too.
>
>
>> Hmm, I did some digging, and I'm pretty sure the reason for this is that
>> Qt Jambi is trying to attach to the client VM, while you are running
>> Eclipse against the server VM. I'm not sure why you are running against
>> the server VM, as you aren't passing any special arguments to the
>> launcher, and the client VM is usually the default.
>>
>> I think you should be able to force running Eclipse against the client
>> VM by passing "-client" to the Eclipse launcher. I'm not sure about the
>> command line syntax here. If this doesn't work, then passing the
>> following argument to Eclipse might:
>>
>> -vm /usr/lib/jvm/sun-jdk-1.5/lib/jre/lib/libjvm.so
>>
>> Could you try this and see if it resolves your problem?
>>
>
> Do you remember, I told you that my QtJambi plugins were lost. I could
> solve this be deleting my .eclipse folder in my home directory. And now
> all other problems are gone too. I stil have to specify the JAVADIR, but
> it works.
>
> I'll give you feeback later if it also works at home now.
>
> Thank you very much for your help.
> Mike
>
> PS: If I have suggestions is it ok to post them here or are there other
> channels (bugzilla, ...) to use?
>
>
Pages: Prev | 1 | 2 | Next