$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Guan Bin (gb0519_at_[hidden])
Date: 2004-09-13 22:38:24
In my program, I used regex library.
When I build the program to the release version, everything is ok.
But when I build the debug version, some link error occurs:
---------------------------------------------------------------
error LNK2001: unresolved external symbol "void * __cdecl
boost::re_detail::get_mem_block(void)"
(?get_mem_block_at_re_detail_at_boost@@YAPAXXZ)
error LNK2001: unresolved external symbol "void __cdecl
boost::re_detail::put_mem_block(void *)"
(?put_mem_block_at_re_detail_at_boost@@YAXPAX_at_Z)
---------------------------------------------------------------
the tools I use:
VC6 + sp5
boost_1_31_0
the regex build process:
nmake -fvc6.mak
nmake -fvc6.mak install
Why the link error occurs? How can I fix it?
--