Subject: Re: [boost] regex/ICU fix
From: John Maddock (john_at_[hidden])
Date: 2009-08-20 07:16:22


> Hmm, from the <link>shared requirement for all ICU targets I concluded
> that it's
> the ICU libraries that are always shared. If you are saying that even
> while they
> are shared, it's OK to have static regex link to shared ICU, provided
> shared
> runtime is used, I can tweak the logic to force shared runtime only.

Yes the ICU binary is always a dll, linked to the shared runtime. However,
the regex binary could be a static lib as long as links to the same shared
runtime as the ICU dll.

HTH, John.