14 Mar
2008
14 Mar
'08
6:11 p.m.
a86yes wrote:
Hello,
The ICU4C readme says that the define U_STATIC_IMPLEMENTATION should be defined in user code that links against ICU's static libraries. Grepping the entire Boost, I do not see it. Is linking against ICU static libraries supported at all and if yes, where is the best place to define this macro when building Boost.Regex?
It would have to be defined globally for all source files in the project, you could build with something like: bjam toolset-name --with-regex define=U_STATIC_IMPLEMENTATION=1 link=static Or else add the define to boost/regex/user.hpp HTH, John.