在 Visual C 中安装 Boost 库2008年

发布于 2024-09-15 09:46:15 字数 103 浏览 4 评论 0原文

我已经下载了 Visual C++ 2008,并且还拥有 Boost 库,版本 1.44.0。如何在 C++ 中安装 Boost 库?

我还有 Visual C++ 2010。

I have downloaded Visual C++ 2008 and I also have the Boost library, v. 1.44.0. How to can the Boost library be installed in C++?

I also have Visual C++ 2010.

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

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

发布评论

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

评论(1

↙温凉少女 2024-09-22 09:46:15

您不必在 Visual Studio 中“安装”Boost。您需要的是将您的 IDE(在本例中为 Visual Studio)指向包含 Boost 标头和 lib 文件的文件夹(如果您已构建 Boost - 有些 Boost 库仅包含标头,有些则需要构建)。看看 Boost 入门 了解更多详细信息。

快速启动:

  • 启动命令提示符并转到解压 boost 的文件夹
  • 执行 bootstrap.bat
  • 执行“.\bjam --build-type=complete stage” - 这将构建 Boost 中的几乎所有内容。

注意:请确保环境变量 PATH 中有 VC++ 编译器和链接器。

You don't have to "install" Boost in Visual Studio. What you need is to point your IDE (in this case Visual Studio) to the folders which contain the Boost headers and the lib files (if you have built Boost - some Boost libraries are header-only, some need to be built). Take a look at Boost Getting Started for further details.

Quick start:

  • start your command prompt and go to the folder in which you have unzipped boost
  • execute bootstrap.bat
  • execute ".\bjam --build-type=complete stage" - this will build almost everything in Boost.

Note: make sure you have the VC++ compiler and linker in the environment variable PATH.

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