ホームページ  >  記事  >  バックエンド開発  >  Windows に Boost 1.60.0 をインストールするにはどうすればよいですか?

Windows に Boost 1.60.0 をインストールするにはどうすればよいですか?

Mary-Kate Olsen
Mary-Kate Olsenオリジナル
2024-11-04 09:17:30189ブラウズ

How to Install Boost 1.60.0 on Windows?

Windows への Boost 1.60.0 .zip のインストール

Windows 7 用の Boost 1.60.0 が正常にダウンロードされ、必要な実行可能ファイルがビルドされました。インストールをさらに進めるには:

1. BOOST_ROOT 環境変数を設定します:

Boost ユーザー ガイドで推奨されているように、BOOST_ROOT という名前の環境変数を作成し、その値を Boost ディレクトリの場所に設定します。

2 。ビルド ブースト ライブラリ:

Visual Studio 2015 (静的ライブラリ):

cd boost_1_xx_0
call bootstrap.bat
b2 -j8 toolset=msvc-14.0 address-model=64 architecture=x86 link=static threading=multi runtime-link=shared --build-type=complete stage
2>&1 | tee msvc_static_build.txt

Visual Studio 2015 (動的スレッド ライブラリ):

b2 -j8 toolset=msvc-14.0 address-model=64 architecture=x86 link=shared threading=multi runtime-link=shared --with-thread --build-type=minimal stage
2>&1 | tee msvc_thread_build.txt

Visual Studio 2015 (すべての動的ライブラリ):

b2 -j8 toolset=msvc-14.0 address-model=64 architecture=x86 link=shared threading=multi runtime-link=shared --build-type=complete stage
2>&1 | tee msvc_dynamic_build.txt

MinGW (共有ライブラリ):

cd boost_1_xx_0
bootstrap.bat mingw

b2 toolset=gcc link=shared threading=multi --build-type=complete stage
2>&1 | tee mingw_build.txt

ビルド プロセスが完了すると、Windows マシンに Boost 1.60.0 が正常にインストールされます。

以上がWindows に Boost 1.60.0 をインストールするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。