|
Boost-Build : |
Subject: Re: [Boost-build] [build] error... configure-really
From: Andy Schweitzer (a.schweitzer.grps_at_[hidden])
Date: 2009-05-24 16:13:14
Vladimir Prus wrote:
>
> The same command in the same directory? The error basically means that:
> 1. Boost.Build could not find the compiler at the location you provided
> 2. It failed to report that politely.
>
> The issue (2) is fixed in SVN HEAD, but I don't see what can cause (1) to
> happen at random -- except a failing hard drive. Can you run with
> --debug-configuration option and post the output?
>
command line is:
bjam link=static ^
--with-system ^
toolset=msvc-8.0~wm5~slport5.2 ^
stdlib=stlport ^
--debug-configuration > bjam.txt
attached is user-config.jam, output in the file bjam.txt and evc8.bat,
which user-config.jam calls with a <setup> parameter, in case that is
useful.
> - Volodya
> _______________________________________________
> Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
>
# Copyright 2003, 2005 Douglas Gregor
# Copyright 2004 John Maddock
# Copyright 2002, 2003, 2004, 2007 Vladimir Prus
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
# This file is used to configure your Boost.Build installation. You can modify
# this file in place, or you can place it in a permanent location so that it
# does not get overwritten should you get a new version of Boost.Build. See:
#
# http://boost.org/boost-build2/doc/html/bbv2/reference.html#bbv2.reference.init
#
# for documentation about possible permanent locations.
# This file specifies which toolsets (C++ compilers), libraries, and other
# tools are available. Often, you should be able to just uncomment existing
# example lines and adjust them to taste. The complete list of supported tools,
# and configuration instructions can be found at:
#
# http://boost.org/boost-build2/doc/html/bbv2/reference/tools.html
#
# This file uses Jam language syntax to describe available tools. Mostly,
# there are 'using' lines, that contain the name of the used tools, and
# parameters to pass to those tools -- where paremeters are separated by
# semicolons. Important syntax notes:
#
# - Both ':' and ';' must be separated from other tokens by whitespace
# - The '\' symbol is a quote character, so when specifying Windows paths you
# should use '/' or '\\' instead.
#
# More details about the syntax can be found at:
#
# http://boost.org/boost-build2/doc/html/bbv2/advanced.html#bbv2.advanced.jam_language
#
# ------------------
# GCC configuration.
# ------------------
# Configure gcc (default version).
# using gcc ;
# Configure specific gcc version, giving alternative name to use.
# using gcc : 3.2 : g++-3.2 ;
# -------------------
# MSVC configuration.
# -------------------
# Configure msvc (default version, searched for in standard locations and PATH).
# using msvc ;
# Configure specific msvc version (searched for in standard locations and PATH).
# using msvc : 8.0 ;
# ----------------------
# Borland configuration.
# ----------------------
# using borland ;
# ----------------------
# STLPort configuration.
# ----------------------
# Configure specifying location of STLPort headers. Libraries must be either
# not needed or available to the compiler by default.
# using stlport : : /usr/include/stlport ;
# Configure specifying location of both headers and libraries explicitly.
# using stlport : : /usr/include/stlport /usr/lib ;
using stlport : 5.2.1 : "C:/nan/stl/STLport-5.2.1" : "C:/nan/stl/STLport-5.2.1/lib/vc9" ;
# -----------------
# QT configuration.
# -----------------
# Configure assuming QTDIR gives the installation prefix.
# using qt ;
# Configure with an explicit installation prefix.
# using qt : /usr/opt/qt ;
using msvc : 8.0~stlport5.2 :
"C:/Program Files/Microsoft Visual Studio 8/VC/bin/cl.exe" :
<compileflags>-D_CRT_SECURE_NO_WARNINGS
<compileflags>-DBOOST_PROTO_MAX_ARITY=10
<compileflags>-DBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
<compileflags>-DBOOST_MPL_LIMIT_METAFUNCTION_ARITY=10
<setup>"C:/nan/stl/STLport-5.2.1/evc8.bat"
;
using msvc : 8.0~wm5~stlport5.2 :
"C:/Program Files/Microsoft Visual Studio 8/VC/bin/cl.exe" :
<compileflags>-D_CRT_SECURE_NO_WARNINGS
<compileflags>-DBOOST_PROTO_MAX_ARITY=10
<compileflags>-DBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
<compileflags>-DBOOST_MPL_LIMIT_METAFUNCTION_ARITY=10
<compileflags>-D_WIN32_WCE=0x501
<compileflags>-DUNDER_CE
#removed
#<compileflags>-DWIN32_WCE_PSPC
<compileflags>-DWINCE
<compileflags>-DARM
<compileflags>-D_ARM_
<compileflags>-D_UNICODE
<compileflags>-DUNICODE
<compileflags>-DARMV4I
#added
<compileflags>-I"C:/nan/stl/STLPort-5.2.1/stlport"
<compileflags>-D_LITTLE_ENDIAN
<linkflags>/subsystem:windowsce,5.01
<linkflags>/machine:THUMB
<linkflags>/NODEFAULTLIB:oldnames.lib
<linkflags>/NODEFAULTLIB:libc.lib
<linkflags>/STACK:262144,4096
<linkflags>coredll.lib
<linkflags>corelibc.lib
<linkflags>ole32.lib
<linkflags>oleaut32.lib
<linkflags>uuid.lib
<linkflags>commctrl.lib
<setup>"C:/nan/stl/STLport-5.2.1/evc8.bat"
;
using stlport : 5.2~evc8~arm :
C:/nan/stl/STLport-5.2.1/stlport :
C:/nan/stl/STLport-5.2.1/lib/evc8-arm ;
using stlport : 5.2~vc8~arm :
C:/nan/stl/STLport-5.2.1/stlport :
C:/nan/stl/STLport-5.2.1/lib/evc8-arm ;
using msvc : 9.0~stlport5.2 :
"C:/Program Files/Microsoft Visual Studio 9.0/VC/bin/cl.exe" :
<compileflags>-D_CRT_SECURE_NO_WARNINGS
<compileflags>-DBOOST_PROTO_MAX_ARITY=10
<compileflags>-DBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
<compileflags>-DBOOST_MPL_LIMIT_METAFUNCTION_ARITY=10
<setup>"C:/nan/stl/STLport-5.2.1/evc9.bat"
;
using msvc : 9.0~wm5~stlport5.2 :
"C:/Program Files/Microsoft Visual Studio 9.0/VC/bin/cl.exe" :
<compileflags>-D_CRT_SECURE_NO_WARNINGS
<compileflags>-DBOOST_PROTO_MAX_ARITY=10
<compileflags>-DBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
<compileflags>-DBOOST_MPL_LIMIT_METAFUNCTION_ARITY=10
<compileflags>-D_WIN32_WCE=0x501
<compileflags>-DUNDER_CE
#removed
#<compileflags>-DWIN32_WCE_PSPC
<compileflags>-DWINCE
<compileflags>-DARM
<compileflags>-D_ARM_
<compileflags>-D_UNICODE
<compileflags>-DUNICODE
<compileflags>-DARMV4I
#added
<compileflags>-I"C:/nan/stl/STLPort-5.2.1/stlport"
<compileflags>-D_LITTLE_ENDIAN
<linkflags>/subsystem:windowsce,5.01
<linkflags>/machine:THUMB
<linkflags>/NODEFAULTLIB:oldnames.lib
<linkflags>/NODEFAULTLIB:libc.lib
<linkflags>/STACK:262144,4096
<linkflags>coredll.lib
<linkflags>corelibc.lib
<linkflags>ole32.lib
<linkflags>oleaut32.lib
<linkflags>uuid.lib
<linkflags>commctrl.lib
<setup>"C:/nan/stl/STLport-5.2.1/evc9.bat"
;
using stlport : 5.2~evc9~arm :
C:/nan/stl/STLport-5.2.1/stlport :
C:/nan/stl/STLport-5.2.1/lib/evc9-arm ;
using stlport : 5.2~vc9~arm :
C:/nan/stl/STLport-5.2.1/stlport :
C:/nan/stl/STLport-5.2.1/lib/evc9-arm ;
notice: found boost-build.jam at C:/nan/boost/svnTrunk/boost-build.jam
notice: loading Boost.Build from C:/nan/boost/svnTrunk/tools/build/v2
notice: Searching C:\WINDOWS C:\Documents and Settings\Andrew C:\Documents and Settings\Andrew C:\nan\boost\svnTrunk\tools/build/v2 C:/nan/boost/svnTrunk/tools/build/v2/kernel C:/nan/boost/svnTrunk/tools/build/v2/util C:/nan/boost/svnTrunk/tools/build/v2/build C:/nan/boost/svnTrunk/tools/build/v2/tools C:/nan/boost/svnTrunk/tools/build/v2/contrib C:/nan/boost/svnTrunk/tools/build/v2/. for site-config configuration file site-config.jam .
notice: Loading site-config configuration file site-config.jam from C:/nan/boost/svnTrunk/tools/build/v2/site-config.jam .
notice: Searching C:\Documents and Settings\Andrew C:\Documents and Settings\Andrew C:\nan\boost\svnTrunk\tools/build/v2 C:/nan/boost/svnTrunk/tools/build/v2/kernel C:/nan/boost/svnTrunk/tools/build/v2/util C:/nan/boost/svnTrunk/tools/build/v2/build C:/nan/boost/svnTrunk/tools/build/v2/tools C:/nan/boost/svnTrunk/tools/build/v2/contrib C:/nan/boost/svnTrunk/tools/build/v2/. for user-config configuration file user-config.jam .
notice: Loading user-config configuration file user-config.jam from C:/nan/boost/svnTrunk/tools/build/v2/user-config.jam .
notice: [msvc-cfg] msvc-9.0 detected, command: 'c:\Program Files\Microsoft Visual Studio 9.0\VC\bin\cl.exe'
notice: [msvc-cfg] msvc-8.0 detected, command: 'C:\Program Files\Microsoft Visual Studio 8\VC\bin\cl.exe'
notice: will use 'C:/Program Files/Microsoft Visual Studio 8/VC/bin/cl.exe' for msvc, condition <toolset>msvc-8.0~stlport5.2
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~stlport5.2/<architecture>/<address-model>', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~stlport5.2/<architecture>/<address-model>32', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~stlport5.2/<architecture>x86/<address-model>', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~stlport5.2/<architecture>x86/<address-model>32', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~stlport5.2/<architecture>/<address-model>64', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86_amd64 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~stlport5.2/<architecture>x86/<address-model>64', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86_amd64 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~stlport5.2/<architecture>ia64/<address-model>', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86_ia64 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~stlport5.2/<architecture>ia64/<address-model>64', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86_ia64 >nul
'
notice: will use 'C:/Program Files/Microsoft Visual Studio 8/VC/bin/cl.exe' for msvc, condition <toolset>msvc-8.0~wm5~stlport5.2
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~stlport5.2/<architecture>/<address-model>', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~stlport5.2/<architecture>/<address-model>32', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~stlport5.2/<architecture>x86/<address-model>', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~stlport5.2/<architecture>x86/<address-model>32', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~stlport5.2/<architecture>/<address-model>64', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86_amd64 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~stlport5.2/<architecture>x86/<address-model>64', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86_amd64 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~stlport5.2/<architecture>ia64/<address-model>', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86_ia64 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~stlport5.2/<architecture>ia64/<address-model>64', setup: 'call "C:/nan/stl/STLport-5.2.1/evc8.bat" x86_ia64 >nul
'
notice: will use 'C:/Program Files/Microsoft Visual Studio 9.0/VC/bin/cl.exe' for msvc, condition <toolset>msvc-9.0~stlport5.2
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~stlport5.2/<architecture>/<address-model>', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~stlport5.2/<architecture>/<address-model>32', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~stlport5.2/<architecture>x86/<address-model>', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~stlport5.2/<architecture>x86/<address-model>32', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~stlport5.2/<architecture>/<address-model>64', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86_amd64 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~stlport5.2/<architecture>x86/<address-model>64', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86_amd64 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~stlport5.2/<architecture>ia64/<address-model>', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86_ia64 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~stlport5.2/<architecture>ia64/<address-model>64', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86_ia64 >nul
'
notice: will use 'C:/Program Files/Microsoft Visual Studio 9.0/VC/bin/cl.exe' for msvc, condition <toolset>msvc-9.0~wm5~stlport5.2
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~wm5~stlport5.2/<architecture>/<address-model>', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~wm5~stlport5.2/<architecture>/<address-model>32', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~wm5~stlport5.2/<architecture>x86/<address-model>', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~wm5~stlport5.2/<architecture>x86/<address-model>32', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~wm5~stlport5.2/<architecture>/<address-model>64', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86_amd64 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~wm5~stlport5.2/<architecture>x86/<address-model>64', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86_amd64 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~wm5~stlport5.2/<architecture>ia64/<address-model>', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86_ia64 >nul
'
notice: [msvc-cfg] condition: '<toolset>msvc-9.0~wm5~stlport5.2/<architecture>ia64/<address-model>64', setup: 'call "C:/nan/stl/STLport-5.2.1/evc9.bat" x86_ia64 >nul
'
notice: [cmdline-cfg] Detected command-line request for msvc-8.0~wm5~slport5.2: toolset= msvc version= 8.0~wm5~slport5.2
notice: [cmdline-cfg] toolset msvc-8.0~wm5~slport5.2 not previously configured; attempting to auto-configure now
warning: toolset msvc initialization: can not find tool cl.exe
warning: initialized from
notice: will use 'cl.exe' for msvc, condition <toolset>msvc-8.0~wm5~slport5.2
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~slport5.2/<architecture>/<address-model>', setup: ''
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~slport5.2/<architecture>/<address-model>32', setup: ''
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~slport5.2/<architecture>x86/<address-model>', setup: ''
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~slport5.2/<architecture>x86/<address-model>32', setup: ''
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~slport5.2/<architecture>/<address-model>64', setup: ''
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~slport5.2/<architecture>x86/<address-model>64', setup: ''
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~slport5.2/<architecture>ia64/<address-model>', setup: ''
notice: [msvc-cfg] condition: '<toolset>msvc-8.0~wm5~slport5.2/<architecture>ia64/<address-model>64', setup: ''
notice: iostreams: not using zlib compression
notice: iostreams: not using zlib compression
notice: iostreams: not using bzip2 compression
notice: iostreams: not using bzip2 compression
notice: [python-cfg] Configuring python...
notice: [python-cfg] Registry indicates Python 2.5 installed at "C:\programs\Python25\"
notice: [python-cfg] Checking interpreter command "python"...
notice: [python-cfg] running command '"python" -c "from sys import *; print 'version=%d.%d\nplatform=%s\nprefix=%s\nexec_prefix=%s\nexecutable=%s' % (version_info[0],version_info[1],platform,prefix,exec_prefix,executable)" 2>&1'
notice: [python-cfg] ...requested configuration matched!
notice: [python-cfg] Details of this Python configuration:
notice: [python-cfg] interpreter command: "python"
notice: [python-cfg] include path: "C:\programs\Python25\Include"
notice: [python-cfg] library path: "C:\programs\Python25\libs"
notice: [python-cfg] DLL search path: "C:\programs\Python25"
Building C++ Boost.
After the build, the headers will be located at
C:\nan\boost\svnTrunk
The libraries will be located at
C:\nan\boost\svnTrunk\stage\lib
Use 'bjam install --prefix=<path>' if you wish to install headers and
libraries to a different location and remove the source tree.
...found 82 targets...
...updating 8 targets...
compile-c-c++ bin.v2\libs\system\build\msvc-8.0~wm5~slport5.2\debug\link-static\stdlib-stlport-5.2.1\threading-multi\error_code.obj
'cl' is not recognized as an internal or external command,
operable program or batch file.
cl /Zm800 -nologo @"bin.v2\libs\system\build\msvc-8.0~wm5~slport5.2\debug\link-static\stdlib-stlport-5.2.1\threading-multi\error_code.obj.rsp"
...failed compile-c-c++ bin.v2\libs\system\build\msvc-8.0~wm5~slport5.2\debug\link-static\stdlib-stlport-5.2.1\threading-multi\error_code.obj...
...skipped <pbin.v2\libs\system\build\msvc-8.0~wm5~slport5.2\debug\link-static\stdlib-stlport-5.2.1\threading-multi>libboost_system-vc80-mt-gdp-1_40.lib for lack of <pbin.v2\libs\system\build\msvc-8.0~wm5~slport5.2\debug\link-static\stdlib-stlport-5.2.1\threading-multi>error_code.obj...
...skipped <pstage\lib>libboost_system-vc80-mt-gdp-1_40.lib for lack of <pbin.v2\libs\system\build\msvc-8.0~wm5~slport5.2\debug\link-static\stdlib-stlport-5.2.1\threading-multi>libboost_system-vc80-mt-gdp-1_40.lib...
...skipped <pstage\lib>libboost_system-vc80-mt-gdp.lib for lack of <pstage\lib>libboost_system-vc80-mt-gdp-1_40.lib...
compile-c-c++ bin.v2\libs\system\build\msvc-8.0~wm5~slport5.2\release\link-static\stdlib-stlport-5.2.1\threading-multi\error_code.obj
'cl' is not recognized as an internal or external command,
operable program or batch file.
cl /Zm800 -nologo @"bin.v2\libs\system\build\msvc-8.0~wm5~slport5.2\release\link-static\stdlib-stlport-5.2.1\threading-multi\error_code.obj.rsp"
..failed compile-c-c++ bin.v2\libs\system\build\msvc-8.0~wm5~slport5.2\release\link-static\stdlib-stlport-5.2.1\threading-multi\error_code.obj...
...skipped <pbin.v2\libs\system\build\msvc-8.0~wm5~slport5.2\release\link-static\stdlib-stlport-5.2.1\threading-multi>libboost_system-vc80-mt-p-1_40.lib for lack of <pbin.v2\libs\system\build\msvc-8.0~wm5~slport5.2\release\link-static\stdlib-stlport-5.2.1\threading-multi>error_code.obj...
...skipped <pstage\lib>libboost_system-vc80-mt-p-1_40.lib for lack of <pbin.v2\libs\system\build\msvc-8.0~wm5~slport5.2\release\link-static\stdlib-stlport-5.2.1\threading-multi>libboost_system-vc80-mt-p-1_40.lib...
...skipped <pstage\lib>libboost_system-vc80-mt-p.lib for lack of <pstage\lib>libboost_system-vc80-mt-p-1_40.lib...
...failed updating 2 targets...
...skipped 6 targets...
set OSVERSION=WCE500
set PLATFORM=STANDARDSDK_500
set SDKROOT=C:\Program Files\Windows CE Tools
call "C:\Program Files\Microsoft Visual Studio 8\VC\vcvarsall.bat"
set PATH="C:\Program Files\Microsoft Visual Studio 8\Common7\IDE";%PATH%
set PATH="C:\Program Files\Microsoft Visual Studio 8\VC\bin";%PATH%
set PATH="C:\Program Files\Microsoft Visual Studio 8\VC\ce\bin\x86_arm";%PATH%
set PATH="C:\Program Files\Microsoft Visual Studio 8\VC\ce\bin";%PATH%
set INCLUDE="C:\Program Files\Windows CE Tools\WCE500\STANDARDSDK_500\ATL\include";%INCLUDE%
set INCLUDE="C:\Program Files\Windows CE Tools\WCE500\STANDARDSDK_500\MFC\include";%INCLUDE%
set INCLUDE="C:\Program Files\Windows CE Tools\WCE500\STANDARDSDK_500\include\ARMV4I";%INCLUDE%
set LIB="C:\Program Files\Microsoft Visual Studio 8\VC\ce\lib\armv4i";%LIB%
set LIB="C:\Program Files\Windows CE Tools\WCE500\STANDARDSDK_500\\ATL\lib\ARMV4I";%LIB%
set LIB="C:\Program Files\Windows CE Tools\WCE500\STANDARDSDK_500\\MFC\lib\ARMV4I";%LIB%
set LIB="C:\Program Files\Windows CE Tools\WCE500\STANDARDSDK_500\lib\ARMV4I";%LIB%
set CC=cl.exe
set TARGETCPU=ARMV4I
set CFG=none
set > evc8set.txt
Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk