Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Widgetset
»
QT
»
SIGSEGV on exiting application under QT5.6
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
WIKI Timeout issues
Please read here if you have trouble connecting to the wiki
Recent
TMemoryStream Question wi...
by
Thaddy
[
Today
at 03:57:33 pm]
Does anyone have experien...
by
xiyi0616
[
Today
at 03:47:39 pm]
Debugger use on OBJECT ty...
by
Martin_fr
[
Today
at 03:13:44 pm]
The issue of the scroll b...
by
Martin_fr
[
Today
at 03:11:47 pm]
Problems with libraries f...
by
DonAlfredo
[
Today
at 03:03:27 pm]
Possible Bug or Known Beh...
by
Aruna
[
Today
at 02:48:41 pm]
It does not show my progr...
by
RayoGlauco
[
Today
at 02:48:05 pm]
RuntimeError 103 File not...
by
Thaddy
[
Today
at 02:12:59 pm]
activex.pp DosDateTimeToV...
by
440bx
[
Today
at 02:09:39 pm]
Is Lazarus still serious ...
by
ginoo
[
Today
at 01:33:47 pm]
Lazarus & FPC documentati...
by
marcov
[
Today
at 01:08:16 pm]
Suddenly a build error? [...
by
TBMan
[
Today
at 12:42:00 pm]
"Mario & Luigi" (1994-200...
by
Nimbus
[
Today
at 12:14:31 pm]
THUMBBUTTON does not work...
by
Xenno
[
Today
at 08:52:47 am]
UTF8 Keyboard entry
by
Thaddy
[
Today
at 06:17:25 am]
Will there be a freezing ...
by
xiyi0616
[
Today
at 04:25:25 am]
Why does $fpctarget not w...
by
Gustavo 'Gus' Carreno
[
Today
at 03:18:16 am]
GitHub action setup-lazar...
by
Gustavo 'Gus' Carreno
[
Today
at 01:03:07 am]
How to control subform: S...
by
Wilko500
[
Today
at 12:09:23 am]
A minor issue with the TR...
by
cdbc
[July 15, 2025, 11:44:52 pm]
Line Numbers, own System ...
by
Martin_fr
[July 15, 2025, 10:05:31 pm]
use Macro defines with Pa...
by
PascalDragon
[July 15, 2025, 10:03:21 pm]
generic Class for any Typ...
by
PascalDragon
[July 15, 2025, 09:53:18 pm]
Asking for an example of ...
by
marcov
[July 15, 2025, 09:39:58 pm]
Record Locked
by
Thaddy
[July 15, 2025, 07:28:38 pm]
« previous
next »
Print
Pages:
1
[
2
]
Author
Topic: SIGSEGV on exiting application under QT5.6 (Read 14647 times)
zeljko
Hero Member
Posts: 1770
Re: SIGSEGV on exiting application under QT5.6
«
Reply #15 on:
January 27, 2018, 07:28:34 pm »
That's same thing:
#0 0x00007ffff6eca979 in _dl_catch_error () at /lib64/libc.so.6
#1 0x00007ffff79b45c5 in _dlerror_run () at /lib64/libdl.so.2
#2 0x00007ffff79b3fff in dlclose () at /lib64/libdl.so.2
Crash comes from glibc (or from wrong Qt implementation when unloading library)
Logged
baldzhang
New Member
Posts: 46
Re: SIGSEGV on exiting application under QT5.6
«
Reply #16 on:
January 28, 2018, 03:52:15 am »
http://users.telenet.be/Jan.Van.hijfte/qtforfpc/fpcqt4.html
downloaded demo from here, change qt4 -> qt5, 2 program compile passed.
SIGSEGV is the same...
Logged
baldzhang
New Member
Posts: 46
Re: SIGSEGV on exiting application under QT5.6
«
Reply #17 on:
January 29, 2018, 06:22:53 am »
tested at slackware 14.2 x86-64, glibc-2.23
upgraded qt5 5.9.3 from here:
https://slackware.pkgs.org/14.2/slackel-x86_64/qt5-5.9.3-x86_64-1dj.txz.html
it's ok, so looks like this issue is related to glibc for 90%...
but arch is running with glibc 2.26 also and it's ok there.
Logged
zeljko
Hero Member
Posts: 1770
Re: SIGSEGV on exiting application under QT5.6
«
Reply #18 on:
January 29, 2018, 11:44:35 am »
Probably arch uses some custom glibc patch, or different could be distro combination of glibc and gcc. Really don't know. Maybe one must write pure simple Qt c++ app to see if crash occurs.
Logged
baldzhang
New Member
Posts: 46
Re: SIGSEGV on exiting application under QT5.6
«
Reply #19 on:
January 29, 2018, 04:08:50 pm »
tested ok on ubuntu and arch, detail version info:
ubuntu 17.10
qt 5.9.1
glibc 2.26
gcc 7.2.0
arch
qt 5.10.0
glibc 2.26
gcc 7.3.0
will try to rebuild glibc and test.
Logged
baldzhang
New Member
Posts: 46
Re: SIGSEGV on exiting application under QT5.6
«
Reply #20 on:
January 29, 2018, 09:15:02 pm »
ok, I give up, after build glibc 3 times, I totally no idea how to do now.
Logged
zeljko
Hero Member
Posts: 1770
Re: SIGSEGV on exiting application under QT5.6
«
Reply #21 on:
January 30, 2018, 09:39:12 am »
Fedora 26 uses glibc 2.25 and there we have problem. glibc 2.23, 2.24 works fine on fedoras.
If you don't have problems with 2.26 then it's obvious where bug is.
Logged
baldzhang
New Member
Posts: 46
Re: SIGSEGV on exiting application under QT5.6
«
Reply #22 on:
February 02, 2018, 04:16:53 pm »
build and upgrade glibc 2.27, it's ok now
Logged
Print
Pages:
1
[
2
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Widgetset
»
QT
»
SIGSEGV on exiting application under QT5.6
TinyPortal
© 2005-2018