| 8 |
The C++ wrapper functions |
The C++ wrapper functions |
| 9 |
Building for virtual Pascal |
Building for virtual Pascal |
| 10 |
Stack size in Windows environments |
Stack size in Windows environments |
| 11 |
|
Linking programs in Windows environments |
| 12 |
Comments about Win32 builds |
Comments about Win32 builds |
| 13 |
Building PCRE with CMake |
Building PCRE on Windows with CMake |
| 14 |
|
Use of relative paths with CMake on Windows |
| 15 |
|
Testing with runtest.bat |
| 16 |
Building under Windows with BCC5.5 |
Building under Windows with BCC5.5 |
| 17 |
Building PCRE on OpenVMS |
Building PCRE on OpenVMS |
| 18 |
|
|
| 23 |
libraries work. The items in the PCRE distribution and Makefile that relate to |
libraries work. The items in the PCRE distribution and Makefile that relate to |
| 24 |
anything other than Unix-like systems are untested by me. |
anything other than Unix-like systems are untested by me. |
| 25 |
|
|
| 26 |
There are some other comments and files in the Contrib directory on the ftp |
There are some other comments and files (including some documentation in CHM |
| 27 |
site that you may find useful. See |
format) in the Contrib directory on the FTP site: |
| 28 |
|
|
| 29 |
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Contrib |
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Contrib |
| 30 |
|
|
| 34 |
successfully on any system that has a Standard C compiler and library. The C++ |
successfully on any system that has a Standard C compiler and library. The C++ |
| 35 |
wrapper functions are a separate issue (see below). |
wrapper functions are a separate issue (see below). |
| 36 |
|
|
| 37 |
The PCRE distribution includes support for CMake. This support is relatively |
The PCRE distribution includes a "configure" file for use by the Configure/Make |
| 38 |
new, but has already been used successfully to build PCRE in multiple build |
build system, as found in many Unix-like environments. There is also support |
| 39 |
environments on Windows. There are some instructions in the section entitled |
support for CMake, which some users prefer, in particular in Windows |
| 40 |
"Building PCRE with CMake" below. |
environments. There are some instructions for CMake under Windows in the |
| 41 |
|
section entitled "Building PCRE with CMake" below. CMake can also be used to |
| 42 |
|
build PCRE in Unix-like systems. |
| 43 |
|
|
| 44 |
|
|
| 45 |
GENERIC INSTRUCTIONS FOR THE PCRE C LIBRARY |
GENERIC INSTRUCTIONS FOR THE PCRE C LIBRARY |
| 85 |
|
|
| 86 |
pcre_internal.h |
pcre_internal.h |
| 87 |
ucp.h |
ucp.h |
|
ucpinternal.h |
|
|
ucptable.h |
|
| 88 |
|
|
| 89 |
(5) Also ensure that you have the following file, which is #included as source |
(5) Also ensure that you have the following file, which is #included as source |
| 90 |
when building a debugging version of PCRE and is also used by pcretest. |
when building a debugging version of PCRE, and is also used by pcretest. |
| 91 |
|
|
| 92 |
pcre_printint.src |
pcre_printint.src |
| 93 |
|
|
| 111 |
pcre_study.c |
pcre_study.c |
| 112 |
pcre_tables.c |
pcre_tables.c |
| 113 |
pcre_try_flipped.c |
pcre_try_flipped.c |
| 114 |
pcre_ucp_searchfuncs.c |
pcre_ucd.c |
| 115 |
pcre_valid_utf8.c |
pcre_valid_utf8.c |
| 116 |
pcre_version.c |
pcre_version.c |
| 117 |
pcre_xclass.c |
pcre_xclass.c |
| 172 |
have been cases where the test program has just died silently. See your linker |
have been cases where the test program has just died silently. See your linker |
| 173 |
documentation for how to increase stack size if you experience problems. The |
documentation for how to increase stack size if you experience problems. The |
| 174 |
Linux default of 8Mb is a reasonable choice for the stack, though even that can |
Linux default of 8Mb is a reasonable choice for the stack, though even that can |
| 175 |
be too small for some pattern/subject combinations. |
be too small for some pattern/subject combinations. |
| 176 |
|
|
| 177 |
PCRE has a compile configuration option to disable the use of stack for |
PCRE has a compile configuration option to disable the use of stack for |
| 178 |
recursion so that heap is used instead. However, pattern matching is |
recursion so that heap is used instead. However, pattern matching is |
| 180 |
"pcrestack" documentation. |
"pcrestack" documentation. |
| 181 |
|
|
| 182 |
|
|
| 183 |
|
LINKING PROGRAMS IN WINDOWS ENVIRONMENTS |
| 184 |
|
|
| 185 |
|
If you want to statically link a program against a PCRE library in the form of |
| 186 |
|
a non-dll .a file, you must define PCRE_STATIC before including pcre.h, |
| 187 |
|
otherwise the pcre_malloc() and pcre_free() exported functions will be declared |
| 188 |
|
__declspec(dllimport), with unwanted results. |
| 189 |
|
|
| 190 |
|
|
| 191 |
|
CALLING CONVENTIONS IN WINDOWS ENVIRONMENTS |
| 192 |
|
|
| 193 |
|
It is possible to compile programs to use different calling conventions using |
| 194 |
|
MSVC. Search the web for "calling conventions" for more information. To make it |
| 195 |
|
easier to change the calling convention for the exported functions in the |
| 196 |
|
PCRE library, the macro PCRE_CALL_CONVENTION is present in all the external |
| 197 |
|
definitions. It can be set externally when compiling (e.g. in CFLAGS). If it is |
| 198 |
|
not set, it defaults to empty; the default calling convention is then used |
| 199 |
|
(which is what is wanted most of the time). |
| 200 |
|
|
| 201 |
|
|
| 202 |
COMMENTS ABOUT WIN32 BUILDS (see also "BUILDING PCRE WITH CMAKE" below) |
COMMENTS ABOUT WIN32 BUILDS (see also "BUILDING PCRE WITH CMAKE" below) |
| 203 |
|
|
| 204 |
There are two ways of building PCRE using the "configure, make, make install" |
There are two ways of building PCRE using the "configure, make, make install" |
| 205 |
paradigm on Windows systems: using MinGW or using Cygwin. These are not at all |
paradigm on Windows systems: using MinGW or using Cygwin. These are not at all |
| 206 |
the same thing; they are completely different from each other. There is also |
the same thing; they are completely different from each other. There is also |
| 207 |
some experimental, undocumented support for building using "cmake", which you |
support for building using CMake, which some users find a more straightforward |
| 208 |
might like to try if you are familiar with "cmake". However, at the present |
way of building PCRE under Windows. However, the tests are not run |
| 209 |
time, the "cmake" process builds only a static library (not a dll), and the |
automatically when CMake is used. |
|
tests are not automatically run. |
|
| 210 |
|
|
| 211 |
The MinGW home page (http://www.mingw.org/) says this: |
The MinGW home page (http://www.mingw.org/) says this: |
| 212 |
|
|
| 238 |
releases of PCRE included the basic libpcre functions in libpcreposix. This no |
releases of PCRE included the basic libpcre functions in libpcreposix. This no |
| 239 |
longer happens.) |
longer happens.) |
| 240 |
|
|
| 241 |
If you want to statically link your program against a non-dll .a file, you must |
A user submitted a special-purpose patch that makes it easy to create |
| 242 |
define PCRE_STATIC before including pcre.h, otherwise the pcre_malloc() and |
"pcre.dll" under mingw32 using the "msys" environment. It provides "pcre.dll" |
| 243 |
pcre_free() exported functions will be declared __declspec(dllimport), with |
as a special target. If you use this target, no other files are built, and in |
| 244 |
unwanted results. |
particular, the pcretest and pcregrep programs are not built. An example of how |
| 245 |
|
this might be used is: |
| 246 |
|
|
| 247 |
|
./configure --enable-utf --disable-cpp CFLAGS="-03 -s"; make pcre.dll |
| 248 |
|
|
| 249 |
Using Cygwin's compiler generates libraries and executables that depend on |
Using Cygwin's compiler generates libraries and executables that depend on |
| 250 |
cygwin1.dll. If a library that is generated this way is distributed, |
cygwin1.dll. If a library that is generated this way is distributed, |
| 276 |
things in this area in future. |
things in this area in future. |
| 277 |
|
|
| 278 |
|
|
| 279 |
BUILDING PCRE WITH CMAKE |
BUILDING PCRE ON WINDOWS WITH CMAKE |
| 280 |
|
|
| 281 |
CMake is an alternative build facility that can be used instead of the |
CMake is an alternative build facility that can be used instead of the |
| 282 |
traditional Unix "configure". CMake version 2.4.7 supports Borland makefiles, |
traditional Unix "configure". CMake version 2.4.7 supports Borland makefiles, |
| 284 |
6, Visual Studio 7, Visual Studio 8, and Watcom W8. The following instructions |
6, Visual Studio 7, Visual Studio 8, and Watcom W8. The following instructions |
| 285 |
were contributed by a PCRE user. |
were contributed by a PCRE user. |
| 286 |
|
|
| 287 |
1. Download CMake 2.4.7 or above from http://www.cmake.org/, install and ensure |
1. Download CMake 2.4.7 or above from http://www.cmake.org/, install and ensure |
| 288 |
that cmake\bin is on your path. |
that cmake\bin is on your path. |
| 289 |
|
|
| 290 |
2. Unzip (retaining folder structure) the PCRE source tree into a source |
2. Unzip (retaining folder structure) the PCRE source tree into a source |
| 291 |
directory such as C:\pcre. |
directory such as C:\pcre. |
| 292 |
|
|
| 293 |
3. Create a new, empty build directory: C:\pcre\build\ |
3. Create a new, empty build directory: C:\pcre\build\ |
| 294 |
|
|
| 295 |
4. Run CMakeSetup from the Shell envirornment of your build tool, e.g., Msys |
4. Run CMakeSetup from the Shell envirornment of your build tool, e.g., Msys |
| 296 |
for Msys/MinGW or Visual Studio Command Prompt for VC/VC++ |
for Msys/MinGW or Visual Studio Command Prompt for VC/VC++ |
| 297 |
|
|
| 298 |
5. Enter C:\pcre\pcre-xx and C:\pcre\build for the source and build |
5. Enter C:\pcre\pcre-xx and C:\pcre\build for the source and build |
| 299 |
directories, respectively |
directories, respectively |
| 300 |
|
|
| 301 |
6. Hit the "Configure" button. |
6. Hit the "Configure" button. |
| 302 |
|
|
| 303 |
7. Select the particular IDE / build tool that you are using (Visual Studio, |
7. Select the particular IDE / build tool that you are using (Visual Studio, |
| 304 |
MSYS makefiles, MinGW makefiles, etc.) |
MSYS makefiles, MinGW makefiles, etc.) |
| 305 |
|
|
| 306 |
8. The GUI will then list several configuration options. This is where you can |
8. The GUI will then list several configuration options. This is where you can |
| 307 |
enable UTF-8 support, etc. |
enable UTF-8 support, etc. |
| 308 |
|
|
| 309 |
9. Hit "Configure" again. The adjacent "OK" button should now be active. |
9. Hit "Configure" again. The adjacent "OK" button should now be active. |
| 310 |
|
|
| 311 |
10. Hit "OK". |
10. Hit "OK". |
| 312 |
|
|
| 313 |
11. The build directory should now contain a usable build system, be it a |
11. The build directory should now contain a usable build system, be it a |
| 314 |
solution file for Visual Studio, makefiles for MinGW, etc. |
solution file for Visual Studio, makefiles for MinGW, etc. |
| 315 |
|
|
| 316 |
Testing with RunTest.bat |
|
| 317 |
|
USE OF RELATIVE PATHS WITH CMAKE ON WINDOWS |
| 318 |
|
|
| 319 |
|
A PCRE user comments as follows: |
| 320 |
|
|
| 321 |
|
I thought that others may want to know the current state of |
| 322 |
|
CMAKE_USE_RELATIVE_PATHS support on Windows. |
| 323 |
|
|
| 324 |
|
Here it is: |
| 325 |
|
-- AdditionalIncludeDirectories is only partially modified (only the |
| 326 |
|
first path - see below) |
| 327 |
|
-- Only some of the contained file paths are modified - shown below for |
| 328 |
|
pcre.vcproj |
| 329 |
|
-- It properly modifies |
| 330 |
|
|
| 331 |
|
I am sure CMake people can fix that if they want to. Until then one will |
| 332 |
|
need to replace existing absolute paths in project files with relative |
| 333 |
|
paths manually (e.g. from VS) - relative to project file location. I did |
| 334 |
|
just that before being told to try CMAKE_USE_RELATIVE_PATHS. Not a big |
| 335 |
|
deal. |
| 336 |
|
|
| 337 |
|
AdditionalIncludeDirectories="E:\builds\pcre\build;E:\builds\pcre\pcre-7.5;" |
| 338 |
|
AdditionalIncludeDirectories=".;E:\builds\pcre\pcre-7.5;" |
| 339 |
|
|
| 340 |
|
RelativePath="pcre.h"> |
| 341 |
|
RelativePath="pcre_chartables.c"> |
| 342 |
|
RelativePath="pcre_chartables.c.rule"> |
| 343 |
|
|
| 344 |
|
|
| 345 |
|
TESTING WITH RUNTEST.BAT |
| 346 |
|
|
| 347 |
1. Copy RunTest.bat into the directory where pcretest.exe has been created. |
1. Copy RunTest.bat into the directory where pcretest.exe has been created. |
| 348 |
|
|
| 373 |
line. |
line. |
| 374 |
|
|
| 375 |
|
|
| 376 |
|
BUILDING UNDER WINDOWS CE WITH VISUAL STUDIO 200x |
| 377 |
|
|
| 378 |
|
Vincent Richomme sent a zip archive of files to help with this process. They |
| 379 |
|
can be found in the file "pcre-vsbuild.zip" in the Contrib directory of the FTP |
| 380 |
|
site. |
| 381 |
|
|
| 382 |
|
|
| 383 |
BUILDING PCRE ON OPENVMS |
BUILDING PCRE ON OPENVMS |
| 384 |
|
|
| 385 |
Dan Mooney sent the following comments about building PCRE on OpenVMS. They |
Dan Mooney sent the following comments about building PCRE on OpenVMS. They |
| 444 |
$! |
$! |
| 445 |
========================= |
========================= |
| 446 |
|
|
| 447 |
Last Updated: 21 September 2007 |
Last Updated: 17 March 2009 |
| 448 |
**** |
**** |