2003-05-17 11:45:48 +00:00
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Boost.Regex: Redistributables and Library Names</title>
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="../../../boost.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<P>
|
|
|
|
|
<TABLE id="Table1" cellSpacing="1" cellPadding="1" width="100%" border="0">
|
|
|
|
|
<TR>
|
|
|
|
|
<td valign="top" width="300">
|
|
|
|
|
<h3><a href="../../../index.htm"><img height="86" width="277" alt="C++ Boost" src="../../../c++boost.gif" border="0"></a></h3>
|
|
|
|
|
</td>
|
|
|
|
|
<TD width="353">
|
|
|
|
|
<H1 align="center">Boost.Regex</H1>
|
|
|
|
|
<H2 align="center">Redistributables and Library Names</H2>
|
|
|
|
|
</TD>
|
|
|
|
|
<td width="50">
|
|
|
|
|
<h3><a href="index.html"><img height="45" width="43" alt="Boost.Regex Index" src="uarrow.gif" border="0"></a></h3>
|
|
|
|
|
</td>
|
|
|
|
|
</TR>
|
|
|
|
|
</TABLE>
|
|
|
|
|
</P>
|
|
|
|
|
<HR>
|
|
|
|
|
<p></p>
|
|
|
|
|
<P>If you are using Microsoft or Borland C++ and link to a dll version of the run
|
2003-05-20 11:27:29 +00:00
|
|
|
|
time library, then you will also link to one of the dll versions of
|
|
|
|
|
boost.regex. While these dll's are redistributable, there are no "standard"
|
|
|
|
|
versions, so when installing on the users PC, you should place these in a
|
|
|
|
|
directory private to your application, and not in the PC's directory path. Note
|
|
|
|
|
that if you link to a static version of your run time library, then you will
|
|
|
|
|
also link to a static version of boost.regex and no dll's will need to be
|
|
|
|
|
distributed. The possible boost.regex dll and library names are computed
|
|
|
|
|
according to the following formula:<BR>
|
2003-05-17 11:45:48 +00:00
|
|
|
|
</P>
|
|
|
|
|
<P></P>
|
2003-05-20 11:27:29 +00:00
|
|
|
|
<P>BOOST_LIB_PREFIX<BR>
|
|
|
|
|
+ "boost_regex_"<BR>
|
2003-05-17 11:45:48 +00:00
|
|
|
|
+ BOOST_LIB_TOOLSET<BR>
|
|
|
|
|
+ "_"<BR>
|
|
|
|
|
+ BOOST_LIB_THREAD_OPT<BR>
|
|
|
|
|
+ BOOST_LIB_RT_OPT<BR>
|
|
|
|
|
+ BOOST_LIB_DEBUG_OPT<BR>
|
|
|
|
|
<BR>
|
2003-05-20 11:27:29 +00:00
|
|
|
|
These are defined as:</P>
|
|
|
|
|
<P>BOOST_LIB_PREFIX: Either "lib" if this is a static link library,
|
|
|
|
|
or nothing for dynamic / shared libraries.<BR>
|
2003-05-17 11:45:48 +00:00
|
|
|
|
<BR>
|
|
|
|
|
BOOST_LIB_TOOLSET: The compiler toolset name (vc6, vc7, bcb5 etc).<BR>
|
|
|
|
|
<BR>
|
|
|
|
|
BOOST_LIB_THREAD_OPT: "s" for single thread builds,<BR>
|
|
|
|
|
"m" for multithread builds.<BR>
|
|
|
|
|
<BR>
|
|
|
|
|
BOOST_LIB_RT_OPT: "s" for static runtime,<BR>
|
|
|
|
|
"d" for dynamic runtime.<BR>
|
|
|
|
|
<BR>
|
|
|
|
|
BOOST_LIB_LINK_OPT: "s" for static link,<BR>
|
|
|
|
|
"i" for dynamic link.<BR>
|
|
|
|
|
<BR>
|
|
|
|
|
BOOST_LIB_DEBUG_OPT: nothing for release builds,<BR>
|
|
|
|
|
"d" for debug builds,<BR>
|
|
|
|
|
"dd" for debug-diagnostic builds (_STLP_DEBUG).</P>
|
|
|
|
|
<P>
|
|
|
|
|
Note: you can disable automatic library selection by defining the symbol
|
|
|
|
|
BOOST_REGEX_NO_LIB when compiling, this is useful if you want to statically
|
|
|
|
|
link even though you're using the dll version of your run time library, or if
|
|
|
|
|
you need to debug boost.regex.
|
|
|
|
|
<P>
|
|
|
|
|
<HR>
|
|
|
|
|
<P></P>
|
|
|
|
|
<p>Revised
|
|
|
|
|
<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->
|
|
|
|
|
17 May 2003
|
|
|
|
|
<!--webbot bot="Timestamp" endspan i-checksum="39359" -->
|
|
|
|
|
</p>
|
2003-05-20 11:27:29 +00:00
|
|
|
|
<P><I><EFBFBD> Copyright <a href="mailto:jm@regex.fsnet.co.uk">John Maddock</a> 1998-<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%Y" startspan --> 2003<!--webbot bot="Timestamp" endspan i-checksum="39359" --></I></P>
|
2003-05-17 11:45:48 +00:00
|
|
|
|
<P align="left"><I>Permission to use, copy, modify, distribute and sell this software
|
|
|
|
|
and its documentation for any purpose is hereby granted without fee, provided
|
|
|
|
|
that the above copyright notice appear in all copies and that both that
|
|
|
|
|
copyright notice and this permission notice appear in supporting documentation.
|
|
|
|
|
Dr John Maddock makes no representations about the suitability of this software
|
|
|
|
|
for any purpose. It is provided "as is" without express or implied warranty.</I></P>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|