Re: [Qgis-user] QGIS Segmentation fault

2015-11-29 Thread Blumentrath, Stefan
Hi again,

looks like this was an issue of the Ubuntu kernel in 14.04 LTS.

I just updated the kernel, rebuild and everything works fine again...

Sorry for he noise.

Cheers,
Stefan

Von: Qgis-user  im Auftrag von Blumentrath, 
Stefan 
Gesendet: Donnerstag, 19. November 2015 10:24
An: Matthias Kuhn; qgis-user@lists.osgeo.org
Betreff: Re: [Qgis-user] QGIS Segmentation fault

Hi again,

I actually deleted the build directory before I built again with Debug.

Now I freshly cloned the code, created build directory

git clone -b release-2_12 --single-branch https://github.com/qgis/QGIS.git 
QGIS_2_12
cd QGIS_2_12
mkdir qgis-2.12
cd qgis-2.12/
ccmake .. #There in the CMAKE_BUILD_TYPE line I entered "Debug"
make
gdb ./output/bin/qgis

Result is the same as before: "No stack"
Any ideas?

Cheers
Stefan

-Original Message-
From: Matthias Kuhn [mailto:matth...@opengis.ch]
Sent: 19. november 2015 09:22
To: Blumentrath, Stefan ; qgis-user@lists.osgeo.org
Subject: Re: [Qgis-user] QGIS Segmentation fault

In cmake gui is the right choice, the env variable is ignored.
Maybe you have to "make clean" before running "make" again? It seems that there 
are no debug symbols available yet.
And once they are available, it seems that there's still an issue with X of 
which I am not sure if it brings the application to its knees even before it 
arrives at the point where the crash we are interested in is.

Cheers
Matthias

On 11/19/2015 09:05 AM, Blumentrath, Stefan wrote:
> Yes I did. Now I also tried
>
> export CMAKE_BUILD_TYPE=Debug
>
> Befor running (earlier I specified Debug in the cmake gui):
> ccmake ..
> make
> gdb ./output/bin/qgis
>
> Cheers
> Stefan
>
> -Original Message-
> From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf
> Of Matthias Kuhn
> Sent: 19. november 2015 08:05
> To: qgis-user@lists.osgeo.org
> Subject: Re: [Qgis-user] QGIS Segmentation fault
>
> Did you make after cmake with buld type Debug and before running? Sorry, I 
> forgot to write that...
>
> On 11/19/2015 07:05 AM, Blumentrath, Stefan wrote:
>> He, he, thanks for the hint...
>>
>> Running QGIS through gdb ("gdb ./output/bin/qgis") and then calling "bt" 
>> gave "No stack".
>>
>> However, when I ran  just "./output/bin/qgis" I got:
>>
>> src/app/main.cpp: 428: (main) [0ms] Starting qgis main No protocol
>> specified
>> Warning: qgis: cannot connect to X server :4 Stacktrace (piped
>> through
>> c++filt):
>> ./output/bin/qgis[0x40573d]
>> ./output/bin/qgis[0x405923]
>> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(qt_message_output(QtMsgType,
>> char const*)+0x21)[0x7f5a2f8eabb1]
>> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x70ff9)[0x7f5a2f8eaff9]
>> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(qWarning(char const*,
>> ...)+0x94)[0x7f5a2f8eb244]
>> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(+0x23db42)[0x7f5a2ee04b42]
>> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(QApplicationPrivate::construc
>> t (_XDisplay*, unsigned long, unsigned long)+0xc8)[0x7f5a2ed94a78]
>> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(QApplication::QApplication(in
>> t &, char**, bool, int)+0x69)[0x7f5a2ed94e19]
>> /data/src/QGIS/qgis-2.12/output/lib/libqgis_core.so.2.12.0(QgsApplica
>> t ion::QgsApplication(int&, char**, bool, QString
>> const&)+0x3c)[0x7f5a3094ab70] ./output/bin/qgis[0x4072ea]
>> /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5)[0x7f5a2e309ec
>> 5
>> ]
>> ./output/bin/qgis[0x405179]
>> src/core/qgsmessagelog.cpp: 45: (logMessage) [60ms]
>> 2015-11-19T06:56:36 Qt[1] qgis: cannot connect to X server :4
>>
>> I am running QGIS through VNC (which X Server :4 refers to). Yet, maybe the 
>> issue is due to missing restart after kernel update?
>>
>> Cheers,
>> Sefan
>>
>> -Original Message-
>> From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf
>> Of Jürgen E. Fischer
>> Sent: 19. november 2015 00:52
>> To: qgis-user@lists.osgeo.org
>> Subject: Re: [Qgis-user] QGIS Segmentation fault
>>
>> On Wed, 18. Nov 2015 at 23:26:25 +, Blumentrath, Stefan wrote:
>>> Thanks for the instruction. Here is my backtrace:
>>>
>>> pdb ./output/bin/qgis
>> gdb not pdb.
>>
>>> From: Matthias Kuhn [mailto:matth...@opengis.ch]
>>>
>>> cd build
>>> gdb ./output/bin/qgis
>>> run
>>> ... wait for the crash
>>> bt
>>> ... copy paste
>> Jürgen
>>
> --
> Matthias Kuhn
> OPENGIS.ch - https://www.opengis.ch
> S

Re: [Qgis-user] QGIS Segmentation fault

2015-11-19 Thread Blumentrath, Stefan
Hi again,

I actually deleted the build directory before I built again with Debug.

Now I freshly cloned the code, created build directory

git clone -b release-2_12 --single-branch https://github.com/qgis/QGIS.git 
QGIS_2_12
cd QGIS_2_12
mkdir qgis-2.12
cd qgis-2.12/
ccmake .. #There in the CMAKE_BUILD_TYPE line I entered "Debug"
make
gdb ./output/bin/qgis

Result is the same as before: "No stack"
Any ideas?

Cheers
Stefan

-Original Message-
From: Matthias Kuhn [mailto:matth...@opengis.ch] 
Sent: 19. november 2015 09:22
To: Blumentrath, Stefan ; qgis-user@lists.osgeo.org
Subject: Re: [Qgis-user] QGIS Segmentation fault

In cmake gui is the right choice, the env variable is ignored.
Maybe you have to "make clean" before running "make" again? It seems that there 
are no debug symbols available yet.
And once they are available, it seems that there's still an issue with X of 
which I am not sure if it brings the application to its knees even before it 
arrives at the point where the crash we are interested in is.

Cheers
Matthias

On 11/19/2015 09:05 AM, Blumentrath, Stefan wrote:
> Yes I did. Now I also tried
>
> export CMAKE_BUILD_TYPE=Debug
>
> Befor running (earlier I specified Debug in the cmake gui):
> ccmake ..
> make
> gdb ./output/bin/qgis
>
> Cheers
> Stefan
>
> -Original Message-
> From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf 
> Of Matthias Kuhn
> Sent: 19. november 2015 08:05
> To: qgis-user@lists.osgeo.org
> Subject: Re: [Qgis-user] QGIS Segmentation fault
>
> Did you make after cmake with buld type Debug and before running? Sorry, I 
> forgot to write that...
>
> On 11/19/2015 07:05 AM, Blumentrath, Stefan wrote:
>> He, he, thanks for the hint...
>>
>> Running QGIS through gdb ("gdb ./output/bin/qgis") and then calling "bt" 
>> gave "No stack".
>>
>> However, when I ran  just "./output/bin/qgis" I got:
>>
>> src/app/main.cpp: 428: (main) [0ms] Starting qgis main No protocol 
>> specified
>> Warning: qgis: cannot connect to X server :4 Stacktrace (piped 
>> through
>> c++filt):
>> ./output/bin/qgis[0x40573d]
>> ./output/bin/qgis[0x405923]
>> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(qt_message_output(QtMsgType,
>> char const*)+0x21)[0x7f5a2f8eabb1]
>> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x70ff9)[0x7f5a2f8eaff9]
>> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(qWarning(char const*, 
>> ...)+0x94)[0x7f5a2f8eb244] 
>> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(+0x23db42)[0x7f5a2ee04b42]
>> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(QApplicationPrivate::construc
>> t (_XDisplay*, unsigned long, unsigned long)+0xc8)[0x7f5a2ed94a78] 
>> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(QApplication::QApplication(in
>> t &, char**, bool, int)+0x69)[0x7f5a2ed94e19] 
>> /data/src/QGIS/qgis-2.12/output/lib/libqgis_core.so.2.12.0(QgsApplica
>> t ion::QgsApplication(int&, char**, bool, QString 
>> const&)+0x3c)[0x7f5a3094ab70] ./output/bin/qgis[0x4072ea]
>> /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5)[0x7f5a2e309ec
>> 5
>> ]
>> ./output/bin/qgis[0x405179]
>> src/core/qgsmessagelog.cpp: 45: (logMessage) [60ms]
>> 2015-11-19T06:56:36 Qt[1] qgis: cannot connect to X server :4
>>
>> I am running QGIS through VNC (which X Server :4 refers to). Yet, maybe the 
>> issue is due to missing restart after kernel update?
>>
>> Cheers,
>> Sefan
>>
>> -Original Message-
>> From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf 
>> Of Jürgen E. Fischer
>> Sent: 19. november 2015 00:52
>> To: qgis-user@lists.osgeo.org
>> Subject: Re: [Qgis-user] QGIS Segmentation fault
>>
>> On Wed, 18. Nov 2015 at 23:26:25 +, Blumentrath, Stefan wrote:
>>> Thanks for the instruction. Here is my backtrace:
>>>
>>> pdb ./output/bin/qgis
>> gdb not pdb.
>>
>>> From: Matthias Kuhn [mailto:matth...@opengis.ch]
>>>
>>> cd build
>>> gdb ./output/bin/qgis
>>> run
>>> ... wait for the crash
>>> bt
>>> ... copy paste
>> Jürgen
>>
> --
> Matthias Kuhn
> OPENGIS.ch - https://www.opengis.ch
> Spatial • (Q)GIS • PostGIS • Open Source
>
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

--
Matthias Kuhn
OPENGIS.ch - https://www.opengis.ch
Spatial • (Q)GIS • PostGIS • Open Source

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Segmentation fault

2015-11-19 Thread Matthias Kuhn
In cmake gui is the right choice, the env variable is ignored.
Maybe you have to "make clean" before running "make" again? It seems
that there are no debug symbols available yet.
And once they are available, it seems that there's still an issue with X
of which I am not sure if it brings the application to its knees even
before it arrives at the point where the crash we are interested in is.

Cheers
Matthias

On 11/19/2015 09:05 AM, Blumentrath, Stefan wrote:
> Yes I did. Now I also tried
>
> export CMAKE_BUILD_TYPE=Debug
>
> Befor running (earlier I specified Debug in the cmake gui):
> ccmake ..
> make
> gdb ./output/bin/qgis
>
> Cheers
> Stefan
>
> -Original Message-
> From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of 
> Matthias Kuhn
> Sent: 19. november 2015 08:05
> To: qgis-user@lists.osgeo.org
> Subject: Re: [Qgis-user] QGIS Segmentation fault
>
> Did you make after cmake with buld type Debug and before running? Sorry, I 
> forgot to write that...
>
> On 11/19/2015 07:05 AM, Blumentrath, Stefan wrote:
>> He, he, thanks for the hint...
>>
>> Running QGIS through gdb ("gdb ./output/bin/qgis") and then calling "bt" 
>> gave "No stack".
>>
>> However, when I ran  just "./output/bin/qgis" I got:
>>
>> src/app/main.cpp: 428: (main) [0ms] Starting qgis main No protocol 
>> specified
>> Warning: qgis: cannot connect to X server :4 Stacktrace (piped through 
>> c++filt):
>> ./output/bin/qgis[0x40573d]
>> ./output/bin/qgis[0x405923]
>> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(qt_message_output(QtMsgType, 
>> char const*)+0x21)[0x7f5a2f8eabb1] 
>> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x70ff9)[0x7f5a2f8eaff9]
>> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(qWarning(char const*, 
>> ...)+0x94)[0x7f5a2f8eb244] 
>> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(+0x23db42)[0x7f5a2ee04b42]
>> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(QApplicationPrivate::construct
>> (_XDisplay*, unsigned long, unsigned long)+0xc8)[0x7f5a2ed94a78] 
>> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(QApplication::QApplication(int
>> &, char**, bool, int)+0x69)[0x7f5a2ed94e19] 
>> /data/src/QGIS/qgis-2.12/output/lib/libqgis_core.so.2.12.0(QgsApplicat
>> ion::QgsApplication(int&, char**, bool, QString 
>> const&)+0x3c)[0x7f5a3094ab70] ./output/bin/qgis[0x4072ea] 
>> /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5)[0x7f5a2e309ec5
>> ]
>> ./output/bin/qgis[0x405179]
>> src/core/qgsmessagelog.cpp: 45: (logMessage) [60ms] 
>> 2015-11-19T06:56:36 Qt[1] qgis: cannot connect to X server :4
>>
>> I am running QGIS through VNC (which X Server :4 refers to). Yet, maybe the 
>> issue is due to missing restart after kernel update?
>>
>> Cheers,
>> Sefan
>>
>> -Original Message-
>> From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf 
>> Of Jürgen E. Fischer
>> Sent: 19. november 2015 00:52
>> To: qgis-user@lists.osgeo.org
>> Subject: Re: [Qgis-user] QGIS Segmentation fault
>>
>> On Wed, 18. Nov 2015 at 23:26:25 +, Blumentrath, Stefan wrote:
>>> Thanks for the instruction. Here is my backtrace:
>>>
>>> pdb ./output/bin/qgis
>> gdb not pdb.
>>
>>> From: Matthias Kuhn [mailto:matth...@opengis.ch]
>>>
>>> cd build
>>> gdb ./output/bin/qgis
>>> run
>>> ... wait for the crash
>>> bt
>>> ... copy paste
>> Jürgen
>>
> --
> Matthias Kuhn
> OPENGIS.ch - https://www.opengis.ch
> Spatial • (Q)GIS • PostGIS • Open Source
>
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

-- 
Matthias Kuhn
OPENGIS.ch - https://www.opengis.ch
Spatial • (Q)GIS • PostGIS • Open Source

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Segmentation fault

2015-11-19 Thread Blumentrath, Stefan
Yes I did. Now I also tried

export CMAKE_BUILD_TYPE=Debug

Befor running (earlier I specified Debug in the cmake gui):
ccmake ..
make
gdb ./output/bin/qgis

Cheers
Stefan

-Original Message-
From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of 
Matthias Kuhn
Sent: 19. november 2015 08:05
To: qgis-user@lists.osgeo.org
Subject: Re: [Qgis-user] QGIS Segmentation fault

Did you make after cmake with buld type Debug and before running? Sorry, I 
forgot to write that...

On 11/19/2015 07:05 AM, Blumentrath, Stefan wrote:
> He, he, thanks for the hint...
>
> Running QGIS through gdb ("gdb ./output/bin/qgis") and then calling "bt" gave 
> "No stack".
>
> However, when I ran  just "./output/bin/qgis" I got:
>
> src/app/main.cpp: 428: (main) [0ms] Starting qgis main No protocol 
> specified
> Warning: qgis: cannot connect to X server :4 Stacktrace (piped through 
> c++filt):
> ./output/bin/qgis[0x40573d]
> ./output/bin/qgis[0x405923]
> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(qt_message_output(QtMsgType, 
> char const*)+0x21)[0x7f5a2f8eabb1] 
> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x70ff9)[0x7f5a2f8eaff9]
> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(qWarning(char const*, 
> ...)+0x94)[0x7f5a2f8eb244] 
> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(+0x23db42)[0x7f5a2ee04b42]
> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(QApplicationPrivate::construct
> (_XDisplay*, unsigned long, unsigned long)+0xc8)[0x7f5a2ed94a78] 
> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(QApplication::QApplication(int
> &, char**, bool, int)+0x69)[0x7f5a2ed94e19] 
> /data/src/QGIS/qgis-2.12/output/lib/libqgis_core.so.2.12.0(QgsApplicat
> ion::QgsApplication(int&, char**, bool, QString 
> const&)+0x3c)[0x7f5a3094ab70] ./output/bin/qgis[0x4072ea] 
> /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5)[0x7f5a2e309ec5
> ]
> ./output/bin/qgis[0x405179]
> src/core/qgsmessagelog.cpp: 45: (logMessage) [60ms] 
> 2015-11-19T06:56:36 Qt[1] qgis: cannot connect to X server :4
>
> I am running QGIS through VNC (which X Server :4 refers to). Yet, maybe the 
> issue is due to missing restart after kernel update?
>
> Cheers,
> Sefan
>
> -Original Message-
> From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf 
> Of Jürgen E. Fischer
> Sent: 19. november 2015 00:52
> To: qgis-user@lists.osgeo.org
> Subject: Re: [Qgis-user] QGIS Segmentation fault
>
> On Wed, 18. Nov 2015 at 23:26:25 +, Blumentrath, Stefan wrote:
>> Thanks for the instruction. Here is my backtrace:
>>
>> pdb ./output/bin/qgis
> gdb not pdb.
>
>> From: Matthias Kuhn [mailto:matth...@opengis.ch]
>>
>> cd build
>> gdb ./output/bin/qgis
>> run
>> ... wait for the crash
>> bt
>> ... copy paste
>
> Jürgen
>

--
Matthias Kuhn
OPENGIS.ch - https://www.opengis.ch
Spatial • (Q)GIS • PostGIS • Open Source

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Segmentation fault

2015-11-18 Thread Matthias Kuhn
Did you make after cmake with buld type Debug and before running? Sorry,
I forgot to write that...

On 11/19/2015 07:05 AM, Blumentrath, Stefan wrote:
> He, he, thanks for the hint...
>
> Running QGIS through gdb ("gdb ./output/bin/qgis") and then calling "bt" gave 
> "No stack".
>
> However, when I ran  just "./output/bin/qgis" I got:
>
> src/app/main.cpp: 428: (main) [0ms] Starting qgis main
> No protocol specified
> Warning: qgis: cannot connect to X server :4
> Stacktrace (piped through c++filt):
> ./output/bin/qgis[0x40573d]
> ./output/bin/qgis[0x405923]
> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(qt_message_output(QtMsgType, char 
> const*)+0x21)[0x7f5a2f8eabb1]
> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x70ff9)[0x7f5a2f8eaff9]
> /usr/lib/x86_64-linux-gnu/libQtCore.so.4(qWarning(char const*, 
> ...)+0x94)[0x7f5a2f8eb244]
> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(+0x23db42)[0x7f5a2ee04b42]
> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(QApplicationPrivate::construct(_XDisplay*,
>  unsigned long, unsigned long)+0xc8)[0x7f5a2ed94a78]
> /usr/lib/x86_64-linux-gnu/libQtGui.so.4(QApplication::QApplication(int&, 
> char**, bool, int)+0x69)[0x7f5a2ed94e19]
> /data/src/QGIS/qgis-2.12/output/lib/libqgis_core.so.2.12.0(QgsApplication::QgsApplication(int&,
>  char**, bool, QString const&)+0x3c)[0x7f5a3094ab70]
> ./output/bin/qgis[0x4072ea]
> /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5)[0x7f5a2e309ec5]
> ./output/bin/qgis[0x405179]
> src/core/qgsmessagelog.cpp: 45: (logMessage) [60ms] 2015-11-19T06:56:36 Qt[1] 
> qgis: cannot connect to X server :4
>
> I am running QGIS through VNC (which X Server :4 refers to). Yet, maybe the 
> issue is due to missing restart after kernel update?
>
> Cheers,
> Sefan
>
> -Original Message-
> From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of 
> Jürgen E. Fischer
> Sent: 19. november 2015 00:52
> To: qgis-user@lists.osgeo.org
> Subject: Re: [Qgis-user] QGIS Segmentation fault
>
> On Wed, 18. Nov 2015 at 23:26:25 +, Blumentrath, Stefan wrote:
>> Thanks for the instruction. Here is my backtrace:
>>
>> pdb ./output/bin/qgis
> gdb not pdb.
>
>> From: Matthias Kuhn [mailto:matth...@opengis.ch]
>>
>> cd build
>> gdb ./output/bin/qgis
>> run
>> ... wait for the crash
>> bt
>> ... copy paste
>
> Jürgen
>

-- 
Matthias Kuhn
OPENGIS.ch - https://www.opengis.ch
Spatial • (Q)GIS • PostGIS • Open Source

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Segmentation fault

2015-11-18 Thread Blumentrath, Stefan
He, he, thanks for the hint...

Running QGIS through gdb ("gdb ./output/bin/qgis") and then calling "bt" gave 
"No stack".

However, when I ran  just "./output/bin/qgis" I got:

src/app/main.cpp: 428: (main) [0ms] Starting qgis main
No protocol specified
Warning: qgis: cannot connect to X server :4
Stacktrace (piped through c++filt):
./output/bin/qgis[0x40573d]
./output/bin/qgis[0x405923]
/usr/lib/x86_64-linux-gnu/libQtCore.so.4(qt_message_output(QtMsgType, char 
const*)+0x21)[0x7f5a2f8eabb1]
/usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x70ff9)[0x7f5a2f8eaff9]
/usr/lib/x86_64-linux-gnu/libQtCore.so.4(qWarning(char const*, 
...)+0x94)[0x7f5a2f8eb244]
/usr/lib/x86_64-linux-gnu/libQtGui.so.4(+0x23db42)[0x7f5a2ee04b42]
/usr/lib/x86_64-linux-gnu/libQtGui.so.4(QApplicationPrivate::construct(_XDisplay*,
 unsigned long, unsigned long)+0xc8)[0x7f5a2ed94a78]
/usr/lib/x86_64-linux-gnu/libQtGui.so.4(QApplication::QApplication(int&, 
char**, bool, int)+0x69)[0x7f5a2ed94e19]
/data/src/QGIS/qgis-2.12/output/lib/libqgis_core.so.2.12.0(QgsApplication::QgsApplication(int&,
 char**, bool, QString const&)+0x3c)[0x7f5a3094ab70]
./output/bin/qgis[0x4072ea]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5)[0x7f5a2e309ec5]
./output/bin/qgis[0x405179]
src/core/qgsmessagelog.cpp: 45: (logMessage) [60ms] 2015-11-19T06:56:36 Qt[1] 
qgis: cannot connect to X server :4

I am running QGIS through VNC (which X Server :4 refers to). Yet, maybe the 
issue is due to missing restart after kernel update?

Cheers,
Sefan

-Original Message-
From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of Jürgen 
E. Fischer
Sent: 19. november 2015 00:52
To: qgis-user@lists.osgeo.org
Subject: Re: [Qgis-user] QGIS Segmentation fault

On Wed, 18. Nov 2015 at 23:26:25 +, Blumentrath, Stefan wrote:
> Thanks for the instruction. Here is my backtrace:
> 
> pdb ./output/bin/qgis

gdb not pdb.

> From: Matthias Kuhn [mailto:matth...@opengis.ch]
> 
> cd build
> gdb ./output/bin/qgis
> run
> ... wait for the crash
> bt
> ... copy paste


Jürgen

-- 
Jürgen E. Fischer   norBIT GmbH Tel. +49-4931-918175-31
Dipl.-Inf. (FH) Rheinstraße 13  Fax. +49-4931-918175-50
Software Engineer   D-26506 Norden http://www.norbit.de
QGIS release manager (PSC)  GermanyIRC: jef on FreeNode 

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Segmentation fault

2015-11-18 Thread Jürgen E . Fischer
On Wed, 18. Nov 2015 at 23:26:25 +, Blumentrath, Stefan wrote:
> Thanks for the instruction. Here is my backtrace:
> 
> pdb ./output/bin/qgis

gdb not pdb.

> From: Matthias Kuhn [mailto:matth...@opengis.ch]
> 
> cd build
> gdb ./output/bin/qgis
> run
> ... wait for the crash
> bt
> ... copy paste


Jürgen

-- 
Jürgen E. Fischer   norBIT GmbH Tel. +49-4931-918175-31
Dipl.-Inf. (FH) Rheinstraße 13  Fax. +49-4931-918175-50
Software Engineer   D-26506 Norden http://www.norbit.de
QGIS release manager (PSC)  GermanyIRC: jef on FreeNode 



signature.asc
Description: Digital signature
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Segmentation fault

2015-11-18 Thread Blumentrath, Stefan
Hi again,

Thanks for the instruction. Here is my backtrace:

pdb ./output/bin/qgis
Traceback (most recent call last):
  File "/usr/lib/python2.7/pdb.py", line 1314, in main
pdb._runscript(mainpyfile)
  File "/usr/lib/python2.7/pdb.py", line 1233, in _runscript
self.run(statement)
  File "/usr/lib/python2.7/bdb.py", line 400, in run
exec cmd in globals, locals
  File "", line 1, in 
  File "./output/bin/qgis", line 1
ELF
^
SyntaxError: invalid syntax
Uncaught exception. Entering post mortem debugging
Running 'cont' or 'step' will restart the program
Bt
  /usr/lib/python2.7/pdb.py(1314)main()
-> pdb._runscript(mainpyfile)
  /usr/lib/python2.7/pdb.py(1233)_runscript()
-> self.run(statement)
  /usr/lib/python2.7/bdb.py(400)run()
-> exec cmd in globals, locals
> (1)()

Hope anyone can get something out of it.

Cheers
Stefan

From: Matthias Kuhn [mailto:matth...@opengis.ch]
Sent: 18. november 2015 21:15
To: Blumentrath, Stefan ; qgis-user@lists.osgeo.org
Subject: Re: [Qgis-user] QGIS Segmentation fault

Yes, compile with CMAKE_BUILD_TYPE=Debug
then run it in gdb, I normally do from the build directory

cd build
gdb ./output/bin/qgis
run
... wait for the crash
bt
... copy paste

Cheers,
Matthias
On 11/18/2015 09:08 PM, Blumentrath, Stefan wrote:
Hi,

How do I backtrace?
Do I have to build with debug functionality first?

Cheers
Stefan

From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of 
Matthias Kuhn
Sent: 18. november 2015 21:06
To: qgis-user@lists.osgeo.org<mailto:qgis-user@lists.osgeo.org>
Subject: Re: [Qgis-user] QGIS Segmentation fault

Would any of you be able to produce a backtrace from this crash, paste it into 
the issue linked below and send a short reminder here?

Thanks
Matthias
On 11/18/2015 06:57 PM, Blumentrath, Stefan wrote:
Same here. Took the liberty to open a ticket:
https://hub.qgis.org/issues/13849

Yet, older versions of QGIS (2.10) crash equally...

Cheers
Stefan

From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of 
samuelm...@gmail.com<mailto:samuelm...@gmail.com>
Sent: 31. oktober 2015 18:36
To: Paulo van Breugel <mailto:p.vanbreu...@gmail.com>
Cc: QGIS user email list 
<mailto:qgis-user@lists.osgeo.org>
Subject: Re: [Qgis-user] QGIS Segmentation fault

I confirm the same problem for  QGIS 2.12 in Arch Linux:

Warning: QCss::Parser - Failed to load file  "/style.qss"

Then closes unexpectedly.
regards,
Samuel Mesa.

2015-09-21 5:45 GMT-05:00 Paulo van Breugel 
mailto:p.vanbreu...@gmail.com>>:
Hi, Just compiled the latest QGIS master (on Linux Ubuntu 14.04). Now, when 
opening QGIS, it opens, after which it immediately crashes, with the following 
sparse message:

Warning: loading of qgis translation failed 
[/usr/local/qgis/share/qgis/i18n//qgis_en_US]
Warning: loading of qt translation failed [/usr/share/qt4/translations/qt_en_US]
Warning: QCss::Parser - Failed to load file  "/style.qss"
Warning: void DBusMenuExporterPrivate::addAction(QAction*, int): Already 
tracking action "&Toolbox" under id 237
ERROR 4: `/initrd.img' not recognised as a supported file format.

Segmentation fault (core dumped)

Any idea?
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org<mailto:Qgis-user@lists.osgeo.org>
http://lists.osgeo.org/mailman/listinfo/qgis-user



--
---
.~.
   / v \
  //\\
 /(  )\
   ^`~'^





___

Qgis-user mailing list

Qgis-user@lists.osgeo.org<mailto:Qgis-user@lists.osgeo.org>

List info: http://lists.osgeo.org/mailman/listinfo/qgis-user

Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user




--

Matthias Kuhn

OPENGIS.ch - https://www.opengis.ch

Spatial * (Q)GIS * PostGIS * Open Source



--

Matthias Kuhn

OPENGIS.ch - https://www.opengis.ch

Spatial * (Q)GIS * PostGIS * Open Source
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Segmentation fault

2015-11-18 Thread Matthias Kuhn
Yes, compile with CMAKE_BUILD_TYPE=Debug
then run it in gdb, I normally do from the build directory

cd build
gdb ./output/bin/qgis
run
... wait for the crash
bt
... copy paste

Cheers,
Matthias

On 11/18/2015 09:08 PM, Blumentrath, Stefan wrote:
>
> Hi,
>
>  
>
> How do I backtrace?
>
> Do I have to build with debug functionality first?
>
>  
>
> Cheers
>
> Stefan
>
>  
>
> *From:*Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] *On Behalf
> Of *Matthias Kuhn
> *Sent:* 18. november 2015 21:06
> *To:* qgis-user@lists.osgeo.org
> *Subject:* Re: [Qgis-user] QGIS Segmentation fault
>
>  
>
> Would any of you be able to produce a backtrace from this crash, paste
> it into the issue linked below and send a short reminder here?
>
> Thanks
> Matthias
>
> On 11/18/2015 06:57 PM, Blumentrath, Stefan wrote:
>
> Same here. Took the liberty to open a ticket:
>
> https://hub.qgis.org/issues/13849
>
>  
>
> Yet, older versions of QGIS (2.10) crash equally…
>
>  
>
> Cheers
>
> Stefan
>
>  
>
> *From:*Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] *On
> Behalf Of *samuelm...@gmail.com <mailto:samuelm...@gmail.com>
> *Sent:* 31. oktober 2015 18:36
> *To:* Paulo van Breugel 
> <mailto:p.vanbreu...@gmail.com>
> *Cc:* QGIS user email list 
> <mailto:qgis-user@lists.osgeo.org>
> *Subject:* Re: [Qgis-user] QGIS Segmentation fault
>
>  
>
> I confirm the same problem for  QGIS 2.12 in Arch Linux:
>
> Warning: QCss::Parser - Failed to load file  "/style.qss"
>
> Then closes unexpectedly.
>
> regards,
>
> Samuel Mesa.
>
>  
>
> 2015-09-21 5:45 GMT-05:00 Paulo van Breugel
> mailto:p.vanbreu...@gmail.com>>:
>
> Hi, Just compiled the latest QGIS master (on Linux Ubuntu
> 14.04). Now, when opening QGIS, it opens, after which it
> immediately crashes, with the following sparse message:
>
> Warning: loading of qgis translation failed
> [/usr/local/qgis/share/qgis/i18n//qgis_en_US]
> Warning: loading of qt translation failed
> [/usr/share/qt4/translations/qt_en_US]
> Warning: QCss::Parser - Failed to load file  "/style.qss"
> Warning: void DBusMenuExporterPrivate::addAction(QAction*,
> int): Already tracking action "&Toolbox" under id 237
> ERROR 4: `/initrd.img' not recognised as a supported file format.
>
> Segmentation fault (core dumped)
>
> Any idea?
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org <mailto:Qgis-user@lists.osgeo.org>
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>
>
>
>
> -- 
>
> ---
>
> .~.
>
>/ v \
>
>   //\\
>
>  /(  )\
>
>^`~'^
>
>
>
>
> ___
>
> Qgis-user mailing list
>
> Qgis-user@lists.osgeo.org <mailto:Qgis-user@lists.osgeo.org>
>
> List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
>
> Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user
>
>
>
> -- 
> Matthias Kuhn
> OPENGIS.ch - https://www.opengis.ch
> Spatial • (Q)GIS • PostGIS • Open Source

-- 
Matthias Kuhn
OPENGIS.ch - https://www.opengis.ch
Spatial • (Q)GIS • PostGIS • Open Source

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Segmentation fault

2015-11-18 Thread Blumentrath, Stefan
Hi,

How do I backtrace?
Do I have to build with debug functionality first?

Cheers
Stefan

From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of 
Matthias Kuhn
Sent: 18. november 2015 21:06
To: qgis-user@lists.osgeo.org
Subject: Re: [Qgis-user] QGIS Segmentation fault

Would any of you be able to produce a backtrace from this crash, paste it into 
the issue linked below and send a short reminder here?

Thanks
Matthias
On 11/18/2015 06:57 PM, Blumentrath, Stefan wrote:
Same here. Took the liberty to open a ticket:
https://hub.qgis.org/issues/13849

Yet, older versions of QGIS (2.10) crash equally...

Cheers
Stefan

From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of 
samuelm...@gmail.com<mailto:samuelm...@gmail.com>
Sent: 31. oktober 2015 18:36
To: Paulo van Breugel <mailto:p.vanbreu...@gmail.com>
Cc: QGIS user email list 
<mailto:qgis-user@lists.osgeo.org>
Subject: Re: [Qgis-user] QGIS Segmentation fault

I confirm the same problem for  QGIS 2.12 in Arch Linux:

Warning: QCss::Parser - Failed to load file  "/style.qss"

Then closes unexpectedly.
regards,
Samuel Mesa.

2015-09-21 5:45 GMT-05:00 Paulo van Breugel 
mailto:p.vanbreu...@gmail.com>>:
Hi, Just compiled the latest QGIS master (on Linux Ubuntu 14.04). Now, when 
opening QGIS, it opens, after which it immediately crashes, with the following 
sparse message:

Warning: loading of qgis translation failed 
[/usr/local/qgis/share/qgis/i18n//qgis_en_US]
Warning: loading of qt translation failed [/usr/share/qt4/translations/qt_en_US]
Warning: QCss::Parser - Failed to load file  "/style.qss"
Warning: void DBusMenuExporterPrivate::addAction(QAction*, int): Already 
tracking action "&Toolbox" under id 237
ERROR 4: `/initrd.img' not recognised as a supported file format.

Segmentation fault (core dumped)

Any idea?
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org<mailto:Qgis-user@lists.osgeo.org>
http://lists.osgeo.org/mailman/listinfo/qgis-user



--
---
.~.
   / v \
  //\\
 /(  )\
   ^`~'^




___

Qgis-user mailing list

Qgis-user@lists.osgeo.org<mailto:Qgis-user@lists.osgeo.org>

List info: http://lists.osgeo.org/mailman/listinfo/qgis-user

Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user



--

Matthias Kuhn

OPENGIS.ch - https://www.opengis.ch

Spatial * (Q)GIS * PostGIS * Open Source
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Segmentation fault

2015-11-18 Thread Matthias Kuhn
Would any of you be able to produce a backtrace from this crash, paste
it into the issue linked below and send a short reminder here?

Thanks
Matthias

On 11/18/2015 06:57 PM, Blumentrath, Stefan wrote:
>
> Same here. Took the liberty to open a ticket:
>
> https://hub.qgis.org/issues/13849
>
>  
>
> Yet, older versions of QGIS (2.10) crash equally…
>
>  
>
> Cheers
>
> Stefan
>
>  
>
> *From:*Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] *On Behalf
> Of *samuelm...@gmail.com
> *Sent:* 31. oktober 2015 18:36
> *To:* Paulo van Breugel 
> *Cc:* QGIS user email list 
> *Subject:* Re: [Qgis-user] QGIS Segmentation fault
>
>  
>
> I confirm the same problem for  QGIS 2.12 in Arch Linux:
>
> Warning: QCss::Parser - Failed to load file  "/style.qss"
>
> Then closes unexpectedly.
>
> regards,
>
> Samuel Mesa.
>
>  
>
> 2015-09-21 5:45 GMT-05:00 Paulo van Breugel  <mailto:p.vanbreu...@gmail.com>>:
>
> Hi, Just compiled the latest QGIS master (on Linux Ubuntu 14.04).
> Now, when opening QGIS, it opens, after which it immediately
> crashes, with the following sparse message:
>
> Warning: loading of qgis translation failed
> [/usr/local/qgis/share/qgis/i18n//qgis_en_US]
> Warning: loading of qt translation failed
> [/usr/share/qt4/translations/qt_en_US]
> Warning: QCss::Parser - Failed to load file  "/style.qss"
> Warning: void DBusMenuExporterPrivate::addAction(QAction*, int):
> Already tracking action "&Toolbox" under id 237
> ERROR 4: `/initrd.img' not recognised as a supported file format.
>
> Segmentation fault (core dumped)
>
> Any idea?
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org <mailto:Qgis-user@lists.osgeo.org>
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>
>
>
>
> -- 
>
> ---
>
> .~.
>
>/ v \
>
>   //\\
>
>  /(  )\
>
>^`~'^
>
>
>
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

-- 
Matthias Kuhn
OPENGIS.ch - https://www.opengis.ch
Spatial • (Q)GIS • PostGIS • Open Source

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Segmentation fault

2015-11-18 Thread Blumentrath, Stefan
Same here. Took the liberty to open a ticket:
https://hub.qgis.org/issues/13849

Yet, older versions of QGIS (2.10) crash equally…

Cheers
Stefan

From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of 
samuelm...@gmail.com
Sent: 31. oktober 2015 18:36
To: Paulo van Breugel 
Cc: QGIS user email list 
Subject: Re: [Qgis-user] QGIS Segmentation fault

I confirm the same problem for  QGIS 2.12 in Arch Linux:

Warning: QCss::Parser - Failed to load file  "/style.qss"

Then closes unexpectedly.
regards,
Samuel Mesa.

2015-09-21 5:45 GMT-05:00 Paulo van Breugel 
mailto:p.vanbreu...@gmail.com>>:
Hi, Just compiled the latest QGIS master (on Linux Ubuntu 14.04). Now, when 
opening QGIS, it opens, after which it immediately crashes, with the following 
sparse message:

Warning: loading of qgis translation failed 
[/usr/local/qgis/share/qgis/i18n//qgis_en_US]
Warning: loading of qt translation failed [/usr/share/qt4/translations/qt_en_US]
Warning: QCss::Parser - Failed to load file  "/style.qss"
Warning: void DBusMenuExporterPrivate::addAction(QAction*, int): Already 
tracking action "&Toolbox" under id 237
ERROR 4: `/initrd.img' not recognised as a supported file format.

Segmentation fault (core dumped)

Any idea?
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org<mailto:Qgis-user@lists.osgeo.org>
http://lists.osgeo.org/mailman/listinfo/qgis-user



--
---
.~.
   / v \
  //\\
 /(  )\
   ^`~'^
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Segmentation fault

2015-10-31 Thread samuelm...@gmail.com
I confirm the same problem for  QGIS 2.12 in Arch Linux:

Warning: QCss::Parser - Failed to load file  "/style.qss"

Then closes unexpectedly.

regards,

Samuel Mesa.

2015-09-21 5:45 GMT-05:00 Paulo van Breugel :

> Hi, Just compiled the latest QGIS master (on Linux Ubuntu 14.04). Now,
> when opening QGIS, it opens, after which it immediately crashes, with the
> following sparse message:
>
> Warning: loading of qgis translation failed
> [/usr/local/qgis/share/qgis/i18n//qgis_en_US]
> Warning: loading of qt translation failed
> [/usr/share/qt4/translations/qt_en_US]
> Warning: QCss::Parser - Failed to load file  "/style.qss"
> Warning: void DBusMenuExporterPrivate::addAction(QAction*, int): Already
> tracking action "&Toolbox" under id 237
> ERROR 4: `/initrd.img' not recognised as a supported file format.
>
> Segmentation fault (core dumped)
>
> Any idea?
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>



-- 
---
.~.
   / v \
  //\\
 /(  )\
   ^`~'^
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] qgis segmentation fault

2010-08-30 Thread David J. Bakeman
Title: qgis segmentation fault




I just grabbed the qgis source rpm from Fedora 12 and was able to build
it on my FC11 system and install it.  I only had to make one small
change to the spec file I commented out the BuildRequires:
qt4-webkit-devel line.  This is provided by qt4-devel in older
releases.  So if you can't upgrade to Fedora 12 or greater it is
possible to build the rpm yourself.  If you can upgrade qgis 1.5 is
available with yum.



 David J. Bakeman wrote:

  
Andrea as I recall there is a symbol conflict issue with I think proj
and gdal in Fedora.  I built my own rpms from source and a newer
version of gdal to get around this.  It's probably easier to just build
from source especially since the available rpms for Fedora are 1.2(last
I checked anyway) which is pretty old.  I haven't had time to try 1.5
yet but I've used 1.4 for awhile now on Fedora 11.
  
Del Bravo, Andrea (SELEX GALILEO, Italy) wrote:
  






I've just installed qgis under Fedora Core 11 on
a
pretty new HP lap-top with 2 Gb memory.
I installed it by yum procedure but it gave me a segnentation fault.
I build the tool from source code with the same result.
The gdb rold me that the fault occurred in libQtGui.so.4 (on my system
from qt-x11-4.6.2-17.fc11.i586)

Could anybody give me any suggestion?

Thank you very much
Andrea 

 

SELEX Galileo S.p.A.
Con unico socio, direzione e coordinamento di Finmeccanica S.p.A.
Sede legale: Via Albert Einstein, 35 – 50013 Campi Bisenzio (FI) -
Italia
Capitale sociale: Euro 231.464.449,00, i.v.
Reg. Imp. Firenze, C.F. e P.I. 02328910480


This email and any attachments are
confidential to the intended recipient and may also be privileged. If
you are not the intended recipient please delete it from your system
and notify the sender. You should not copy it or use it for any purpose
nor disclose or distribute its contents to any other person.
 
Questa e-mail e tutti i suoi allegati sono
da intendersi inviati in via riservata all'effettivo destinatario e
possono essere soggetti a restrizioni legali. Se non siete l'effettivo
destinatario o avete ricevuto il messaggio per errore siete pregati di
cancellarlo dal vostro sistema e di avvisare il mittente. E' vietata la
duplicazione, l'uso a qualsiasi titolo, la divulgazione o la
distribuzione dei contenuti di questa e-mail a qualunque altro soggetto.
 
 

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user
  
  
  
  

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user
  




___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis segmentation fault

2010-08-30 Thread David J. Bakeman
Title: qgis segmentation fault




Andrea as I recall there is a symbol conflict issue with I think proj
and gdal in Fedora.  I built my own rpms from source and a newer
version of gdal to get around this.  It's probably easier to just build
from source especially since the available rpms for Fedora are 1.2(last
I checked anyway) which is pretty old.  I haven't had time to try 1.5
yet but I've used 1.4 for awhile now on Fedora 11.

Del Bravo, Andrea (SELEX GALILEO, Italy) wrote:

  
  
  
  
  
  

  I've just installed qgis under Fedora Core 11 on a
pretty new HP lap-top with 2 Gb memory.
I installed it by yum procedure but it gave me a segnentation fault.
I build the tool from source code with the same result.
The gdb rold me that the fault occurred in libQtGui.so.4 (on my system
from qt-x11-4.6.2-17.fc11.i586)
  
Could anybody give me any suggestion?
  
Thank you very much
Andrea
  
  
   
  
SELEX Galileo S.p.A.
Con unico socio, direzione e coordinamento di Finmeccanica S.p.A.
Sede legale: Via Albert Einstein, 35 – 50013 Campi Bisenzio (FI) -
Italia
Capitale sociale: Euro 231.464.449,00, i.v.
Reg. Imp. Firenze, C.F. e P.I. 02328910480
  
  
  This email and any attachments are
confidential to the intended recipient and may also be privileged. If
you are not the intended recipient please delete it from your system
and notify the sender. You should not copy it or use it for any purpose
nor disclose or distribute its contents to any other person.
   
  Questa e-mail e tutti i suoi allegati sono
da intendersi inviati in via riservata all'effettivo destinatario e
possono essere soggetti a restrizioni legali. Se non siete l'effettivo
destinatario o avete ricevuto il messaggio per errore siete pregati di
cancellarlo dal vostro sistema e di avvisare il mittente. E' vietata la
duplicazione, l'uso a qualsiasi titolo, la divulgazione o la
distribuzione dei contenuti di questa e-mail a qualunque altro soggetto.
   
   
  

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user
  




___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis segmentation fault

2010-08-29 Thread Jürgen E . Fischer
Hi Andrea,

On Sun, 29. Aug 2010 at 19:25:59 +0200, Del Bravo, Andrea (SELEX GALILEO, 
Italy) wrote:
>The gdb rold me that the fault occurred in libQtGui.so.4 (on my system
>from qt-x11-4.6.2-17.fc11.i586)

A backtrace might help.  If the problem is reproducable, please file a bug in
our TRAC.   See [1] for details.


Jürgen


[1] http://trac.osgeo.org/qgis/wiki/UsingTracWithQuantumGis
  
-- 
Jürgen E. Fischer norBIT GmbH   Tel. +49-4931-918175-20
Dipl.-Inf. (FH)   Rheinstraße 13Fax. +49-4931-918175-50
Software Engineer D-26506 Norden   http://www.norbit.de

-- 
norBIT Gesellschaft fuer Unternehmensberatung und Informationssysteme mbH
Rheinstrasse 13, 26506 Norden
GF: Jelto Buurman, HR: Amtsgericht Emden, HRB 5502

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] QGIS segmentation fault

2008-11-23 Thread Nikos Alexandris
On Fri, 2008-11-21 at 23:31 +0200, Tim Sutton wrote:
> Hi Gavin
> On Fri, 2008-11-21 at 08:36 +0200, Gavin Fleming wrote:
> > Hi
> > 
> > Ubuntu server 7.10. QGIS worked until I did an apt-get update some
> > time back. It was using standard repositories plus the
> > launchpad/timlinux one. Yesterday I added launchpad/qgis to my apt
> > sources and tried a new install but I still get this, I’m not even
> > sure what version it’s attempting to run. The splash screen was coming
> > up in earlier versions of this crash but now that’s not even
> > happening:
> 
> Try purging all QGIS related packages and uninstalling any hand built
> QGIS you may have, and then installing the launchpad/jef packages listed
> on http://download.qgis.org for heron. That will get you 1.0 preview 2
> which is IMHO more stable than 0.11 anyway.
> 
> Buzz if you still cant come right.
> 
> Regards
> 
> Tim

> > qgis
> > 
> > Warning: No valid projection. Unable to set map units.
> > 
> > Warning: No valid projection. Unable to set map units.
> > 
> > Warning: No valid projection. Unable to set map units.
> > 
> > Segmentation fault
> > 
> > Any tips?
> > Gavin 

Hi all!

That is what I do when things go wrong (under Ubuntu-64bit).

-
*** BE CAREFUL with (1) "rm -rf" and (b) with /home/user-id/.qgis ***
-

# in case of compiling another qgis version, before installing remove
all qgis related stuff

#for qgis_0_11
sudo rm -rf /usr/local/bin/qgis \
/usr/local/bin/qgis_help \
/usr/local/include/qgis \
/usr/local/lib/libqgis_core.so \
/usr/local/lib/libqgis_core.so.0.11 \
/usr/local/lib/libqgis_gui.so \
/usr/local/lib/libqgis_gui.so.0.11 \
/usr/local/lib/libqgisgrass.so \
/usr/local/lib/libqgisgrass.so.0.11 \
/usr/local/lib/libqgispython.so \
/usr/local/lib/libqgispython.so.0.11 \
/usr/local/lib/qgis \
/usr/local/share/qgis \
/usr/local/share/man/man1/qgis.man

# for qgis 1.0
sudo rm -rf /usr/local/lib/libqgis_core.so.1.0 \
/usr/local/lib/libqgis_gui.so.1.0 \
/usr/local/lib/libqgispython.so.1.0 \
#/home/nik/.qgis

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] QGIS segmentation fault

2008-11-21 Thread Tim Sutton
Hi Gavin

On Fri, 2008-11-21 at 08:36 +0200, Gavin Fleming wrote:
> Hi
> 
>  
> 
> Ubuntu server 7.10. QGIS worked until I did an apt-get update some
> time back. It was using standard repositories plus the
> launchpad/timlinux one. Yesterday I added launchpad/qgis to my apt
> sources and tried a new install but I still get this, I’m not even
> sure what version it’s attempting to run. The splash screen was coming
> up in earlier versions of this crash but now that’s not even
> happening:
> 



Try purging all QGIS related packages and uninstalling any hand built
QGIS you may have, and then installing the launchpad/jef packages listed
on http://download.qgis.org for heron. That will get you 1.0 preview 2
which is IMHO more stable than 0.11 anyway.

Buzz if you still cant come right.

Regards

Tim


>  
> 
> qgis
> 
> Warning: No valid projection. Unable to set map units.
> 
> Warning: No valid projection. Unable to set map units.
> 
> Warning: No valid projection. Unable to set map units.
> 
> Segmentation fault
> 
>  
> 
>  
> 
> Any tips?
> 
>  
> 
> Gavin 
> 
>  
> 
> 
> This message is intended for the addressee only. 
> Information and attachments in this e-mail may contain confidential, 
> proprietary, or legally privileged information. 
> If you are not the intended recipient, or responsible for delivery of the 
> message to the intended recipient, 
> any disclosure, copying, distribution, or any action taken is prohibited and 
> may be unlawful, 
> and could result in a claim against you.
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user

-- 
Tim Sutton - QGIS Project Steering Committee Member (Release  Manager)
==
Visit http://linfiniti.com to find out about:
 * QGIS programming services
 * Mapserver and PostGIS based hosting plans
 * FOSS Consulting & Support Services
Skype: timlinux Irc: timlinux on #qgis at freenode.net
==


signature.asc
Description: This is a digitally signed message part
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] QGIS segmentation fault

2008-11-21 Thread Borys Jurgiel
Friday 21 of November 2008 07:36:15 Gavin Fleming napisał(a):
> Hi
>
> Ubuntu server 7.10. QGIS worked until I did an apt-get update some time
> back. It was using standard repositories plus the launchpad/timlinux
> one. Yesterday I added launchpad/qgis to my apt sources and tried a new
> install but I still get this, I'm not even sure what version it's
> attempting to run. The splash screen was coming up in earlier versions
> of this crash but now that's not even happening:
>
> qgis
>
> Warning: No valid projection. Unable to set map units.
>
> Warning: No valid projection. Unable to set map units.
>
> Warning: No valid projection. Unable to set map units.
>
> Segmentation fault

Here are the simplest solutions, sometimes help:

Try to remove (or better rename or move anywhere to not lost your settings) 
the configuration file: ~/.config/QuantumGIS/qgis.conf

If it doesn't help, the problem may be caused by an incompatible C++ plugin. 
Have you compiled any for older version by youself? If so, try to (re)move it 
and recompile. Python plugins shouldn't give such error, but to be sure, you 
can remove or rename the ~/.qgis/python/plugins directory

Btw. The warning message you've reported appears frequently in some qgis 
versions and probably isn't related to the subsequent segfault.

Regards,
B.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Qgis "segmentation fault" in Fedora 9

2008-05-20 Thread Juha Tuomala


On Tuesday 20 May 2008 16:02:50 Jan Valenta wrote:
> Currently this seems to be a fedora gdal related problem. The workaround
> (before it will be solved in a more elegant way) is to build your own
> version of gdal (1.4.4 works for me) and then the qgis 0.10.0 can be
> build from source.

https://bugzilla.redhat.com/show_bug.cgi?id=445128#c24
> gdal-1.5.1-7.fc9 has been submitted as an update for Fedora 9

it should work now.


Tuju

-- 
Varo hattupäisiä autoilijoita.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Qgis "segmentation fault" in Fedora 9

2008-05-20 Thread Jan Valenta
Currently this seems to be a fedora gdal related problem. The workaround
(before it will be solved in a more elegant way) is to build your own
version of gdal (1.4.4 works for me) and then the qgis 0.10.0 can be
build from source.

Jan.

Jan Valenta píše v Pá 16. 05. 2008 v 15:37 +0200:
> The same problem with the testing repository version. I have updated the
> Bugzilla record.
> 
> Jan.
> 
> Juha Tuomala píše v Pá 16. 05. 2008 v 16:09 +0300:
> > 
> > 
> > On Friday 16 May 2008 12:05:11 Jan Valenta wrote:
> > > I have the same problem in Fedora 9. It is the same with the 0.9.1
> > > version from the fedora repository as well with the 0.10.0 version
> > > compiled by myself.
> > > 
> > 
> >   https://bugzilla.redhat.com/show_bug.cgi?id=445128
> > 
> > 
> > Tuju
> > 
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Qgis "segmentation fault" in Fedora 9

2008-05-16 Thread Jan Valenta
The same problem with the testing repository version. I have updated the
Bugzilla record.

Jan.

Juha Tuomala píše v Pá 16. 05. 2008 v 16:09 +0300:
> 
> 
> On Friday 16 May 2008 12:05:11 Jan Valenta wrote:
> > I have the same problem in Fedora 9. It is the same with the 0.9.1
> > version from the fedora repository as well with the 0.10.0 version
> > compiled by myself.
> > 
> 
>   https://bugzilla.redhat.com/show_bug.cgi?id=445128
> 
> 
> Tuju
> 
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Qgis "segmentation fault" in Fedora 9

2008-05-16 Thread Juha Tuomala



On Friday 16 May 2008 12:05:11 Jan Valenta wrote:
> I have the same problem in Fedora 9. It is the same with the 0.9.1
> version from the fedora repository as well with the 0.10.0 version
> compiled by myself.
> 

  https://bugzilla.redhat.com/show_bug.cgi?id=445128


Tuju

-- 
Varo hattupäisiä autoilijoita.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Qgis "segmentation fault" in Fedora 9

2008-05-15 Thread Paolo Cavallini
Carlo van Rijswijk ha scritto:

> I recently switched from Ubuntu Hardy H. to Fedora 9 (gnome). Of course
> I wanted to install Qgis as my first app. But after installing
> "qgis-0.9.1-5.fc9(i368)" via PackageKit and running it, I only see the
> splash screen for 1 second and then qgis closes with "Segmentation
> fault" (when started on the command line)". What can I do?

revert to ubuntu, or move further to Debian :)
pc
-- 
Paolo Cavallini, see: * http://www.faunalia.it/pc *
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user