如何让 QtCreator 使用 gsl 库进行编译?

发布于 2024-08-14 11:38:51 字数 392 浏览 9 评论 0原文

我正在尝试使用 GNU 科学图书馆 (GSL) http://www.gnu.org/software QtCreator 中的 /gsl/。我如何告诉 Qt 创建者添加这些标志: http://www.gnu.org/software/gsl/manual/html_node/Linking-programs-with-the-library.html 正确链接?

I am trying to use the GNU Scientific Library (GSL) http://www.gnu.org/software/gsl/ in QtCreator. How can I tell Qt creator to add these flags: http://www.gnu.org/software/gsl/manual/html_node/Linking-programs-with-the-library.html to link correctly?

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

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

发布评论

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

评论(2

指尖凝香 2024-08-21 11:38:51

您需要编辑 .pro 文件并手动添加额外的库,例如:

LIBS += -L/usr/local/lib example.o -lgsl -lgslcblas -lm

请参阅 QMake 文档以获取更多信息。

You need to edit your .pro file and add the extra libs by hand, e.g.:

LIBS += -L/usr/local/lib example.o -lgsl -lgslcblas -lm

See the QMake documentation for more information.

关于从前 2024-08-21 11:38:51

编辑你的 .pro 文件和额外的库并包含在 Windows 中:

 `win32{ 
   INCLUDEPATH += C:/gsl-1.11/include/ 
   INCLUDEPATH += C:/gsl-1.11/lib  
   LIBS += -LC:/gsl-1.11/bin -llibgsl-0 -llibgslcblas-0  
   }`  

然后问题就解决了

Edit your .pro file and extra libs and include in windows:

 `win32{ 
   INCLUDEPATH += C:/gsl-1.11/include/ 
   INCLUDEPATH += C:/gsl-1.11/lib  
   LIBS += -LC:/gsl-1.11/bin -llibgsl-0 -llibgslcblas-0  
   }`  

then the problem is solved

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