Opened 10 years ago
#7858 new Bugs
boost should not blindly assume that MinGW installation is in c:\ directory
Reported by: | anonymous | Owned by: | |
---|---|---|---|
Milestone: | To Be Determined | Component: | Building Boost |
Version: | Boost 1.52.0 | Severity: | Problem |
Keywords: | Cc: |
Description
instead it should search the directory in which main boost dir lies and then if not found should withdraw to defauld directory
so in file : boost\tools\build\v2\engine\build.bat
if EXIST "C:\MinGW\bin\gcc.exe" ( set "BOOST_JAM_TOOLSET=mingw" set "BOOST_JAM_TOOLSET_ROOT=C:\MinGW\" goto :eof) call :Clear_Error
</pre> }}}
should instead be:
if EXIST "..\MinGW\bin\gcc.exe" ( set "BOOST_JAM_TOOLSET=mingw" set "BOOST_JAM_TOOLSET_ROOT=..\MinGW\" goto :eof) call :Clear_Error
to catch that mingw installation which lies along with boost in the same parent directory. This is needed in case both of them are run from removable drive or there are different pairs of boost and mingw for testing.
Note:
See TracTickets
for help on using tickets.