找不到-lpthread

发布于 2024-11-26 13:43:30 字数 308 浏览 1 评论 0原文

我正在尝试交叉编译 samba 服务器。

./config 工作得很好,但是当我想用 make 构建时,提示说:

Linking shared library bin/libsmbclient.so.0
/opt/qnx630/host/linux/x86/usr/bin/ntoarm-ld: cannot find -lpthread
collect2: ld returned 1 exit status
make: *** [bin/libsmbclient.so.0] Error 1

有人知道解决方案吗?

I am trying to cross compile samba server.

./config works just fine, but when I want to build with make the prompt says:

Linking shared library bin/libsmbclient.so.0
/opt/qnx630/host/linux/x86/usr/bin/ntoarm-ld: cannot find -lpthread
collect2: ld returned 1 exit status
make: *** [bin/libsmbclient.so.0] Error 1

Anyone knows a solution?

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

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

发布评论

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

评论(2

过潦 2024-12-03 13:43:30

w/mingw 也有同样的问题。从 ftp://sourceware.org/pub/pthreads 获取 libpthreadGC2.a -win32/dll-latest/lib/x86/,放入C;\mingw\lib并重命名为libpthread.a。我不知道 gcc 的 -l 开关意味着“将 'lib' 添加到前面,将 '.a' 添加到后面”,例如 -lpthread = libpthread.a

had this same problem w/mingw. got libpthreadGC2.a from ftp://sourceware.org/pub/pthreads-win32/dll-latest/lib/x86/, put it in C;\mingw\lib and renamed it to libpthread.a. i didn't know gcc's -l switch means "apprend 'lib' to the front and '.a' to the back" e.g. -lpthread = libpthread.a

故事与诗 2024-12-03 13:43:30

确保 pthread 库位于链接器的库搜索路径中。

Make sure that the pthread library is in the library search path of the linker.

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