Monday, July 16, 2007

Building Boost with MS Platform SDK AMD64 Cross-compiler

This post has been pretty hastily put together. I intend to change this over time and document how I built Boost libraries from source using the Microsoft Platform SDK 2003, for the x64 platform (AMD64 / EM64T).

1. Boost 1.31 - had to choose this rather older release because of certain constraints that our product has.

2. Microsoft Platform SDK 2003 R1. (Installed at "C:\Program Files\Microsoft Platform SDK") - no Visual Studio installation exists.

3. Using Boost.Build V1 rather than 2. Here is a mssdk-amd64-tools.jam file I created using the msvc-tools.jam at the following location under the Boost source dir:

boost_1_31_0\tools\build\v1

--- begin file



# Microsoft Platform SDK


# (C) Copyright David Abrahams 2001. Permission to copy, use,
# modify, sell and distribute this software is granted provided this
# copyright notice appears in all copies. This software is provided
# "as is" without express or implied warranty, and with no claim as
# to its suitability for any purpose.

# The following #// line will be used by the regression test table generation
# program as the column heading for HTML tables. Must not include version number.
#//Micro-
soft
VC++



# singleton variables...
set-as-singleton TARGETOS APPVER MSSdk VISUALC MSSDK_ROOT VC_TOOL_PATH VC_SETUP ;


# Get these variable set on the targets so that we can re-use the
# build actions for other toolsets using this one as a base.
flags mssdk VC_TOOL_PATH ;
flags mssdk VC_SETUP ;
flags mssdk VC_COMPILER ;
flags mssdk VC_LINKER ;
flags mssdk VC_PDB_NAME ;


# compute MSVC tool path
# You can either put the msvc bin directory in your PATH, or you can set
# MSVCDir to point at the msvc installation directory


# Some installations set MSSDK instead of MSSdk; who knows why?
MSSdk ?= $(MSSDK) ;


# If TARGETOS is not set the user hasn't run VCVARS32.BAT
if ! $(TARGETOS)
{
# In case someone set VISUALC in order to build Jam, we can just use that.
# MSSDK_ROOT ?= $(VISUALC) ;
# Otherwise, guess a standard installation directory


ProgramFiles ?= $(PROGRAMFILES) ;
MSSDK_ROOT ?= $(ProgramFiles:J=" ")"\\Microsoft Platform SDK" ;


# Reconstitutes paths containing spaces
MSSDK_ROOT = $(MSSDK_ROOT:J=" ") ;


# The tools are provisionallly located in the msvc6 bin
# directory. This may be overridden by toolsets which extend this
# one.
VC_TOOL_PATH = "$(MSSDK_ROOT)"$(SLASH)bin$(SLASH)win64$(SLASH)x86$(SLASH)AMD64$(SLASH) ;


# Always call VCVARS32.BAT before invoking the tools
VC_SETUP = "CALL \"$(VC_TOOL_PATH)..$(SLASH)..$(SLASH)..$(SLASH)..$(SLASH)SetEnv.Cmd\" /X64 >nul" ;
}
else
{
# Reconstitutes paths containing spaces
MSSdk = $(MSSdk:J=" ") ;


# Don't clobber adjoining text or use explicit paths if MSVCDir is already set
VC_TOOL_PATH = "" ;
}


VC_COMPILER = cl.exe ;
VC_LINKER = link.exe ;
VC_PDB_NAME = vc60 ;
VC_STDLIB_PATH = ;


flags mssdk CFLAGS on/object : /Z7 ;
flags mssdk CFLAGS on/database : /Zi ;
flags mssdk PDB_CFLAG on/database : /Fd ;
flags mssdk PDB_LINKFLAG on/database : /PDB: ;
flags mssdk LINKFLAGS on : /DEBUG ;
# The linker disables the default optimizations when using /DEBUG. Whe have
# to enable them manually for release builds with debug symbols.
# flags msvc LINKFLAGS on/release : /OPT:REF,ICF ;


flags mssdk CFLAGS speed : /O2 /Gs ;
flags mssdk CFLAGS off : /Od ;
flags mssdk CFLAGS space : /O1 /Gs ;
flags mssdk CFLAGS off : /Ob0 ;
flags mssdk CFLAGS on : /Ob1 ;
flags mssdk CFLAGS full : /Ob2 ;
flags mssdk CFLAGS on : /EHsc ;
flags mssdk CFLAGS on : /GR ;


# Note that these two options actually imply multithreading support on MSVC
# because there is no single-threaded dynamic runtime library. Specifying
# multi would be a bad idea, though, because no option would be
# matched when the build uses the default settings of dynamic
# and single.
flags mssdk CFLAGS release/dynamic : /MD ;
flags mssdk CFLAGS debug/dynamic : /MDd ;


# flags mssdk CFLAGS release/static/single : /ML ;
# flags mssdk CFLAGS debug/static/single : /MLd ;
flags mssdk CFLAGS release/static/multi : /MT ;
flags mssdk CFLAGS debug/static/multi : /MTd ;


flags mssdk CFLAGS ;
# flags mssdk CFLAGS /O2 ;
flags mssdk C++FLAGS ;
flags mssdk C++FLAGS : /Zc:forScope ;
feature native-wchar_t : on off ;
flags mssdk C++FLAGS on : /Zc:wchar_t ;
flags mssdk DEFINES ;
flags mssdk UNDEFS ;
flags mssdk HDRS ;
flags mssdk CRTSTDHDRS ;
flags mssdk STDHDRS ;
flags mssdk LINKFLAGS ;
flags mssdk ARFLAGS ;


flags mssdk STDHDRS : $(MSSdk)$(SLASH)include ;
flags mssdk CRTSTDHDRS : $(MSSdk)$(SLASH)include$(SLASH)crt ;
flags mssdk STDLIBPATH : $(MSSdk)$(SLASH)lib$(SLASH)AMD64 ;
flags mssdk LIBPATH ;
flags mssdk NEEDLIBS ;
flags mssdk FINDLIBS ;
flags mssdk LINKFLAGS $(SHARED_TYPES) : /DLL ;


flags mssdk LINKFLAGS console : /subsystem:console ;
flags mssdk LINKFLAGS gui : /subsystem:windows ;
flags mssdk LINKFLAGS wince : /subsystem:windowsce ;
flags mssdk LINKFLAGS native : /subsystem:native ;
flags mssdk LINKFLAGS auto : /subsystem:posix ;


flags mssdk LINKFLAGS x64 : /machine:AMD64 ;


flags mssdk LINKLIBS kernel32.lib user32.lib gdi32.lib ;


rule vc-set-pdb-file ( targets + : name )
{
local pdb = $(targets[1]:B=$(name):S=.pdb) ;
VC_PDB_FILE on $(targets) = $(pdb:G=:R=$(LOCATE_TARGET)) ;
LOCATE on $(pdb) = $(LOCATE_TARGET) ;
Clean clean : $(pdb) ;
}


#### Link ####


rule Link-action ( target implib ? : sources + : target-type ? )
{
with-command-file vc-Link $(<) : $(sources) $(NEEDLIBS) ;


gRUN_PATH($(<)) += $(VC_STDLIB_PATH) ;
if $(implib)
{
# incremental linking a DLL causes no end of problems: if the
# actual exports don't change, the import .lib file is never
# updated. Therefore, the .lib is always out-of-date and gets
# rebuilt every time. I'm not sure that incremental linking is
# such a great idea in general, but in this case I'm sure we
# don't want it.
NOINCREMENTAL on $(<) = /INCREMENTAL:NO ;
}
vc-set-pdb-file $(<) : $(target:B) ;
}


actions together vc-Link
{
$(VC_SETUP)
"$(VC_TOOL_PATH)$(VC_LINKER)" /nologo $(NOINCREMENTAL) $(LINKFLAGS) $(PDB_LINKFLAG)"$(VC_PDB_FILE)" /out:"$(<[1])" /IMPLIB:"$(<[2])" /LIBPATH:"$(LIBPATH)" /LIBPATH:"$(STDLIBPATH)" bufferoverflowU.lib $(LINKLIBS) "$(FINDLIBS:S=.lib)" @"$(>)"
}


#### Cc #####


rule Cc-action
{
vc-set-pdb-file $(<) : $(VC_PDB_NAME) ;
vc-Cc $(<) : $(>) ;
}


actions vc-Cc
{
$(VC_SETUP)
"$(VC_TOOL_PATH)$(VC_COMPILER)" /Zm800 -nologo -c -U$(UNDEFS) -D$(DEFINES) $(CFLAGS) -I"$(HDRS)" -I"$(CRTSTDHDRS)" -I"$(STDHDRS)" $(PDB_CFLAG)"$(VC_PDB_FILE)" -Fo"$(<)" "$(>)"
}


#### C++ ####
rule C++-action
{
vc-set-pdb-file $(<) : $(VC_PDB_NAME) ;
vc-C++ $(<) : $(>) ;
}


actions vc-C++
{
$(VC_SETUP)
"$(VC_TOOL_PATH)$(VC_COMPILER)" /Zm800 -nologo /EHsc -c -U$(UNDEFS) -D$(DEFINES) $(CFLAGS) $(C++FLAGS) -I"$(HDRS)" -I"$(CRTSTDHDRS)" -I"$(STDHDRS)" $(PDB_CFLAG)"$(VC_PDB_FILE)" -Fo"$(<)" -Tp"$(>)"
}


#### Archive ####
rule Archive-action
{
vc-set-pdb-file $(<) : $(<:B) ;
with-command-file vc-Archive $(<) : $(>) ;
}


actions vc-Archive
{
$(VC_SETUP)
if exist "$(<)" DEL "$(<)"
"$(VC_TOOL_PATH)$(VC_LINKER)" /lib $(ARFLAGS) $(PDB_LINKFLAG)"$(VC_PDB_FILE)" /out:"$(<)" @"$(>)" /machine:AMD64
}







--- end file




4. Everything seems to build fine except Boost.Regex. This fails while linking - apparently it cannot find a large number of template specializations of standard library classes for wchar_t.


The errors are shown below.


- Any idea why these symbols are not available.


- Is there a way I can turn off building Unicode support for Boost.Regex - can undef-ing BOOST_NO_WREGEX be of any help or should it be done with some other preprocessor symbol.


Errors:

vc-C++ bin\boost\libs\regex\build\boost_regex.dll\mssdk-amd64\debug\winstances.obj
winstances.cpp
Unknown compiler version - please run the configure tests and report the results
vc-Link bin\boost\libs\regex\build\boost_regex.dll\mssdk-amd64\debug\boost_regex-mssdk-gd-1_31.dll bin\boost\libs\regex\build\boost_regex.dll\mssdk-amd64\debug\boost_regex-mssdk-gd-1_31.lib
Creating library bin\boost\libs\regex\build\boost_regex.dll\mssdk-amd64\debug\boost_regex-mssdk-gd-1_31.lib and object bin\boost\libs\regex\build\boost_regex.dll\mssdk-amd64\debug\boost_regex-mssdk-gd-1_31.exp
wide_posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t __cdecl std::ctype::tolower(wchar_t)const " (__imp_?tolower@?$ctype@_W@std@@QEBA_W_W@Z)
instances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t __cdecl std::ctype::tolower(wchar_t)const " (__imp_?tolower@?$ctype@_W@std@@QEBA_W_W@Z)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t __cdecl std::ctype::tolower(wchar_t)const " (__imp_?tolower@?$ctype@_W@std@@QEBA_W_W@Z)
posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t __cdecl std::ctype::tolower(wchar_t)const " (__imp_?tolower@?$ctype@_W@std@@QEBA_W_W@Z)
regex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t __cdecl std::ctype::tolower(wchar_t)const " (__imp_?tolower@?$ctype@_W@std@@QEBA_W_W@Z)
regex_debug.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: wchar_t __cdecl std::ctype::tolower(wchar_t)const " (__imp_?tolower@?$ctype@_W@std@@QEBA_W_W@Z) referenced in function "void __cdecl regex_lib_print_compiler_macros(void)" (?regex_lib_print_compiler_macros@@YAXXZ)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t __cdecl std::ctype::tolower(wchar_t)const " (__imp_?tolower@?$ctype@_W@std@@QEBA_W_W@Z)
c_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t __cdecl std::ctype::tolower(wchar_t)const " (__imp_?tolower@?$ctype@_W@std@@QEBA_W_W@Z)
c_regex_traits_common.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t __cdecl std::ctype::tolower(wchar_t)const " (__imp_?tolower@?$ctype@_W@std@@QEBA_W_W@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t __cdecl std::ctype::tolower(wchar_t)const " (__imp_?tolower@?$ctype@_W@std@@QEBA_W_W@Z)
cregex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t __cdecl std::ctype::tolower(wchar_t)const " (__imp_?tolower@?$ctype@_W@std@@QEBA_W_W@Z)
wide_posix_api.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::~basic_string,class std::allocator >(void)" (__imp_??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@XZ) referenced in function "public: static wchar_t __cdecl boost::w32_regex_traits::translate(wchar_t,bool)" (?translate@?$w32_regex_traits@_W@boost@@SA_W_W_N@Z)
instances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::~basic_string,class std::allocator >(void)" (__imp_??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@XZ)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::~basic_string,class std::allocator >(void)" (__imp_??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@XZ)
posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::~basic_string,class std::allocator >(void)" (__imp_??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@XZ)
regex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::~basic_string,class std::allocator >(void)" (__imp_??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@XZ)
regex_debug.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::~basic_string,class std::allocator >(void)" (__imp_??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@XZ)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::~basic_string,class std::allocator >(void)" (__imp_??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@XZ)
c_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::~basic_string,class std::allocator >(void)" (__imp_??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@XZ)
c_regex_traits_common.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::~basic_string,class std::allocator >(void)" (__imp_??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@XZ)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::~basic_string,class std::allocator >(void)" (__imp_??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@XZ)
cregex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::~basic_string,class std::allocator >(void)" (__imp_??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@XZ)
wide_posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(class std::basic_string,class std::allocator > const &)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@AEBV01@@Z)
instances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(class std::basic_string,class std::allocator > const &)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@AEBV01@@Z)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(class std::basic_string,class std::allocator > const &)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@AEBV01@@Z)
posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(class std::basic_string,class std::allocator > const &)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@AEBV01@@Z)
regex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(class std::basic_string,class std::allocator > const &)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@AEBV01@@Z)
regex_debug.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(class std::basic_string,class std::allocator > const &)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@AEBV01@@Z) referenced in function "void __cdecl regex_lib_print_compiler_macros(void)" (?regex_lib_print_compiler_macros@@YAXXZ)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(class std::basic_string,class std::allocator > const &)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@AEBV01@@Z)
c_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(class std::basic_string,class std::allocator > const &)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@AEBV01@@Z)
c_regex_traits_common.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(class std::basic_string,class std::allocator > const &)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@AEBV01@@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(class std::basic_string,class std::allocator > const &)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@AEBV01@@Z)
cregex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(class std::basic_string,class std::allocator > const &)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@AEBV01@@Z)
wide_posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > __cdecl std::collate::transform(wchar_t const *,wchar_t const *)const " (__imp_?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z)
instances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > __cdecl std::collate::transform(wchar_t const *,wchar_t const *)const " (__imp_?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > __cdecl std::collate::transform(wchar_t const *,wchar_t const *)const " (__imp_?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z)
posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > __cdecl std::collate::transform(wchar_t const *,wchar_t const *)const " (__imp_?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z)
regex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > __cdecl std::collate::transform(wchar_t const *,wchar_t const *)const " (__imp_?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z)
regex_debug.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > __cdecl std::collate::transform(wchar_t const *,wchar_t const *)const " (__imp_?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z) referenced in function "void __cdecl regex_lib_print_compiler_macros(void)" (?regex_lib_print_compiler_macros@@YAXXZ)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > __cdecl std::collate::transform(wchar_t const *,wchar_t const *)const " (__imp_?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z)
c_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > __cdecl std::collate::transform(wchar_t const *,wchar_t const *)const " (__imp_?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z)
c_regex_traits_common.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > __cdecl std::collate::transform(wchar_t const *,wchar_t const *)const " (__imp_?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > __cdecl std::collate::transform(wchar_t const *,wchar_t const *)const " (__imp_?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z)
cregex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > __cdecl std::collate::transform(wchar_t const *,wchar_t const *)const " (__imp_?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z)
wide_posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: unsigned __int64 __cdecl std::basic_string,class std::allocator >::size(void)const " (__imp_?size@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBA_KXZ)
instances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: unsigned __int64 __cdecl std::basic_string,class std::allocator >::size(void)const " (__imp_?size@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBA_KXZ)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: unsigned __int64 __cdecl std::basic_string,class std::allocator >::size(void)const " (__imp_?size@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBA_KXZ)
posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: unsigned __int64 __cdecl std::basic_string,class std::allocator >::size(void)const " (__imp_?size@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBA_KXZ)
regex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: unsigned __int64 __cdecl std::basic_string,class std::allocator >::size(void)const " (__imp_?size@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBA_KXZ)
regex_debug.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: unsigned __int64 __cdecl std::basic_string,class std::allocator >::size(void)const " (__imp_?size@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBA_KXZ) referenced in function "void __cdecl regex_lib_print_compiler_macros(void)" (?regex_lib_print_compiler_macros@@YAXXZ)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: unsigned __int64 __cdecl std::basic_string,class std::allocator >::size(void)const " (__imp_?size@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBA_KXZ)
c_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: unsigned __int64 __cdecl std::basic_string,class std::allocator >::size(void)const " (__imp_?size@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBA_KXZ)
c_regex_traits_common.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: unsigned __int64 __cdecl std::basic_string,class std::allocator >::size(void)const " (__imp_?size@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBA_KXZ)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: unsigned __int64 __cdecl std::basic_string,class std::allocator >::size(void)const " (__imp_?size@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBA_KXZ)
cregex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: unsigned __int64 __cdecl std::basic_string,class std::allocator >::size(void)const " (__imp_?size@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBA_KXZ)
wide_posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t const * __cdecl std::basic_string,class std::allocator >::c_str(void)const " (__imp_?c_str@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAPEB_WXZ)
instances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t const * __cdecl std::basic_string,class std::allocator >::c_str(void)const " (__imp_?c_str@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAPEB_WXZ)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t const * __cdecl std::basic_string,class std::allocator >::c_str(void)const " (__imp_?c_str@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAPEB_WXZ)
posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t const * __cdecl std::basic_string,class std::allocator >::c_str(void)const " (__imp_?c_str@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAPEB_WXZ)
regex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t const * __cdecl std::basic_string,class std::allocator >::c_str(void)const " (__imp_?c_str@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAPEB_WXZ)
regex_debug.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: wchar_t const * __cdecl std::basic_string,class std::allocator >::c_str(void)const " (__imp_?c_str@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAPEB_WXZ) referenced in function "void __cdecl regex_lib_print_compiler_macros(void)" (?regex_lib_print_compiler_macros@@YAXXZ)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t const * __cdecl std::basic_string,class std::allocator >::c_str(void)const " (__imp_?c_str@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAPEB_WXZ)
c_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t const * __cdecl std::basic_string,class std::allocator >::c_str(void)const " (__imp_?c_str@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAPEB_WXZ)
c_regex_traits_common.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t const * __cdecl std::basic_string,class std::allocator >::c_str(void)const " (__imp_?c_str@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAPEB_WXZ)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t const * __cdecl std::basic_string,class std::allocator >::c_str(void)const " (__imp_?c_str@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAPEB_WXZ)
cregex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t const * __cdecl std::basic_string,class std::allocator >::c_str(void)const " (__imp_?c_str@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAPEB_WXZ)
wide_posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: bool __cdecl std::ctype::is(short,wchar_t)const " (__imp_?is@?$ctype@_W@std@@QEBA_NF_W@Z)
instances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: bool __cdecl std::ctype::is(short,wchar_t)const " (__imp_?is@?$ctype@_W@std@@QEBA_NF_W@Z)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: bool __cdecl std::ctype::is(short,wchar_t)const " (__imp_?is@?$ctype@_W@std@@QEBA_NF_W@Z)
posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: bool __cdecl std::ctype::is(short,wchar_t)const " (__imp_?is@?$ctype@_W@std@@QEBA_NF_W@Z)
regex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: bool __cdecl std::ctype::is(short,wchar_t)const " (__imp_?is@?$ctype@_W@std@@QEBA_NF_W@Z)
regex_debug.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: bool __cdecl std::ctype::is(short,wchar_t)const " (__imp_?is@?$ctype@_W@std@@QEBA_NF_W@Z) referenced in function "void __cdecl regex_lib_print_compiler_macros(void)" (?regex_lib_print_compiler_macros@@YAXXZ)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: bool __cdecl std::ctype::is(short,wchar_t)const " (__imp_?is@?$ctype@_W@std@@QEBA_NF_W@Z)
c_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: bool __cdecl std::ctype::is(short,wchar_t)const " (__imp_?is@?$ctype@_W@std@@QEBA_NF_W@Z)
c_regex_traits_common.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: bool __cdecl std::ctype::is(short,wchar_t)const " (__imp_?is@?$ctype@_W@std@@QEBA_NF_W@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: bool __cdecl std::ctype::is(short,wchar_t)const " (__imp_?is@?$ctype@_W@std@@QEBA_NF_W@Z)
cregex.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: bool __cdecl std::ctype::is(short,wchar_t)const " (__imp_?is@?$ctype@_W@std@@QEBA_NF_W@Z)
c_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::append(unsigned __int64,wchar_t)" (__imp_?append@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV12@_K_W@Z) referenced in function "public: static bool __cdecl boost::c_regex_traits::lookup_collatename(class std::basic_string,class std::allocator > &,wchar_t const *,wchar_t const *)" (?lookup_collatename@?$c_regex_traits@_W@boost@@SA_NAEAV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@PEB_W1@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::append(unsigned __int64,wchar_t)" (__imp_?append@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV12@_K_W@Z)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::append(unsigned __int64,wchar_t)" (__imp_?append@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV12@_K_W@Z)
c_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(wchar_t const *)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@PEB_W@Z) referenced in function "public: static bool __cdecl boost::c_regex_traits::lookup_collatename(class std::basic_string,class std::allocator > &,wchar_t const *,wchar_t const *)" (?lookup_collatename@?$c_regex_traits@_W@boost@@SA_NAEAV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@PEB_W1@Z)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(wchar_t const *)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@PEB_W@Z)
c_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(wchar_t const *,wchar_t const *,class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@PEB_W0AEBV?$allocator@_W@1@@Z) referenced in function "public: static bool __cdecl boost::c_regex_traits::lookup_collatename(class std::basic_string,class std::allocator > &,wchar_t const *,wchar_t const *)" (?lookup_collatename@?$c_regex_traits@_W@boost@@SA_NAEAV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@PEB_W1@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(wchar_t const *,wchar_t const *,class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@PEB_W0AEBV?$allocator@_W@1@@Z)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(wchar_t const *,wchar_t const *,class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@PEB_W0AEBV?$allocator@_W@1@@Z)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(wchar_t const *,wchar_t const *,class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@PEB_W0AEBV?$allocator@_W@1@@Z)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@AEBV?$allocator@_W@1@@Z)
c_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@AEBV?$allocator@_W@1@@Z) referenced in function "public: static void __cdecl boost::c_regex_traits::update(void)" (?update@?$c_regex_traits@_W@boost@@SAXXZ)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@AEBV?$allocator@_W@1@@Z)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@AEBV?$allocator@_W@1@@Z)
wide_posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@AEBV?$allocator@_W@1@@Z)
c_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: wchar_t & __cdecl std::basic_string,class std::allocator >::operator[](unsigned __int64)" (__imp_??A?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEA_W_K@Z) referenced in function "public: static void __cdecl boost::c_regex_traits::transform_primary(class std::basic_string,class std::allocator > &,class std::basic_string,class std::allocator > const &)" (?transform_primary@?$c_regex_traits@_W@boost@@SAXAEAV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@AEBV34@@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t & __cdecl std::basic_string,class std::allocator >::operator[](unsigned __int64)" (__imp_??A?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEA_W_K@Z)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t & __cdecl std::basic_string,class std::allocator >::operator[](unsigned __int64)" (__imp_??A?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEA_W_K@Z)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t & __cdecl std::basic_string,class std::allocator >::operator[](unsigned __int64)" (__imp_??A?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEA_W_K@Z)
c_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::erase(unsigned __int64,unsigned __int64)" (__imp_?erase@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV12@_K0@Z) referenced in function "public: static void __cdecl boost::c_regex_traits::transform_primary(class std::basic_string,class std::allocator > &,class std::basic_string,class std::allocator > const &)" (?transform_primary@?$c_regex_traits@_W@boost@@SAXAEAV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@AEBV34@@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::erase(unsigned __int64,unsigned __int64)" (__imp_?erase@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV12@_K0@Z)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::erase(unsigned __int64,unsigned __int64)" (__imp_?erase@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV12@_K0@Z)
c_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static unsigned __int64 const std::basic_string,class std::allocator >::npos" (__imp_?npos@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@2_KB)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static unsigned __int64 const std::basic_string,class std::allocator >::npos" (__imp_?npos@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@2_KB) referenced in function "public: int __cdecl boost::cpp_regex_traits::toi(wchar_t)const " (?toi@?$cpp_regex_traits@_W@boost@@QEBAH_W@Z)
w32_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static unsigned __int64 const std::basic_string,class std::allocator >::npos" (__imp_?npos@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@2_KB)
c_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) bool __cdecl std::operator==,class std::allocator >(class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &)" (__imp_??$?8_WU?$char_traits@_W@std@@V?$allocator@_W@1@@std@@YA_NAEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@0@0@Z) referenced in function "unsigned int __cdecl boost::re_detail::find_sort_syntax,wchar_t>(class boost::c_regex_traits const *,wchar_t *)" (??$find_sort_syntax@V?$c_regex_traits@_W@boost@@_W@re_detail@boost@@YAIPEBV?$c_regex_traits@_W@1@PEA_W@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) bool __cdecl std::operator==,class std::allocator >(class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &)" (__imp_??$?8_WU?$char_traits@_W@std@@V?$allocator@_W@1@@std@@YA_NAEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@0@0@Z)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) bool __cdecl std::operator==,class std::allocator >(class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &)" (__imp_??$?8_WU?$char_traits@_W@std@@V?$allocator@_W@1@@std@@YA_NAEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@0@0@Z)
c_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(unsigned __int64,wchar_t,class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@_K_WAEBV?$allocator@_W@1@@Z) referenced in function "unsigned int __cdecl boost::re_detail::find_sort_syntax,wchar_t>(class boost::c_regex_traits const *,wchar_t *)" (??$find_sort_syntax@V?$c_regex_traits@_W@boost@@_W@re_detail@boost@@YAIPEBV?$c_regex_traits@_W@1@PEA_W@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(unsigned __int64,wchar_t,class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@_K_WAEBV?$allocator@_W@1@@Z)
wide_posix_api.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(unsigned __int64,wchar_t,class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@_K_WAEBV?$allocator@_W@1@@Z)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(unsigned __int64,wchar_t,class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@_K_WAEBV?$allocator@_W@1@@Z)
c_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: wchar_t const & __cdecl std::basic_string,class std::allocator >::operator[](unsigned __int64)const " (__imp_??A?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAAEB_W_K@Z) referenced in function "unsigned int __cdecl boost::re_detail::count_chars,class std::allocator >,wchar_t>(class std::basic_string,class std::allocator > const &,wchar_t)" (??$count_chars@V?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@_W@re_detail@boost@@YAIAEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@_W@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: wchar_t const & __cdecl std::basic_string,class std::allocator >::operator[](unsigned __int64)const " (__imp_??A?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAAEB_W_K@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: int __cdecl std::codecvt::out(int &,wchar_t const *,wchar_t const *,wchar_t const * &,char *,char *,char * &)const " (__imp_?out@?$codecvt@_WDH@std@@QEBAHAEAHPEB_W1AEAPEB_WPEAD3AEAPEAD@Z) referenced in function "class std::basic_string,class std::allocator > __cdecl boost::re_detail::to_narrow(class std::basic_string,class std::allocator > const &,class std::codecvt const &)" (?to_narrow@re_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@4@AEBV?$codecvt@_WDH@4@@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(class std::basic_string,class std::allocator > const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@AEBV01@@Z) referenced in function "class std::basic_string,class std::allocator > __cdecl boost::re_detail::to_wide(class std::basic_string,class std::allocator > const &,class std::codecvt const &)" (?to_wide@re_detail@boost@@YA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@AEBV?$codecvt@_WDH@4@@Z)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(class std::basic_string,class std::allocator > const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@AEBV01@@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: int __cdecl std::codecvt::in(int &,char const *,char const *,char const * &,wchar_t *,wchar_t *,wchar_t * &)const " (__imp_?in@?$codecvt@_WDH@std@@QEBAHAEAHPEBD1AEAPEBDPEA_W3AEAPEA_W@Z) referenced in function "class std::basic_string,class std::allocator > __cdecl boost::re_detail::to_wide(class std::basic_string,class std::allocator > const &,class std::codecvt const &)" (?to_wide@re_detail@boost@@YA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@AEBV?$codecvt@_WDH@4@@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __cdecl std::basic_istream >::`vbase destructor'(void)" (__imp_??_D?$basic_istream@_WU?$char_traits@_W@std@@@std@@QEAAXXZ) referenced in function "int `public: __cdecl boost::re_detail::message_data::message_data(class std::locale const &,class locale::basic_string,class std::allocator > const &)'::`1'::dtor$5" (?dtor$5@?0???0?$message_data@_W@re_detail@boost@@QEAA@AEBVlocale@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z@4HA)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __cdecl std::messages::close(int)const " (__imp_?close@?$messages@_W@std@@QEBAXH@Z) referenced in function "public: __cdecl boost::re_detail::message_data::message_data(class std::locale const &,class std::basic_string,class std::allocator > const &)" (??0?$message_data@_W@re_detail@boost@@QEAA@AEBVlocale@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > __cdecl std::messages::get(int,int,int,class std::basic_string,class std::allocator > const &)const " (__imp_?get@?$messages@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@HHHAEBV32@@Z) referenced in function "public: __cdecl boost::re_detail::message_data::message_data(class std::locale const &,class std::basic_string,class std::allocator > const &)" (??0?$message_data@_W@re_detail@boost@@QEAA@AEBVlocale@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: int __cdecl std::messages::open(class std::basic_string,class std::allocator > const &,class std::locale const &)const " (__imp_?open@?$messages@_W@std@@QEBAHAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@AEBVlocale@2@@Z) referenced in function "public: __cdecl boost::re_detail::message_data::message_data(class std::locale const &,class std::basic_string,class std::allocator > const &)" (??0?$message_data@_W@re_detail@boost@@QEAA@AEBVlocale@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::locale __cdecl std::basic_ios >::imbue(class std::locale const &)" (__imp_?imbue@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEAA?AVlocale@2@AEBV32@@Z) referenced in function "public: __cdecl boost::re_detail::message_data::message_data(class std::locale const &,class std::basic_string,class std::allocator > const &)" (??0?$message_data@_W@re_detail@boost@@QEAA@AEBVlocale@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_istream >::basic_istream >(class std::basic_streambuf > *,bool)" (__imp_??0?$basic_istream@_WU?$char_traits@_W@std@@@std@@QEAA@PEAV?$basic_streambuf@_WU?$char_traits@_W@std@@@1@_N@Z) referenced in function "public: __cdecl boost::re_detail::message_data::message_data(class std::locale const &,class std::basic_string,class std::allocator > const &)" (??0?$message_data@_W@re_detail@boost@@QEAA@AEBVlocale@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: virtual __cdecl std::basic_streambuf >::~basic_streambuf >(void)" (__imp_??1?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@UEAA@XZ) referenced in function "public: virtual __cdecl `anonymous namespace'::parser_buf >::~parser_buf >(void)" (??1?$parser_buf@_WU?$char_traits@_W@std@@@?A0x35f75ea7@@UEAA@XZ)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_istream > & __cdecl std::basic_istream >::operator>>(int &)" (__imp_??5?$basic_istream@_WU?$char_traits@_W@std@@@std@@QEAAAEAV01@AEAH@Z) referenced in function "public: int __cdecl boost::cpp_regex_traits::toi(wchar_t)const " (?toi@?$cpp_regex_traits@_W@boost@@QEBAH_W@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_istream > & __cdecl std::basic_istream >::operator>>(class std::ios_base & (__cdecl*)(class std::ios_base &))" (__imp_??5?$basic_istream@_WU?$char_traits@_W@std@@@std@@QEAAAEAV01@P6AAEAVios_base@1@AEAV21@@Z@Z) referenced in function "public: int __cdecl boost::cpp_regex_traits::toi(wchar_t)const " (?toi@?$cpp_regex_traits@_W@boost@@QEBAH_W@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __cdecl std::basic_ios >::clear(int,bool)" (__imp_?clear@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEAAXH_N@Z) referenced in function "public: int __cdecl boost::cpp_regex_traits::toi(wchar_t)const " (?toi@?$cpp_regex_traits@_W@boost@@QEBAH_W@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_streambuf > * __cdecl std::basic_streambuf >::pubsetbuf(wchar_t *,__int64)" (__imp_?pubsetbuf@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAAPEAV12@PEA_W_J@Z) referenced in function "public: int __cdecl boost::cpp_regex_traits::toi(wchar_t)const " (?toi@?$cpp_regex_traits@_W@boost@@QEBAH_W@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __int64 __cdecl std::basic_streambuf >::in_avail(void)" (__imp_?in_avail@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAA_JXZ) referenced in function "public: int __cdecl boost::cpp_regex_traits::toi(wchar_t const * &,wchar_t const *,int)const " (?toi@?$cpp_regex_traits@_W@boost@@QEBAHAEAPEB_WPEB_WH@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: wchar_t const * __cdecl std::ctype::tolower(wchar_t *,wchar_t const *)const " (__imp_?tolower@?$ctype@_W@std@@QEBAPEB_WPEA_WPEB_W@Z) referenced in function "public: __cdecl boost::cpp_regex_traits::cpp_regex_traits(void)" (??0?$cpp_regex_traits@_W@boost@@QEAA@XZ)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual void __cdecl std::basic_streambuf >::imbue(class std::locale const &)" (?imbue@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAXAEBVlocale@2@@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual int __cdecl std::basic_streambuf >::sync(void)" (?sync@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAHXZ)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual __int64 __cdecl std::basic_streambuf >::xsputn(wchar_t const *,__int64)" (?xsputn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAA_JPEB_W_J@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual __int64 __cdecl std::basic_streambuf >::xsgetn(wchar_t *,__int64)" (?xsgetn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAA_JPEA_W_J@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual unsigned short __cdecl std::basic_streambuf >::uflow(void)" (?uflow@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAGXZ)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual unsigned short __cdecl std::basic_streambuf >::underflow(void)" (?underflow@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAGXZ)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual int __cdecl std::basic_streambuf >::showmanyc(void)" (?showmanyc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAHXZ)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual unsigned short __cdecl std::basic_streambuf >::pbackfail(unsigned short)" (?pbackfail@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAGG@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual unsigned short __cdecl std::basic_streambuf >::overflow(unsigned short)" (?overflow@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAGG@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) protected: __cdecl std::basic_streambuf >::basic_streambuf >(void)" (__imp_??0?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAA@XZ) referenced in function "public: __cdecl `anonymous namespace'::parser_buf >::parser_buf >(void)" (??0?$parser_buf@_WU?$char_traits@_W@std@@@?A0x35f75ea7@@QEAA@XZ)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) bool __cdecl std::operator<,class std::allocator >(class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &)" (__imp_??$?M_WU?$char_traits@_W@std@@V?$allocator@_W@1@@std@@YA_NAEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@0@0@Z) referenced in function "public: bool __cdecl std::less,class std::allocator > >::operator()(class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &)const " (??R?$less@V?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@@std@@QEBA_NAEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@1@0@Z)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) bool __cdecl std::operator<,class std::allocator >(class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &)" (__imp_??$?M_WU?$char_traits@_W@std@@V?$allocator@_W@1@@std@@YA_NAEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@0@0@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual char __cdecl std::ctype::do_narrow(wchar_t,char)const " (?do_narrow@?$ctype@_W@std@@MEBAD_WD@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual wchar_t const * __cdecl std::ctype::do_narrow(wchar_t const *,wchar_t const *,char,char *)const " (?do_narrow@?$ctype@_W@std@@MEBAPEB_WPEB_W0DPEAD@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual wchar_t __cdecl std::ctype::do_widen(char)const " (?do_widen@?$ctype@_W@std@@MEBA_WD@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual char const * __cdecl std::ctype::do_widen(char const *,char const *,wchar_t *)const " (?do_widen@?$ctype@_W@std@@MEBAPEBDPEBD0PEA_W@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual wchar_t __cdecl std::ctype::do_toupper(wchar_t)const " (?do_toupper@?$ctype@_W@std@@MEBA_W_W@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual wchar_t const * __cdecl std::ctype::do_toupper(wchar_t *,wchar_t const *)const " (?do_toupper@?$ctype@_W@std@@MEBAPEB_WPEA_WPEB_W@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual wchar_t __cdecl std::ctype::do_tolower(wchar_t)const " (?do_tolower@?$ctype@_W@std@@MEBA_W_W@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual wchar_t const * __cdecl std::ctype::do_tolower(wchar_t *,wchar_t const *)const " (?do_tolower@?$ctype@_W@std@@MEBAPEB_WPEA_WPEB_W@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual wchar_t const * __cdecl std::ctype::do_scan_not(short,wchar_t const *,wchar_t const *)const " (?do_scan_not@?$ctype@_W@std@@MEBAPEB_WFPEB_W0@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual wchar_t const * __cdecl std::ctype::do_scan_is(short,wchar_t const *,wchar_t const *)const " (?do_scan_is@?$ctype@_W@std@@MEBAPEB_WFPEB_W0@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual bool __cdecl std::ctype::do_is(short,wchar_t)const " (?do_is@?$ctype@_W@std@@MEBA_NF_W@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual wchar_t const * __cdecl std::ctype::do_is(wchar_t const *,wchar_t const *,short *)const " (?do_is@?$ctype@_W@std@@MEBAPEB_WPEB_W0PEAF@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl std::ctype::ctype(unsigned __int64)" (__imp_??0?$ctype@_W@std@@QEAA@_K@Z) referenced in function "class std::ctype const & __cdecl std::use_facet >(class std::locale const &,class std::ctype const *,bool)" (??$use_facet@V?$ctype@_W@std@@@std@@YAAEBV?$ctype@_W@0@AEBVlocale@0@PEBV10@_N@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static class std::locale::id std::ctype::id" (__imp_?id@?$ctype@_W@std@@2V0locale@2@A)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: virtual __cdecl std::ctype::~ctype(void)" (__imp_??1?$ctype@_W@std@@UEAA@XZ) referenced in function "public: virtual void * __cdecl std::ctype::`scalar deleting destructor'(unsigned int)" (??_G?$ctype@_W@std@@UEAAPEAXI@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) protected: void __cdecl std::basic_streambuf >::setg(wchar_t *,wchar_t *,wchar_t *)" (__imp_?setg@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAAXPEA_W00@Z) referenced in function "protected: virtual class std::basic_streambuf > * __cdecl `anonymous namespace'::parser_buf >::setbuf(wchar_t *,__int64)" (?setbuf@?$parser_buf@_WU?$char_traits@_W@std@@@?A0x35f75ea7@@MEAAPEAV?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@PEA_W_J@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) protected: wchar_t * __cdecl std::basic_streambuf >::eback(void)const " (__imp_?eback@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEBAPEA_WXZ) referenced in function "protected: virtual class std::fpos __cdecl `anonymous namespace'::parser_buf >::seekpos(class std::fpos,int)" (?seekpos@?$parser_buf@_WU?$char_traits@_W@std@@@?A0x35f75ea7@@MEAA?AV?$fpos@H@std@@V34@H@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) protected: wchar_t * __cdecl std::basic_streambuf >::egptr(void)const " (__imp_?egptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEBAPEA_WXZ) referenced in function "protected: virtual class std::fpos __cdecl `anonymous namespace'::parser_buf >::seekpos(class std::fpos,int)" (?seekpos@?$parser_buf@_WU?$char_traits@_W@std@@@?A0x35f75ea7@@MEAA?AV?$fpos@H@std@@V34@H@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) protected: wchar_t * __cdecl std::basic_streambuf >::gptr(void)const " (__imp_?gptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEBAPEA_WXZ) referenced in function "protected: virtual class std::fpos __cdecl `anonymous namespace'::parser_buf >::seekoff(__int64,enum std::ios_base::seekdir,int)" (?seekoff@?$parser_buf@_WU?$char_traits@_W@std@@@?A0x35f75ea7@@MEAA?AV?$fpos@H@std@@_JW4seekdir@ios_base@4@H@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual int __cdecl std::codecvt::do_length(int &,wchar_t const *,wchar_t const *,unsigned __int64)const " (?do_length@?$codecvt@_WDH@std@@MEBAHAEAHPEB_W1_K@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual int __cdecl std::codecvt::do_out(int &,wchar_t const *,wchar_t const *,wchar_t const * &,char *,char *,char * &)const " (?do_out@?$codecvt@_WDH@std@@MEBAHAEAHPEB_W1AEAPEB_WPEAD3AEAPEAD@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual int __cdecl std::codecvt::do_in(int &,char const *,char const *,char const * &,wchar_t *,wchar_t *,wchar_t * &)const " (?do_in@?$codecvt@_WDH@std@@MEBAHAEAHPEBD1AEAPEBDPEA_W3AEAPEA_W@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual int __cdecl std::codecvt::do_encoding(void)const " (?do_encoding@?$codecvt@_WDH@std@@MEBAHXZ)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual int __cdecl std::codecvt::do_max_length(void)const " (?do_max_length@?$codecvt@_WDH@std@@MEBAHXZ)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual bool __cdecl std::codecvt::do_always_noconv(void)const " (?do_always_noconv@?$codecvt@_WDH@std@@MEBA_NXZ)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl std::codecvt::codecvt(unsigned __int64)" (__imp_??0?$codecvt@_WDH@std@@QEAA@_K@Z) referenced in function "class std::codecvt const & __cdecl std::use_facet >(class std::locale const &,class std::codecvt const *,bool)" (??$use_facet@V?$codecvt@_WDH@std@@@std@@YAAEBV?$codecvt@_WDH@0@AEBVlocale@0@PEBV10@_N@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static class std::locale::id std::codecvt::id" (__imp_?id@?$codecvt@_WDH@std@@2V0locale@2@A)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: virtual __cdecl std::codecvt::~codecvt(void)" (__imp_??1?$codecvt@_WDH@std@@UEAA@XZ) referenced in function "public: virtual void * __cdecl std::codecvt::`scalar deleting destructor'(unsigned int)" (??_G?$codecvt@_WDH@std@@UEAAPEAXI@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual void __cdecl std::messages::do_close(int)const " (?do_close@?$messages@_W@std@@MEBAXH@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual class std::basic_string,class std::allocator > __cdecl std::messages::do_get(int,int,int,class std::basic_string,class std::allocator > const &)const " (?do_get@?$messages@_W@std@@MEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@HHHAEBV32@@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual int __cdecl std::messages::do_open(class std::basic_string,class std::allocator > const &,class std::locale const &)const " (?do_open@?$messages@_W@std@@MEBAHAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@AEBVlocale@2@@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl std::messages::messages(unsigned __int64)" (__imp_??0?$messages@_W@std@@QEAA@_K@Z) referenced in function "class std::messages const & __cdecl std::use_facet >(class std::locale const &,class std::messages const *,bool)" (??$use_facet@V?$messages@_W@std@@@std@@YAAEBV?$messages@_W@0@AEBVlocale@0@PEBV10@_N@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static class std::locale::id std::messages::id" (__imp_?id@?$messages@_W@std@@2V0locale@2@A)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: virtual __cdecl std::messages::~messages(void)" (__imp_??1?$messages@_W@std@@UEAA@XZ) referenced in function "public: virtual void * __cdecl std::messages::`scalar deleting destructor'(unsigned int)" (??_G?$messages@_W@std@@UEAAPEAXI@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual long __cdecl std::collate::do_hash(wchar_t const *,wchar_t const *)const " (?do_hash@?$collate@_W@std@@MEBAJPEB_W0@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual class std::basic_string,class std::allocator > __cdecl std::collate::do_transform(wchar_t const *,wchar_t const *)const " (?do_transform@?$collate@_W@std@@MEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "protected: virtual int __cdecl std::collate::do_compare(wchar_t const *,wchar_t const *,wchar_t const *,wchar_t const *)const " (?do_compare@?$collate@_W@std@@MEBAHPEB_W000@Z)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl std::collate::collate(unsigned __int64)" (__imp_??0?$collate@_W@std@@QEAA@_K@Z) referenced in function "class std::collate const & __cdecl std::use_facet >(class std::locale const &,class std::collate const *,bool)" (??$use_facet@V?$collate@_W@std@@@std@@YAAEBV?$collate@_W@0@AEBVlocale@0@PEBV10@_N@Z)
cpp_regex_traits.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static class std::locale::id std::collate::id" (__imp_?id@?$collate@_W@std@@2V0locale@2@A)
cpp_regex_traits.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: virtual __cdecl std::collate::~collate(void)" (__imp_??1?$collate@_W@std@@UEAA@XZ) referenced in function "public: virtual void * __cdecl std::collate::`scalar deleting destructor'(unsigned int)" (??_G?$collate@_W@std@@UEAAPEAXI@Z)
wide_posix_api.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: int __cdecl std::basic_string,class std::allocator >::compare(wchar_t const *)const " (__imp_?compare@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAHPEB_W@Z) referenced in function "wchar_t const * __cdecl boost::re_detail::re_is_set_member,class boost::detail::allocator >(wchar_t const *,wchar_t const *,struct boost::re_detail::re_set_long const *,class boost::reg_expression,class boost::detail::allocator > const &)" (??$re_is_set_member@PEB_W_WV?$regex_traits@_W@boost@@V?$allocator@_W@detail@2@@re_detail@boost@@YAPEB_WPEB_W0PEBUre_set_long@01@AEBV?$reg_expression@_WV?$regex_traits@_W@boost@@V?$allocator@_W@detail@2@@1@@Z)
winstances.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: int __cdecl std::basic_string,class std::allocator >::compare(wchar_t const *)const " (__imp_?compare@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAHPEB_W@Z)
winstances.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl std::basic_string,class std::allocator >::basic_string,class std::allocator >(wchar_t const *,unsigned __int64,class std::allocator const &)" (__imp_??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAA@PEB_W_KAEBV?$allocator@_W@1@@Z) referenced in function "public: class boost::reg_expression,class boost::detail::allocator > & __cdecl boost::reg_expression,class boost::detail::allocator >::assign(wchar_t const *,unsigned __int64,unsigned int)" (?assign@?$reg_expression@_WV?$regex_traits@_W@boost@@V?$allocator@_W@detail@2@@boost@@QEAAAEAV12@PEB_W_KI@Z)
winstances.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: int __cdecl std::basic_string,class std::allocator >::compare(class std::basic_string,class std::allocator > const &)const " (__imp_?compare@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEBAHAEBV12@@Z) referenced in function "public: int __cdecl boost::reg_expression,class boost::detail::allocator >::compare(class boost::reg_expression,class boost::detail::allocator > const &)const " (?compare@?$reg_expression@_WV?$regex_traits@_W@boost@@V?$allocator@_W@detail@2@@boost@@QEBAHAEBV12@@Z)
winstances.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::operator=(wchar_t)" (__imp_??4?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QEAAAEAV01@_W@Z) referenced in function "private: struct boost::re_detail::re_syntax_base * __cdecl boost::reg_expression,class boost::detail::allocator >::compile_set(wchar_t const * &,wchar_t const *)" (?compile_set@?$reg_expression@_WV?$regex_traits@_W@boost@@V?$allocator@_W@detail@2@@boost@@AEAAPEAUre_syntax_base@re_detail@2@AEAPEB_WPEB_W@Z)
winstances.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) bool __cdecl std::operator>=,class std::allocator >(class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &)" (__imp_??$?P_WU?$char_traits@_W@std@@V?$allocator@_W@1@@std@@YA_NAEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@0@0@Z) referenced in function "private: struct boost::re_detail::re_syntax_base * __cdecl boost::reg_expression,class boost::detail::allocator >::compile_set_aux(class boost::re_detail::jstack,class std::allocator >,class boost::detail::allocator > &,class boost::re_detail::jstack,class std::allocator >,class boost::detail::allocator > &,class boost::re_detail::jstack > &,class boost::re_detail::jstack,class std::allocator >,class boost::detail::allocator > &,bool,struct boost::re_detail::_narrow_type const &)" (?compile_set_aux@?$reg_expression@_WV?$regex_traits@_W@boost@@V?$allocator@_W@detail@2@@boost@@AEAAPEAUre_syntax_base@re_detail@2@AEAV?$jstack@V?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@V?$allocator@_W@detail@boost@@@42@0AEAV?$jstack@KV?$allocator@_W@detail@boost@@@42@0_NAEBU_narrow_type@42@@Z)
winstances.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) bool __cdecl std::operator<=,class std::allocator >(class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &)" (__imp_??$?N_WU?$char_traits@_W@std@@V?$allocator@_W@1@@std@@YA_NAEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@0@0@Z) referenced in function "private: struct boost::re_detail::re_syntax_base * __cdecl boost::reg_expression,class boost::detail::allocator >::compile_set_aux(class boost::re_detail::jstack,class std::allocator >,class boost::detail::allocator > &,class boost::re_detail::jstack,class std::allocator >,class boost::detail::allocator > &,class boost::re_detail::jstack > &,class boost::re_detail::jstack,class std::allocator >,class boost::detail::allocator > &,bool,struct boost::re_detail::_narrow_type const &)" (?compile_set_aux@?$reg_expression@_WV?$regex_traits@_W@boost@@V?$allocator@_W@detail@2@@boost@@AEAAPEAUre_syntax_base@re_detail@2@AEAV?$jstack@V?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@V?$allocator@_W@detail@boost@@@42@0AEAV?$jstack@KV?$allocator@_W@detail@boost@@@42@0_NAEBU_narrow_type@42@@Z)
bin\boost\libs\regex\build\boost_regex.dll\mssdk-amd64\debug\boost_regex-mssdk-gd-1_31.dll : fatal error LNK1120: 90 unresolved externals





PS: The source needed some patching - but this should not be too important I guess:





diff -cr orig/boost/detail/atomic_count_win32.hpp new/boost/detail/atomic_count_win32.hpp
*** orig/boost/detail/atomic_count_win32.hpp Mon Jul 16 21:02:50 2007
--- new/boost/detail/atomic_count_win32.hpp Mon Jul 16 21:01:03 2007
***************
*** 34,45 ****

// Intel 6.0 on Win64 version, posted by Tim Fenders to [boost-users]

! extern "C" long_type __cdecl _InterlockedIncrement(long volatile *);
! extern "C" long_type __cdecl _InterlockedDecrement(long volatile *);

#pragma intrinsic(_InterlockedIncrement)
#pragma intrinsic(_InterlockedDecrement)

inline long InterlockedIncrement(long volatile * lp)
{
return _InterlockedIncrement(lp);
--- 34,46 ----

// Intel 6.0 on Win64 version, posted by Tim Fenders to [boost-users]

! extern "C" long __cdecl _InterlockedIncrement(long volatile *);
! extern "C" long __cdecl _InterlockedDecrement(long volatile *);

#pragma intrinsic(_InterlockedIncrement)
#pragma intrinsic(_InterlockedDecrement)

+ #if defined( _M_IA64 )
inline long InterlockedIncrement(long volatile * lp)
{
return _InterlockedIncrement(lp);
***************
*** 50,55 ****
--- 51,63 ----
return _InterlockedDecrement(lp);
}

+ #elif defined( _M_AMD64 )
+
+ #define InterlockedIncrement _InterlockedIncrement
+ #define InterlockedDecrement _InterlockedDecrement
+
+ #endif
+
#else // _WIN64

extern "C" __declspec(dllimport) long __stdcall InterlockedIncrement(long volatile *);
Only in orig/boost/detail: iterator.hpp
diff -cr orig/boost/detail/lwm_win32.hpp new/boost/detail/lwm_win32.hpp
*** orig/boost/detail/lwm_win32.hpp Mon Jul 16 21:03:02 2007
--- new/boost/detail/lwm_win32.hpp Mon Jul 16 21:01:03 2007
***************
*** 38,51 ****

// Intel 6.0 on Win64 version, posted by Tim Fenders to [boost-users]

! extern "C" long_type __cdecl _InterlockedExchange(long volatile *, long);

#pragma intrinsic(_InterlockedExchange)

inline long InterlockedExchange(long volatile* lp, long l)
{
return _InterlockedExchange(lp, l);
}

#else // _WIN64

--- 38,57 ----

// Intel 6.0 on Win64 version, posted by Tim Fenders to [boost-users]

! extern "C" long __cdecl _InterlockedExchange(long volatile *, long);

#pragma intrinsic(_InterlockedExchange)

+ #if defined( _M_IA64 )
inline long InterlockedExchange(long volatile* lp, long l)
{
return _InterlockedExchange(lp, l);
}
+ #elif defined( _M_AMD64 )
+
+ #define InterlockedExchange _InterlockedExchange
+
+ #endif

#else // _WIN64




diff -cr orig/libs/regex/src/wide_posix_api.cpp new/libs/regex/src/wide_posix_api.cpp
*** orig/libs/regex/src/wide_posix_api.cpp Mon Jul 16 21:03:44 2007
--- new/libs/regex/src/wide_posix_api.cpp Mon Jul 16 21:01:03 2007
***************
*** 142,154 ****
{
if(std::wcscmp(e->re_endp, wnames[i]) == 0)
{
! std::swprintf(localbuf, 5, L"%d", i);
if(std::wcslen(localbuf) < buf_size)
std::wcscpy(buf, localbuf);
return std::wcslen(localbuf) + 1;
}
}
! std::swprintf(localbuf, 5, L"%d", 0);
if(std::wcslen(localbuf) < buf_size)
std::wcscpy(buf, localbuf);
return std::wcslen(localbuf) + 1;
--- 142,156 ----
{
if(std::wcscmp(e->re_endp, wnames[i]) == 0)
{
! //std::swprintf(localbuf, 5, L"%d", i);
! std::swprintf(localbuf, L"%d", i);
if(std::wcslen(localbuf) < buf_size)
std::wcscpy(buf, localbuf);
return std::wcslen(localbuf) + 1;
}
}
! //std::swprintf(localbuf, 5, L"%d", 0);
! std::swprintf(localbuf, L"%d", 0);
if(std::wcslen(localbuf) < buf_size)
std::wcscpy(buf, localbuf);
return std::wcslen(localbuf) + 1;
diff -cr orig/libs/thread/src/once.cpp new/libs/thread/src/once.cpp
*** orig/libs/thread/src/once.cpp Mon Jul 16 21:04:04 2007
--- new/libs/thread/src/once.cpp Mon Jul 16 21:01:03 2007
***************
*** 106,116 ****
--- 106,125 ----
return (LONG)(*ice)((LPVOID*)dest, (LPVOID)exch, (LPVOID)cmp);
}

+ //#pragma intrinsic(_InterlockedCompareExchange)
// The friendly form of InterlockedCompareExchange that defers
// according to the above function type wrappers.
inline LONG compare_exchange(volatile LPLONG dest, LONG exch, LONG cmp)
{
+ #ifdef _WIN64
+ // Picked from 1.34
+ // Original patch from Anthony Williams.
+ // I (Roland Schwarz) am trying this for RC_1_34_0, since x64 regressions are
+ // currently not run on x64 platforms for HEAD
+ return InterlockedCompareExchange(dest, exch,cmp);
+ #else
return ice_wrapper(&InterlockedCompareExchange, dest, exch, cmp);
+ #endif
}
}
#endif


0 Comments:

Post a Comment

<< Home