forked from qt-creator/qt-creator
Dumper: Fix detection of Qt namespace
Task-number: QTCREATORBUG-19620 Change-Id: Icca654714b70c69522b51998be21cff80bc29fac Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user