Hey all,

I've been trying to build all Boost libraries with mingw-w64 on Windows 8 but some fail. I'm trying to build a 32bit windows release build.

The following errors are an excerpt of all the build errors:

>d:\win-builds-32\i686-w64-mingw32\include\dvec.h: In function 'F64vec2 IntToF64vec2(const >F64vec2&, int)':
>d:\win-builds-32\i686-w64-mingw32\include\dvec.h:840:80: error: '_mm_cvtsi32_sd' was not declared in this scope
> inline F64vec2 IntToF64vec2(const F64vec2 &a,int b) { return _mm_cvtsi32_sd(a,b
>); }
>
>^
>In file included from ./boost/system/system_error.hpp:14:0,
>                 from ./boost/thread/exceptions.hpp:22,

The build is invoked with:
>set PATH=%MINGW_HOME%\bin;%WINDDK_HOME%\7600.16385.1\bin\x86
>bjam toolset=gcc variant=release threading=multi link=static address-model=32

Does anyone understand why these errors are given? Am I missing some configuration?