dyld:未加载库:libqscintilla2.5.dylib

发布于 2024-09-30 12:20:21 字数 662 浏览 6 评论 0原文

我正在尝试在 MacOS X 上使用 QScintilla,我

LIBS += -lqscintilla2

在 .pro 中添加了这个非常简单的代码:(

#include <QApplication>
#include <Qsci/qsciscintilla.h> 

int main(int argc, char* argv[])
{
    QApplication app(argc, argv);

    QsciScintilla *qscintilla = new QsciScintilla;

    qscintilla->show();
    return app.exec();
}

我正在使用 QtCreator 顺便说一句)

这是错误:

dyld: Library not loaded: libqscintilla2.5.dylib
  Referenced from: /Users/lubethan/cxx-proj/NightPad/NightPad.app/Contents/MacOS/NightPad
  Reason: image not found
The program has unexpectedly finished.

I'm trying to use QScintilla on MacOS X, I added

LIBS += -lqscintilla2

in the .pro, with this quite simple code:

#include <QApplication>
#include <Qsci/qsciscintilla.h> 

int main(int argc, char* argv[])
{
    QApplication app(argc, argv);

    QsciScintilla *qscintilla = new QsciScintilla;

    qscintilla->show();
    return app.exec();
}

(Im using QtCreator btw)

Here is the error :

dyld: Library not loaded: libqscintilla2.5.dylib
  Referenced from: /Users/lubethan/cxx-proj/NightPad/NightPad.app/Contents/MacOS/NightPad
  Reason: image not found
The program has unexpectedly finished.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

习ぎ惯性依靠 2024-10-07 12:20:21

好吧,我将 .dylib 复制到 /etc/lib/ 中,它现在可以工作,但我想让该应用程序可分发......

Well I copied the .dylib into /etc/lib/, it works now, but I'd like to make the app distributable...

你丑哭了我 2024-10-07 12:20:21

您需要使用 otool 来查找依赖项。然后您可以使用 install_name_tool 将库的路径更改为相对路径。更多详细信息请参见此处。 http://blogs.oracle.com/dipol/entry/dynamic_libraries_rpath_and_mac

You need to use otool to find the dependencies. Then you can use install_name_tool to change the path of the library to a relative one. More details here. http://blogs.oracle.com/dipol/entry/dynamic_libraries_rpath_and_mac

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文