Dumper: Fix detection of Qt namespace

Task-number: QTCREATORBUG-19620
Change-Id: Icca654714b70c69522b51998be21cff80bc29fac
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Stenger
2018-07-02 12:08:05 +02:00
parent 9e6fe45ad9
commit 65a4333f2c
+1 -1
View File
@@ -990,7 +990,7 @@ class Dumper(DumperBase):
if self.isWindowsTarget():
qtCoreMatch = re.match('.*Qt5?Core[^/.]*d?\.dll', name)
else:
qtCoreMatch = re.match('.*/libQt5?Core[^/.]\.so', name)
qtCoreMatch = re.match('.*/libQt5?Core[^/.]*\.so', name)
if qtCoreMatch is not None:
self.handleQtCoreLoaded(objfile)