Skip to content

Commit 28498fa

Browse files
committed
Only patch qt_prfxpath for non-relocatable builds of Qt
1 parent 61a89d0 commit 28498fa

File tree

1 file changed

+28
-20
lines changed

1 file changed

+28
-20
lines changed

src/appimagetool/appdirtool.go

+28-20
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,10 @@ func AppDirDeploy(path string) {
268268
qtVersionDetected = 4
269269
}
270270

271+
qtPrefixPathRequiresPatch := true
272+
271273
if qtVersionDetected > 0 {
272-
handleQt(appdir, qtVersionDetected)
274+
qtPrefixPathRequiresPatch = handleQt(appdir, qtVersionDetected)
273275
}
274276

275277
fmt.Println("")
@@ -314,7 +316,8 @@ func AppDirDeploy(path string) {
314316
deployElf(lib, appdir, err)
315317
patchRpathsInElf(appdir, libraryLocationsInAppDir, lib)
316318

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)) {
318321
fmt.Println("Patching Qt prefix path in " + lib)
319322
patchQtPrfxpath(appdir, lib, libraryLocationsInAppDir, ldLinux)
320323
}
@@ -1252,7 +1255,9 @@ func getCopyrightFile(path string) (string, error) {
12521255
}
12531256

12541257
// 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
12561261

12571262
if qtVersion >= 5 {
12581263

@@ -1265,7 +1270,7 @@ func handleQt(appdir helpers.AppDir, qtVersion int) {
12651270
os.Exit(1)
12661271
}
12671272

1268-
qtPrfxpath := getQtPrfxpath(library, qtVersion)
1273+
qtPrfxpath, qtPrefixPathRequiresPatch := getQtPrfxpath(library, qtVersion)
12691274

12701275
if qtPrfxpath == "" {
12711276
log.Println("Got empty qtPrfxpath, exiting")
@@ -1425,7 +1430,7 @@ func handleQt(appdir helpers.AppDir, qtVersion int) {
14251430
qmlImportScanners := helpers.FilesWithSuffixInDirectoryRecursive(qtPrfxpath, "qmlimportscanner")
14261431
if len(qmlImportScanners) < 1 {
14271432
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
14291434
} else {
14301435
log.Println("Found qmlimportscanner:", qmlImportScanners[0])
14311436
}
@@ -1486,9 +1491,11 @@ func handleQt(appdir helpers.AppDir, qtVersion int) {
14861491
}
14871492
}
14881493
}
1494+
1495+
return qtPrefixPathRequiresPatch
14891496
}
14901497

1491-
func getQtPrfxpath(library string, qtVersion int) string {
1498+
func getQtPrfxpath(library string, qtVersion int) (string, bool) {
14921499
// Some notes on Qt behavior:
14931500
// https://doc.qt.io/qt-5/qt-conf.html
14941501
// https://doc.qt.io/qt-6/qt-conf.html
@@ -1510,16 +1517,6 @@ func getQtPrfxpath(library string, qtVersion int) string {
15101517

15111518
// TODO IDEA: Use AppRun to generate qt.conf at application start?
15121519

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-
15231520
f, err := os.Open(library)
15241521
if err != nil {
15251522
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 {
15371534
f.Seek(offset, 0)
15381535
length := ScanFile(f, search)
15391536

1540-
var qt_prfxpath = ""
1537+
qt_prfxpath := ""
1538+
qtPrefixPathRequiresPatch := true
15411539

15421540
// When length is 0, Qt has been built as relocatable
15431541
if length == 0 {
1542+
qtPrefixPathRequiresPatch = false
15441543
// Directory should be in ../Qt${qtVersion}
15451544
// TODO: Check if this is true for relocatable binaries in Qt5
15461545
qt_prfxpath = filepath.Dir(library) + fmt.Sprintf("/../Qt%d", qtVersion)
@@ -1560,11 +1559,20 @@ func getQtPrfxpath(library string, qtVersion int) string {
15601559
qt_prfxpath = strings.TrimSpace(string(buf))
15611560
log.Println("qt_prfxpath:", qt_prfxpath)
15621561
if qt_prfxpath == "" {
1563-
log.Println("Could not get qt_prfxpath")
1564-
return ""
1562+
log.Println("Could not get qt_prfxpath from", library)
15651563
}
15661564
}
15671565

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+
15681576
// Special case:
15691577
// Some distributions, including Ubuntu and Alpine,
15701578
// 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 {
15861594
}
15871595
}
15881596

1589-
return qt_prfxpath
1597+
return qt_prfxpath, qtPrefixPathRequiresPatch
15901598
}
15911599

15921600
// ScanFile returns the offset of the first occurrence of a []byte in a file from the current position,

0 commit comments

Comments
 (0)