@@ -268,8 +268,10 @@ func AppDirDeploy(path string) {
268
268
qtVersionDetected = 4
269
269
}
270
270
271
+ qtPrefixPathRequiresPatch := true
272
+
271
273
if qtVersionDetected > 0 {
272
- handleQt (appdir , qtVersionDetected )
274
+ qtPrefixPathRequiresPatch = handleQt (appdir , qtVersionDetected )
273
275
}
274
276
275
277
fmt .Println ("" )
@@ -314,7 +316,8 @@ func AppDirDeploy(path string) {
314
316
deployElf (lib , appdir , err )
315
317
patchRpathsInElf (appdir , libraryLocationsInAppDir , lib )
316
318
317
- if strings .Contains (lib , fmt .Sprintf ("libQt%dCore.so.%d" , qtVersionDetected , qtVersionDetected )) {
319
+ if qtPrefixPathRequiresPatch &&
320
+ strings .Contains (lib , fmt .Sprintf ("libQt%dCore.so.%d" , qtVersionDetected , qtVersionDetected )) {
318
321
fmt .Println ("Patching Qt prefix path in " + lib )
319
322
patchQtPrfxpath (appdir , lib , libraryLocationsInAppDir , ldLinux )
320
323
}
@@ -1252,7 +1255,9 @@ func getCopyrightFile(path string) (string, error) {
1252
1255
}
1253
1256
1254
1257
// Let's see in how many lines of code we can re-implement the guts of linuxdeployqt
1255
- func handleQt (appdir helpers.AppDir , qtVersion int ) {
1258
+ func handleQt (appdir helpers.AppDir , qtVersion int ) bool {
1259
+
1260
+ qtPrefixPathRequiresPatch := true
1256
1261
1257
1262
if qtVersion >= 5 {
1258
1263
@@ -1265,7 +1270,7 @@ func handleQt(appdir helpers.AppDir, qtVersion int) {
1265
1270
os .Exit (1 )
1266
1271
}
1267
1272
1268
- qtPrfxpath := getQtPrfxpath (library , qtVersion )
1273
+ qtPrfxpath , qtPrefixPathRequiresPatch := getQtPrfxpath (library , qtVersion )
1269
1274
1270
1275
if qtPrfxpath == "" {
1271
1276
log .Println ("Got empty qtPrfxpath, exiting" )
@@ -1425,7 +1430,7 @@ func handleQt(appdir helpers.AppDir, qtVersion int) {
1425
1430
qmlImportScanners := helpers .FilesWithSuffixInDirectoryRecursive (qtPrfxpath , "qmlimportscanner" )
1426
1431
if len (qmlImportScanners ) < 1 {
1427
1432
log .Println ("qmlimportscanner not found, skipping QML deployment" ) // TODO: Exit if we have qml files and qmlimportscanner is not there
1428
- return
1433
+ return qtPrefixPathRequiresPatch
1429
1434
} else {
1430
1435
log .Println ("Found qmlimportscanner:" , qmlImportScanners [0 ])
1431
1436
}
@@ -1486,9 +1491,11 @@ func handleQt(appdir helpers.AppDir, qtVersion int) {
1486
1491
}
1487
1492
}
1488
1493
}
1494
+
1495
+ return qtPrefixPathRequiresPatch
1489
1496
}
1490
1497
1491
- func getQtPrfxpath (library string , qtVersion int ) string {
1498
+ func getQtPrfxpath (library string , qtVersion int ) ( string , bool ) {
1492
1499
// Some notes on Qt behavior:
1493
1500
// https://doc.qt.io/qt-5/qt-conf.html
1494
1501
// https://doc.qt.io/qt-6/qt-conf.html
@@ -1510,16 +1517,6 @@ func getQtPrfxpath(library string, qtVersion int) string {
1510
1517
1511
1518
// TODO IDEA: Use AppRun to generate qt.conf at application start?
1512
1519
1513
- // If the user has set $QTDIR or $QT_ROOT_DIR, use that instead of the one from qt_prfxpath in the library
1514
- qtPrefixEnv := os .Getenv ("QTDIR" )
1515
- if qtPrefixEnv == "" {
1516
- qtPrefixEnv = os .Getenv ("QT_ROOT_DIR" )
1517
- }
1518
- if qtPrefixEnv != "" {
1519
- log .Println ("Using QTDIR or QT_ROOT_DIR:" , qtPrefixEnv )
1520
- return qtPrefixEnv
1521
- }
1522
-
1523
1520
f , err := os .Open (library )
1524
1521
if err != nil {
1525
1522
helpers .PrintError (fmt .Sprintf ("Could not open libQt%dCore.so.%d" , qtVersion , qtVersion ), err )
@@ -1537,10 +1534,12 @@ func getQtPrfxpath(library string, qtVersion int) string {
1537
1534
f .Seek (offset , 0 )
1538
1535
length := ScanFile (f , search )
1539
1536
1540
- var qt_prfxpath = ""
1537
+ qt_prfxpath := ""
1538
+ qtPrefixPathRequiresPatch := true
1541
1539
1542
1540
// When length is 0, Qt has been built as relocatable
1543
1541
if length == 0 {
1542
+ qtPrefixPathRequiresPatch = false
1544
1543
// Directory should be in ../Qt${qtVersion}
1545
1544
// TODO: Check if this is true for relocatable binaries in Qt5
1546
1545
qt_prfxpath = filepath .Dir (library ) + fmt .Sprintf ("/../Qt%d" , qtVersion )
@@ -1560,11 +1559,20 @@ func getQtPrfxpath(library string, qtVersion int) string {
1560
1559
qt_prfxpath = strings .TrimSpace (string (buf ))
1561
1560
log .Println ("qt_prfxpath:" , qt_prfxpath )
1562
1561
if qt_prfxpath == "" {
1563
- log .Println ("Could not get qt_prfxpath" )
1564
- return ""
1562
+ log .Println ("Could not get qt_prfxpath from" , library )
1565
1563
}
1566
1564
}
1567
1565
1566
+ // If the user has set $QTDIR or $QT_ROOT_DIR, use that instead of the one from qt_prfxpath in the library
1567
+ qtPrefixEnv := os .Getenv ("QTDIR" )
1568
+ if qtPrefixEnv == "" {
1569
+ qtPrefixEnv = os .Getenv ("QT_ROOT_DIR" )
1570
+ }
1571
+ if qtPrefixEnv != "" {
1572
+ log .Println ("Using QTDIR or QT_ROOT_DIR:" , qtPrefixEnv )
1573
+ qt_prfxpath = qtPrefixEnv
1574
+ }
1575
+
1568
1576
// Special case:
1569
1577
// Some distributions, including Ubuntu and Alpine,
1570
1578
// have qt_prfxpath set to '/usr' but the files are actually in e.g., '/usr/lib/qt5'
@@ -1586,7 +1594,7 @@ func getQtPrfxpath(library string, qtVersion int) string {
1586
1594
}
1587
1595
}
1588
1596
1589
- return qt_prfxpath
1597
+ return qt_prfxpath , qtPrefixPathRequiresPatch
1590
1598
}
1591
1599
1592
1600
// ScanFile returns the offset of the first occurrence of a []byte in a file from the current position,
0 commit comments