4

我正在使用Qt Creator 3.6.1with Qt 5.6.0 (Clang 7.0 (Apple), 64 bit),在尝试创建应用程序包进行部署时遇到了一些问题。

注意:应用名称被称为bibi

  1. Qt Creator文件夹bibi.app下成功生成build-bibi-Desktop_Qt_5_6_0_clang_64bit-Release/
  2. bibi.app未能在另一台 Mac 上成功链接 Qt
  3. macdeployqt不能解决问题

以下为详细内容:

bibi.app在另一台 Mac 上运行时的错误截图:

otool

> otool -L build-bibi-Desktop_Qt_5_6_0_clang_64bit-Release/bibi.app/Contents/MacOS/bibi
build-bibi-Desktop_Qt_5_6_0_clang_64bit-Release/bibi.app/Contents/MacOS/bibi:
    @rpath/QtWidgets.framework/Versions/5/QtWidgets (compatibility version 5.6.0, current version 5.6.0)
    @rpath/QtGui.framework/Versions/5/QtGui (compatibility version 5.6.0, current version 5.6.0)
    @rpath/QtCore.framework/Versions/5/QtCore (compatibility version 5.6.0, current version 5.6.0)
    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL (compatibility version 1.0.0, current version 1.0.0)
    /System/Library/Frameworks/AGL.framework/Versions/A/AGL (compatibility version 1.0.0, current version 1.0.0)
    /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 120.1.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1226.10.1)

macdeployqt

> which macdeployqt
/Users/<myusername>/Qt/5.6/clang_64/bin/macdeployqt
> macdeployqt bibi.app
> otool -L bibi.app/Contents/MacOS/bibi
bibi.app/Contents/MacOS/bibi:
    @rpath/QtWidgets.framework/Versions/5/QtWidgets (compatibility version 5.6.0, current version 5.6.0)
    @rpath/QtGui.framework/Versions/5/QtGui (compatibility version 5.6.0, current version 5.6.0)
    @rpath/QtCore.framework/Versions/5/QtCore (compatibility version 5.6.0, current version 5.6.0)
    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL (compatibility version 1.0.0, current version 1.0.0)
    /System/Library/Frameworks/AGL.framework/Versions/A/AGL (compatibility version 1.0.0, current version 1.0.0)
    /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 120.1.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1226.10.1)

树比比.app

bibi.app
├── Contents
│   ├── Frameworks
│   │   ├── QtCore.framework
│   │   │   ├── QtCore -> Versions/Current/QtCore
│   │   │   ├── Resources -> Versions/Current/Resources
│   │   │   └── Versions
│   │   │       ├── 5
│   │   │       │   ├── QtCore
│   │   │       │   └── Resources
│   │   │       │       └── Info.plist
│   │   │       └── Current -> 5
│   │   ├── QtDBus.framework
│   │   │   ├── QtDBus -> Versions/Current/QtDBus
│   │   │   ├── Resources -> Versions/Current/Resources
│   │   │   └── Versions
│   │   │       ├── 5
│   │   │       │   ├── QtDBus
│   │   │       │   └── Resources
│   │   │       │       └── Info.plist
│   │   │       └── Current -> 5
│   │   ├── QtGui.framework
│   │   │   ├── QtGui -> Versions/Current/QtGui
│   │   │   ├── Resources -> Versions/Current/Resources
│   │   │   └── Versions
│   │   │       ├── 5
│   │   │       │   ├── QtGui
│   │   │       │   └── Resources
│   │   │       │       └── Info.plist
│   │   │       └── Current -> 5
│   │   ├── QtPrintSupport.framework
│   │   │   ├── QtPrintSupport -> Versions/Current/QtPrintSupport
│   │   │   ├── Resources -> Versions/Current/Resources
│   │   │   └── Versions
│   │   │       ├── 5
│   │   │       │   ├── QtPrintSupport
│   │   │       │   └── Resources
│   │   │       │       └── Info.plist
│   │   │       └── Current -> 5
│   │   └── QtWidgets.framework
│   │       ├── QtWidgets -> Versions/Current/QtWidgets
│   │       ├── Resources -> Versions/Current/Resources
│   │       └── Versions
│   │           ├── 5
│   │           │   ├── QtWidgets
│   │           │   └── Resources
│   │           │       └── Info.plist
│   │           └── Current -> 5
│   ├── Info.plist
│   ├── MacOS
│   │   └── bibi
│   ├── PkgInfo
│   ├── PlugIns
│   │   ├── imageformats
│   │   │   ├── libqdds.dylib
│   │   │   ├── libqgif.dylib
│   │   │   ├── libqicns.dylib
│   │   │   ├── libqico.dylib
│   │   │   ├── libqjpeg.dylib
│   │   │   ├── libqtga.dylib
│   │   │   ├── libqtiff.dylib
│   │   │   ├── libqwbmp.dylib
│   │   │   └── libqwebp.dylib
│   │   ├── platforms
│   │   │   └── libqcocoa.dylib
│   │   └── printsupport
│   │       └── libcocoaprintersupport.dylib
│   └── Resources
│       ├── empty.lproj
│       └── qt.conf
└── Icon\r

38 directories, 32 files

谢谢。

问题解决了

谢谢scott,问题解决了。以下是我未能成功创建自包含应用程序包的原因:

  • otool -L没有解决@rpath,我很困惑,因为它总是返回相同的输出
  • 缺乏测试捆绑包是否已经包含所有框架的方法

简而言之,可以通过使用 Scott 的otool-rpath,lsof或设置DYLD_PRINT_LIBRARIESand来解决问题DYLD_PRINT_TO_FILE。而且,我在这里写了一个带有详细信息的注释。

4

1 回答 1

7

假设您使用qt-unified-max-x64-online.dmg安装程序并将 Qt 安装到$HOME/Qt. 您可以使用以下方式构建项目:

cd MY-QT-PROJECT
QT_BIN_DIR=$HOME/Qt/5.6/clang_64/bin
make clean
$QT_BIN_DIR/qmake -config release
make -j$(getconf NPROCESSORS_ONLN)

这会创建一个应用程序包,但它不会在普通用户的机器上运行。

查看包中隐藏的 Mach-O 可执行文件中的 RPATH:

otool-rpath ./*.app/Contents/MacOS/*
/Users/user/Qt/5.6/clang_64/lib

我正在使用我自己在这里编写的一个小型otool-rpath脚本,用于说明目的。

RPATH 加上上面输出中列出的安装名称otool -L使动态链接器 . dyld,在 .下查找 Qt 框架/Users/user/Qt/5.6/clang_64/lib。因此,它不适用于未在同一位置安装 Qt 的用户。

要改变它,运行 Qt 的macdeployqt工具:

$QT_BIN_DIR/macdeployqt ./*.app -verbose=3 -always-overwrite -appstore-compliant

在此处查看示例macdeployqt日志。

macdeployqt创建自包含的应用程序包。观察可执行文件中的 RPATH 如何从/Users/user/Qt/5.6/clang_64/lib变为@executable_path/../Frameworks

otool-rpath ./*.app/Contents/MacOS/*
@executable_path/../Frameworks

@executable_path做显而易见的事情,并在运行时扩展dyld至。bibi.app/Contents/MacOS可执行文件中的 RPATH 和安装名称一起使捆绑包内的动态链接在运行时工作。

延伸阅读

参考

关键字:“ RPATH ”、“安装名称”、“ Mach-O 动态链接”。

请注意, ELF 中的RPATH具有微妙的不同语义。

于 2016-05-04T13:18:04.960 回答