Index: tools/build/v2/engine/build.jam =================================================================== --- tools/build/v2/engine/build.jam (revision 79027) +++ tools/build/v2/engine/build.jam (working copy) @@ -222,7 +222,7 @@ -I$(--python-include) -I$(--extra-include) : -L$(--python-lib[1]) -l$(--python-lib[2]) ; ## Intel C/C++ for Darwin -toolset intel-darwin icc : "-o " : -D +toolset intel-darwin icc : "-dev-usr-root=`xcode-select -print-path`/usr -o " : -D : [ opt --release : -O3 ] [ opt --debug : -g -O0 -p ] Index: tools/build/v2/engine/build.sh =================================================================== --- tools/build/v2/engine/build.sh (revision 79027) +++ tools/build/v2/engine/build.sh (working copy) @@ -137,7 +137,7 @@ ;; intel-darwin) - BOOST_JAM_CC=icc + BOOST_JAM_CC="icc -dev-usr-root=`xcode-select -print-path`/usr" ;; intel-linux) Index: tools/build/v2/tools/intel-darwin.jam =================================================================== --- tools/build/v2/tools/intel-darwin.jam (revision 79027) +++ tools/build/v2/tools/intel-darwin.jam (working copy) @@ -146,12 +146,12 @@ actions compile.c { - "$(CONFIG_COMMAND)" -xc $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)" + "$(CONFIG_COMMAND)" -dev-usr-root=`xcode-select -print-path`/usr -xc $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)" } actions compile.c++ { - "$(CONFIG_COMMAND)" -xc++ $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)" + "$(CONFIG_COMMAND)" -dev-usr-root=`xcode-select -print-path`/usr -xc++ $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)" } flags intel-darwin ARFLAGS ;