| 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 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 |
|
|
| 19 |
|
|
| 20 |
GENERAL |
GENERAL |
| 21 |
|
|
| 22 |
I (Philip Hazel) have no knowledge of Windows or VMS sytems and how their |
I (Philip Hazel) have no experience of Windows or VMS sytems and how their |
| 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 |
|
|
| 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 contains some experimental support for "cmake", but this |
The PCRE distribution includes a "configure" file for use by the Configure/Make |
| 38 |
is incomplete and not documented. However if you are a "cmake" user you might |
build system, as found in many Unix-like environments. There is also support |
| 39 |
like to try building with "cmake". |
support for CMake, which some users prefer, in particular in Windows |
| 40 |
|
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 |
| 49 |
(1) Copy or rename the file config.h.generic as config.h, and edit the macro |
(1) Copy or rename the file config.h.generic as config.h, and edit the macro |
| 50 |
settings that it contains to whatever is appropriate for your environment. |
settings that it contains to whatever is appropriate for your environment. |
| 51 |
In particular, if you want to force a specific value for newline, you can |
In particular, if you want to force a specific value for newline, you can |
| 52 |
define the NEWLINE macro. |
define the NEWLINE macro. When you compile any of the PCRE modules, you |
| 53 |
|
must specify -DHAVE_CONFIG_H to your compiler so that config.h is included |
| 54 |
|
in the sources. |
| 55 |
|
|
| 56 |
An alternative approach is not to edit config.h, but to use -D on the |
An alternative approach is not to edit config.h, but to use -D on the |
| 57 |
compiler command line to make any changes that you need. |
compiler command line to make any changes that you need to the |
| 58 |
|
configuration options. In this case -DHAVE_CONFIG_H must not be set. |
| 59 |
|
|
| 60 |
NOTE: There have been occasions when the way in which certain parameters |
NOTE: There have been occasions when the way in which certain parameters |
| 61 |
in config.h are used has changed between releases. (In the configure/make |
in config.h are used has changed between releases. (In the configure/make |
| 69 |
Copy or rename file pcre_chartables.c.dist as pcre_chartables.c. |
Copy or rename file pcre_chartables.c.dist as pcre_chartables.c. |
| 70 |
|
|
| 71 |
OR: |
OR: |
| 72 |
Compile dftables.c as a stand-alone program, and then run it with the |
Compile dftables.c as a stand-alone program (using -DHAVE_CONFIG_H if |
| 73 |
single argument "pcre_chartables.c". This generates a set of standard |
you have set up config.h), and then run it with the single argument |
| 74 |
character tables and writes them to that file. The tables are generated |
"pcre_chartables.c". This generates a set of standard character tables |
| 75 |
using the default C locale for your system. If you want to use a locale |
and writes them to that file. The tables are generated using the default |
| 76 |
that is specified by LC_xxx environment variables, add the -L option to |
C locale for your system. If you want to use a locale that is specified |
| 77 |
the dftables command. You must use this method if you are building on |
by LC_xxx environment variables, add the -L option to the dftables |
| 78 |
a system that uses EBCDIC code. |
command. You must use this method if you are building on a system that |
| 79 |
|
uses EBCDIC code. |
| 80 |
|
|
| 81 |
The tables in pcre_chartables.c are defaults. The caller of PCRE can |
The tables in pcre_chartables.c are defaults. The caller of PCRE can |
| 82 |
specify alternative tables at run time. |
specify alternative tables at run time. |
| 89 |
ucptable.h |
ucptable.h |
| 90 |
|
|
| 91 |
(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 |
| 92 |
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. |
| 93 |
|
|
| 94 |
pcre_printint.src |
pcre_printint.src |
| 95 |
|
|
| 96 |
(6) Compile the following source files: |
(6) Compile the following source files, setting -DHAVE_CONFIG_H as a compiler |
| 97 |
|
option if you have set up config.h with your configuration, or else use |
| 98 |
|
other -D settings to change the configuration as required. |
| 99 |
|
|
| 100 |
pcre_chartables.c |
pcre_chartables.c |
| 101 |
pcre_compile.c |
pcre_compile.c |
| 118 |
pcre_version.c |
pcre_version.c |
| 119 |
pcre_xclass.c |
pcre_xclass.c |
| 120 |
|
|
| 121 |
|
Make sure that you include -I. in the compiler command (or equivalent for |
| 122 |
|
an unusual compiler) so that all included PCRE header files are first |
| 123 |
|
sought in the current directory. Otherwise you run the risk of picking up |
| 124 |
|
a previously-installed file from somewhere else. |
| 125 |
|
|
| 126 |
(7) Now link all the compiled code into an object library in whichever form |
(7) Now link all the compiled code into an object library in whichever form |
| 127 |
your system keeps such libraries. This is the basic PCRE C library. If |
your system keeps such libraries. This is the basic PCRE C library. If |
| 128 |
your system has static and shared libraries, you may have to do this once |
your system has static and shared libraries, you may have to do this once |
| 129 |
for each type. |
for each type. |
| 130 |
|
|
| 131 |
(8) Similarly, compile pcreposix.c and link the result (on its own) as the |
(8) Similarly, compile pcreposix.c (remembering -DHAVE_CONFIG_H if necessary) |
| 132 |
pcreposix library. |
and link the result (on its own) as the pcreposix library. |
| 133 |
|
|
| 134 |
(9) Compile the test program pcretest.c. This needs the functions in the |
(9) Compile the test program pcretest.c (again, don't forget -DHAVE_CONFIG_H). |
| 135 |
pcre and pcreposix libraries when linking. It also needs the |
This needs the functions in the pcre and pcreposix libraries when linking. |
| 136 |
pcre_printint.src source file, which it #includes. |
It also needs the pcre_printint.src source file, which it #includes. |
| 137 |
|
|
| 138 |
(10) Run pcretest on the testinput files in the testdata directory, and check |
(10) Run pcretest on the testinput files in the testdata directory, and check |
| 139 |
that the output matches the corresponding testoutput files. Note that the |
that the output matches the corresponding testoutput files. Note that the |
| 140 |
supplied files are in Unix format, with just LF characters as line |
supplied files are in Unix format, with just LF characters as line |
| 141 |
terminators. You may need to edit them to change this if your system uses |
terminators. You may need to edit them to change this if your system uses |
| 142 |
a different convention. |
a different convention. If you are using Windows, you probably should use |
| 143 |
|
the wintestinput3 file instead of testinput3 (and the corresponding output |
| 144 |
|
file). This is a locale test; wintestinput3 sets the locale to "french" |
| 145 |
|
rather than "fr_FR", and there some minor output differences. |
| 146 |
|
|
| 147 |
(11) If you want to use the pcregrep command, compile and link pcregrep.c; it |
(11) If you want to use the pcregrep command, compile and link pcregrep.c; it |
| 148 |
uses only the basic PCRE library (it does not need the pcreposix library). |
uses only the basic PCRE library (it does not need the pcreposix library). |
| 172 |
small for matching patterns that need much recursion. In particular, test 2 may |
small for matching patterns that need much recursion. In particular, test 2 may |
| 173 |
fail because of this. Normally, running out of stack causes a crash, but there |
fail because of this. Normally, running out of stack causes a crash, but there |
| 174 |
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 |
| 175 |
documentation for how to increase stack size if you experience problems. The |
documentation for how to increase stack size if you experience problems. The |
| 176 |
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 |
| 177 |
be too small for some pattern/subject combinations. There is more about stack |
be too small for some pattern/subject combinations. |
| 178 |
usage in the "pcrestack" documentation. |
|
| 179 |
|
PCRE has a compile configuration option to disable the use of stack for |
| 180 |
|
recursion so that heap is used instead. However, pattern matching is |
| 181 |
|
significantly slower when this is done. There is more about stack usage in the |
| 182 |
|
"pcrestack" documentation. |
| 183 |
|
|
| 184 |
|
|
| 185 |
|
LINKING PROGRAMS IN WINDOWS ENVIRONMENTS |
| 186 |
|
|
| 187 |
|
If you want to statically link a program against a PCRE library in the form of |
| 188 |
|
a non-dll .a file, you must define PCRE_STATIC before including pcre.h, |
| 189 |
|
otherwise the pcre_malloc() and pcre_free() exported functions will be declared |
| 190 |
|
__declspec(dllimport), with unwanted results. |
| 191 |
|
|
| 192 |
|
|
| 193 |
COMMENTS ABOUT WIN32 BUILDS |
CALLING CONVENTIONS IN WINDOWS ENVIRONMENTS |
| 194 |
|
|
| 195 |
|
It is possible to compile programs to use different calling conventions using |
| 196 |
|
MSVC. Search the web for "calling conventions" for more information. To make it |
| 197 |
|
easier to change the calling convention for the exported functions in the |
| 198 |
|
PCRE library, the macro PCRE_CALL_CONVENTION is present in all the external |
| 199 |
|
definitions. It can be set externally when compiling (e.g. in CFLAGS). If it is |
| 200 |
|
not set, it defaults to empty; the default calling convention is then used |
| 201 |
|
(which is what is wanted most of the time). |
| 202 |
|
|
| 203 |
|
|
| 204 |
|
COMMENTS ABOUT WIN32 BUILDS (see also "BUILDING PCRE WITH CMAKE" below) |
| 205 |
|
|
| 206 |
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" |
| 207 |
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 |
| 208 |
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 |
| 209 |
some experimental, undocumented support for building using "cmake", which you |
support for building using CMake, which some users find a more straightforward |
| 210 |
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 |
| 211 |
time, the "cmake" process builds only a static library (not a dll), and the |
automatically when CMake is used. |
|
tests are not automatically run. |
|
| 212 |
|
|
| 213 |
The MinGW home page (http://www.mingw.org/) says this: |
The MinGW home page (http://www.mingw.org/) says this: |
| 214 |
|
|
| 240 |
releases of PCRE included the basic libpcre functions in libpcreposix. This no |
releases of PCRE included the basic libpcre functions in libpcreposix. This no |
| 241 |
longer happens.) |
longer happens.) |
| 242 |
|
|
| 243 |
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 |
| 244 |
define PCRE_STATIC before including pcre.h, otherwise the pcre_malloc() and |
"pcre.dll" under mingw32 using the "msys" environment. It provides "pcre.dll" |
| 245 |
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 |
| 246 |
unwanted results. |
particular, the pcretest and pcregrep programs are not built. An example of how |
| 247 |
|
this might be used is: |
| 248 |
|
|
| 249 |
|
./configure --enable-utf --disable-cpp CFLAGS="-03 -s"; make pcre.dll |
| 250 |
|
|
| 251 |
Using Cygwin's compiler generates libraries and executables that depend on |
Using Cygwin's compiler generates libraries and executables that depend on |
| 252 |
cygwin1.dll. If a library that is generated this way is distributed, |
cygwin1.dll. If a library that is generated this way is distributed, |
| 278 |
things in this area in future. |
things in this area in future. |
| 279 |
|
|
| 280 |
|
|
| 281 |
|
BUILDING PCRE ON WINDOWS WITH CMAKE |
| 282 |
|
|
| 283 |
|
CMake is an alternative build facility that can be used instead of the |
| 284 |
|
traditional Unix "configure". CMake version 2.4.7 supports Borland makefiles, |
| 285 |
|
MinGW makefiles, MSYS makefiles, NMake makefiles, UNIX makefiles, Visual Studio |
| 286 |
|
6, Visual Studio 7, Visual Studio 8, and Watcom W8. The following instructions |
| 287 |
|
were contributed by a PCRE user. |
| 288 |
|
|
| 289 |
|
1. Download CMake 2.4.7 or above from http://www.cmake.org/, install and ensure |
| 290 |
|
that cmake\bin is on your path. |
| 291 |
|
|
| 292 |
|
2. Unzip (retaining folder structure) the PCRE source tree into a source |
| 293 |
|
directory such as C:\pcre. |
| 294 |
|
|
| 295 |
|
3. Create a new, empty build directory: C:\pcre\build\ |
| 296 |
|
|
| 297 |
|
4. Run CMakeSetup from the Shell envirornment of your build tool, e.g., Msys |
| 298 |
|
for Msys/MinGW or Visual Studio Command Prompt for VC/VC++ |
| 299 |
|
|
| 300 |
|
5. Enter C:\pcre\pcre-xx and C:\pcre\build for the source and build |
| 301 |
|
directories, respectively |
| 302 |
|
|
| 303 |
|
6. Hit the "Configure" button. |
| 304 |
|
|
| 305 |
|
7. Select the particular IDE / build tool that you are using (Visual Studio, |
| 306 |
|
MSYS makefiles, MinGW makefiles, etc.) |
| 307 |
|
|
| 308 |
|
8. The GUI will then list several configuration options. This is where you can |
| 309 |
|
enable UTF-8 support, etc. |
| 310 |
|
|
| 311 |
|
9. Hit "Configure" again. The adjacent "OK" button should now be active. |
| 312 |
|
|
| 313 |
|
10. Hit "OK". |
| 314 |
|
|
| 315 |
|
11. The build directory should now contain a usable build system, be it a |
| 316 |
|
solution file for Visual Studio, makefiles for MinGW, etc. |
| 317 |
|
|
| 318 |
|
|
| 319 |
|
USE OF RELATIVE PATHS WITH CMAKE ON WINDOWS |
| 320 |
|
|
| 321 |
|
A PCRE user comments as follows: |
| 322 |
|
|
| 323 |
|
I thought that others may want to know the current state of |
| 324 |
|
CMAKE_USE_RELATIVE_PATHS support on Windows. |
| 325 |
|
|
| 326 |
|
Here it is: |
| 327 |
|
-- AdditionalIncludeDirectories is only partially modified (only the |
| 328 |
|
first path - see below) |
| 329 |
|
-- Only some of the contained file paths are modified - shown below for |
| 330 |
|
pcre.vcproj |
| 331 |
|
-- It properly modifies |
| 332 |
|
|
| 333 |
|
I am sure CMake people can fix that if they want to. Until then one will |
| 334 |
|
need to replace existing absolute paths in project files with relative |
| 335 |
|
paths manually (e.g. from VS) - relative to project file location. I did |
| 336 |
|
just that before being told to try CMAKE_USE_RELATIVE_PATHS. Not a big |
| 337 |
|
deal. |
| 338 |
|
|
| 339 |
|
AdditionalIncludeDirectories="E:\builds\pcre\build;E:\builds\pcre\pcre-7.5;" |
| 340 |
|
AdditionalIncludeDirectories=".;E:\builds\pcre\pcre-7.5;" |
| 341 |
|
|
| 342 |
|
RelativePath="pcre.h"> |
| 343 |
|
RelativePath="pcre_chartables.c"> |
| 344 |
|
RelativePath="pcre_chartables.c.rule"> |
| 345 |
|
|
| 346 |
|
|
| 347 |
|
TESTING WITH RUNTEST.BAT |
| 348 |
|
|
| 349 |
|
1. Copy RunTest.bat into the directory where pcretest.exe has been created. |
| 350 |
|
|
| 351 |
|
2. Edit RunTest.bat and insert a line that indentifies the relative location of |
| 352 |
|
the pcre source, e.g.: |
| 353 |
|
|
| 354 |
|
set srcdir=..\pcre-7.4-RC3 |
| 355 |
|
|
| 356 |
|
3. Run RunTest.bat from a command shell environment. Test outputs will |
| 357 |
|
automatically be compared to expected results, and discrepancies will |
| 358 |
|
identified in the console output. |
| 359 |
|
|
| 360 |
|
4. To test pcrecpp, run pcrecpp_unittest.exe, pcre_stringpiece_unittest.exe and |
| 361 |
|
pcre_scanner_unittest.exe. |
| 362 |
|
|
| 363 |
|
|
| 364 |
BUILDING UNDER WINDOWS WITH BCC5.5 |
BUILDING UNDER WINDOWS WITH BCC5.5 |
| 365 |
|
|
| 366 |
Michael Roy sent these comments about building PCRE under Windows with BCC5.5: |
Michael Roy sent these comments about building PCRE under Windows with BCC5.5: |
| 439 |
$! |
$! |
| 440 |
========================= |
========================= |
| 441 |
|
|
| 442 |
Last Updated: 05 July 2007 |
Last Updated: 09 July 2008 |
| 443 |
**** |
**** |