我正在尝试在Windows 8计算机上安装代码::块上的boost。由于我正在使用的库,我使用mingw作为我的编译器。更改/设置MINGWDIR环境变量究竟做了什么以及这如何帮助我安装boost?
答案 0 :(得分:1)
许多安装程序使用此变量快速准确地查看存在特定环境的位置。
例如:
使用您自己的配置批处理文件更容易。 同时安装Boost寻找“MINGWDIR”。
以下是通用示例。(与boost无关)。
@echo off
if [%MINGWDIR%] == [] goto environment_not_set
goto start_develop
:environment_not_set
echo
#############################################################################
echo Please adjust environment variables within this file:
set MINGWDIR=c:\mingw
echo
#############################################################################
rem instead of setting MINGWDIR here you could also set them
rem within the registry using the system control
:start_develop
set PATH=%MINGWDIR%\bin;c:\windows;
echo MINGWDIR = %MINGWDIR%
:end
pause