假设 GCC 和 G++安装后如何编译使用boost库的文件? (穿线)

发布于 2024-10-09 08:19:22 字数 133 浏览 2 评论 0原文

所以我对linux很陌生。我已经设置了 linux Debian,并且安装了 gcc。我有一个使用 boost 线程库的简单 C++ 文件。让我们将该文件称为 example.cpp,我们有它的确切路径。如何编译呢? (抱歉我来自windows世界=)

So I am new to linux stuff. I have set linux Debian up, I have gcc installed. I have a simple C++ file that uses boost threading library. Let us call that file example.cpp we have exect path to it. how to compile it? (sorry I came from windows world=)

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

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

发布评论

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

评论(1

旧故 2024-10-16 08:19:22

假设 example.cpp 位于当前目录中,这将创建一个名为 example 的可执行文件,链接到 boost-threadg++ 将在系统库位置中搜索该库。

g++ example.cpp -lboost-thread -o 示例

Assuming example.cpp is in the current directory, this will create an executable called example, linked against boost-thread. g++ will search the system library locations for the library.

g++ example.cpp -lboost-thread -o example

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