| 1 |
Compiling PCRE on non-Unix systems |
Compiling PCRE on non-Unix systems |
| 2 |
---------------------------------- |
---------------------------------- |
| 3 |
|
|
| 4 |
I (Philip Hazel) have no knowledge of Windows or VMS sytems and how their |
This document contains the following sections: |
| 5 |
|
|
| 6 |
|
General |
| 7 |
|
Generic instructions for the PCRE C library |
| 8 |
|
The C++ wrapper functions |
| 9 |
|
Building for virtual Pascal |
| 10 |
|
Stack size in Windows environments |
| 11 |
|
Linking programs in Windows environments |
| 12 |
|
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 |
| 17 |
|
Building PCRE on OpenVMS |
| 18 |
|
Building PCRE on Stratus OpenVOS |
| 19 |
|
|
| 20 |
|
|
| 21 |
|
GENERAL |
| 22 |
|
|
| 23 |
|
I (Philip Hazel) have no experience of Windows or VMS sytems and how their |
| 24 |
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 |
| 25 |
anything other than Unix-like systems are untested by me. |
anything other than Unix-like systems are untested by me. |
| 26 |
|
|
| 27 |
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 |
| 28 |
site that you may find useful, although a lot of them are now out-of-date. See |
format) in the Contrib directory on the FTP site: |
| 29 |
|
|
| 30 |
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Contrib |
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Contrib |
| 31 |
|
|
| 32 |
If you want to compile PCRE for a non-Unix system (or perhaps, more strictly, |
If you want to compile PCRE for a non-Unix system (especially for a system that |
| 33 |
for a system that does not support "configure" and "make" files), note that |
does not support "configure" and "make" files), note that the basic PCRE |
| 34 |
the basic PCRE library consists entirely of code written in Standard C, and so |
library consists entirely of code written in Standard C, and so should compile |
| 35 |
should compile successfully on any system that has a Standard C compiler and |
successfully on any system that has a Standard C compiler and library. The C++ |
| 36 |
library. The C++ wrapper functions are a separate issue (see below). |
wrapper functions are a separate issue (see below). |
| 37 |
|
|
| 38 |
|
The PCRE distribution includes a "configure" file for use by the Configure/Make |
| 39 |
GENERIC INSTRUCTIONS FOR THE C LIBRARY |
build system, as found in many Unix-like environments. There is also support |
| 40 |
|
for CMake, which some users prefer, especially in Windows environments. There |
| 41 |
The following are generic comments about building the PCRE C library "by hand". |
are some instructions for CMake under Windows in the section entitled "Building |
| 42 |
|
PCRE with CMake" below. CMake can also be used to build PCRE in Unix-like |
| 43 |
(1) Copy or rename the file config.h.generic as config.h, and edit the macro |
systems. |
| 44 |
settings that it contains to whatever is appropriate for your environment. |
|
| 45 |
In particular, if you want to force a specific value for newline, you can |
|
| 46 |
define the NEWLINE macro. |
GENERIC INSTRUCTIONS FOR THE PCRE C LIBRARY |
| 47 |
|
|
| 48 |
An alternative approach is not to edit config.h, but to use -D on the |
The following are generic instructions for building the PCRE C library "by |
| 49 |
compiler command line to make any changes that you need. |
hand": |
| 50 |
|
|
| 51 |
(2) Copy or rename the file pcre.h.generic as pcre.h. |
(1) Copy or rename the file config.h.generic as config.h, and edit the macro |
| 52 |
|
settings that it contains to whatever is appropriate for your environment. |
| 53 |
(3) Compile dftables.c as a stand-alone program, and then run it with |
In particular, if you want to force a specific value for newline, you can |
| 54 |
the single argument "pcre_chartables.c". This generates a set of standard |
define the NEWLINE macro. When you compile any of the PCRE modules, you |
| 55 |
character tables and writes them to that file. |
must specify -DHAVE_CONFIG_H to your compiler so that config.h is included |
| 56 |
|
in the sources. |
| 57 |
(4) Compile the following source files: |
|
| 58 |
|
An alternative approach is not to edit config.h, but to use -D on the |
| 59 |
pcre_chartables.c |
compiler command line to make any changes that you need to the |
| 60 |
pcre_compile.c |
configuration options. In this case -DHAVE_CONFIG_H must not be set. |
| 61 |
pcre_config.c |
|
| 62 |
pcre_dfa_exec.c |
NOTE: There have been occasions when the way in which certain parameters |
| 63 |
pcre_exec.c |
in config.h are used has changed between releases. (In the configure/make |
| 64 |
pcre_fullinfo.c |
world, this is handled automatically.) When upgrading to a new release, |
| 65 |
pcre_get.c |
you are strongly advised to review config.h.generic before re-using what |
| 66 |
pcre_globals.c |
you had previously. |
| 67 |
pcre_info.c |
|
| 68 |
pcre_maketables.c |
(2) Copy or rename the file pcre.h.generic as pcre.h. |
| 69 |
pcre_newline.c |
|
| 70 |
pcre_ord2utf8.c |
(3) EITHER: |
| 71 |
pcre_refcount.c |
Copy or rename file pcre_chartables.c.dist as pcre_chartables.c. |
| 72 |
pcre_study.c |
|
| 73 |
pcre_tables.c |
OR: |
| 74 |
pcre_try_flipped.c |
Compile dftables.c as a stand-alone program (using -DHAVE_CONFIG_H if |
| 75 |
pcre_ucp_searchfuncs.c |
you have set up config.h), and then run it with the single argument |
| 76 |
pcre_valid_utf8.c |
"pcre_chartables.c". This generates a set of standard character tables |
| 77 |
pcre_version.c |
and writes them to that file. The tables are generated using the default |
| 78 |
pcre_xclass.c |
C locale for your system. If you want to use a locale that is specified |
| 79 |
|
by LC_xxx environment variables, add the -L option to the dftables |
| 80 |
Now link them all together into an object library in whichever form your |
command. You must use this method if you are building on a system that |
| 81 |
system keeps such libraries. This is the basic PCRE C library. If your |
uses EBCDIC code. |
| 82 |
system has static and shared libraries, you may have to do this once for |
|
| 83 |
each type. |
The tables in pcre_chartables.c are defaults. The caller of PCRE can |
| 84 |
|
specify alternative tables at run time. |
| 85 |
(5) Similarly, compile pcreposix.c and link it (on its own) as the pcreposix |
|
| 86 |
library. |
(4) Ensure that you have the following header files: |
| 87 |
|
|
| 88 |
(6) Compile the test program pcretest.c. This needs the functions in the |
pcre_internal.h |
| 89 |
pcre and pcreposix libraries when linking. |
ucp.h |
| 90 |
|
|
| 91 |
(7) Run pcretest on the testinput files in the testdata directory, and check |
(5) Also ensure that you have the following file, which is #included as source |
| 92 |
that the output matches the corresponding testoutput files. Note that the |
when building a debugging version of PCRE, and is also used by pcretest. |
| 93 |
supplied files are in Unix format, with just LF characters as line |
|
| 94 |
terminators. You may need to edit them to change this if your system uses a |
pcre_printint.src |
| 95 |
different convention. |
|
| 96 |
|
(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 |
| 101 |
|
pcre_compile.c |
| 102 |
|
pcre_config.c |
| 103 |
|
pcre_dfa_exec.c |
| 104 |
|
pcre_exec.c |
| 105 |
|
pcre_fullinfo.c |
| 106 |
|
pcre_get.c |
| 107 |
|
pcre_globals.c |
| 108 |
|
pcre_info.c |
| 109 |
|
pcre_maketables.c |
| 110 |
|
pcre_newline.c |
| 111 |
|
pcre_ord2utf8.c |
| 112 |
|
pcre_refcount.c |
| 113 |
|
pcre_study.c |
| 114 |
|
pcre_tables.c |
| 115 |
|
pcre_try_flipped.c |
| 116 |
|
pcre_ucd.c |
| 117 |
|
pcre_valid_utf8.c |
| 118 |
|
pcre_version.c |
| 119 |
|
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) If you have defined SUPPORT_JIT in config.h, you must also compile |
| 127 |
|
|
| 128 |
|
pcre_jit_compile.c |
| 129 |
|
|
| 130 |
|
This file #includes sources from the sljit subdirectory, where there |
| 131 |
|
should be 16 files, all of whose names begin with "sljit". |
| 132 |
|
|
| 133 |
|
(8) Now link all the compiled code into an object library in whichever form |
| 134 |
|
your system keeps such libraries. This is the basic PCRE C library. If |
| 135 |
|
your system has static and shared libraries, you may have to do this once |
| 136 |
|
for each type. |
| 137 |
|
|
| 138 |
|
(9) Similarly, if you want to build the POSIX wrapper functions, ensure that |
| 139 |
|
you have the pcreposix.h file and then compile pcreposix.c (remembering |
| 140 |
|
-DHAVE_CONFIG_H if necessary). Link the result (on its own) as the |
| 141 |
|
pcreposix library. |
| 142 |
|
|
| 143 |
|
(10) Compile the test program pcretest.c (again, don't forget -DHAVE_CONFIG_H). |
| 144 |
|
This needs the functions in the PCRE library when linking. It also needs |
| 145 |
|
the pcreposix wrapper functions unless you compile it with -DNOPOSIX. The |
| 146 |
|
pcretest.c program also needs the pcre_printint.src source file, which it |
| 147 |
|
#includes. |
| 148 |
|
|
| 149 |
|
(11) Run pcretest on the testinput files in the testdata directory, and check |
| 150 |
|
that the output matches the corresponding testoutput files. Some tests are |
| 151 |
|
relevant only when certain build-time options are selected. For example, |
| 152 |
|
test 4 is for UTF-8 support, and will not run if you have build PCRE |
| 153 |
|
without it. See the comments at the start of each testinput file. If you |
| 154 |
|
have a suitable Unix-like shell, the RunTest script will run the |
| 155 |
|
appropriate tests for you. |
| 156 |
|
|
| 157 |
|
Note that the supplied files are in Unix format, with just LF characters |
| 158 |
|
as line terminators. You may need to edit them to change this if your |
| 159 |
|
system uses a different convention. If you are using Windows, you probably |
| 160 |
|
should use the wintestinput3 file instead of testinput3 (and the |
| 161 |
|
corresponding output file). This is a locale test; wintestinput3 sets the |
| 162 |
|
locale to "french" rather than "fr_FR", and there some minor output |
| 163 |
|
differences. |
| 164 |
|
|
| 165 |
|
(12) If you have built PCRE with SUPPORT_JIT, the JIT features will be tested |
| 166 |
|
by the testdata files. However, you might also like to build and run |
| 167 |
|
the JIT test program, pcre_jit_test.c. |
| 168 |
|
|
| 169 |
(8) If you want to use the pcregrep command, compile and link pcregrep.c; it |
(13) If you want to use the pcregrep command, compile and link pcregrep.c; it |
| 170 |
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). |
| 171 |
|
|
| 172 |
|
|
| 173 |
THE C++ WRAPPER FUNCTIONS |
THE C++ WRAPPER FUNCTIONS |
| 182 |
|
|
| 183 |
BUILDING FOR VIRTUAL PASCAL |
BUILDING FOR VIRTUAL PASCAL |
| 184 |
|
|
| 185 |
Stefan Weber contributed the following files in the distribution for building |
A script for building PCRE using Borland's C++ compiler for use with VPASCAL |
| 186 |
PCRE for use with VP/Borland: !compile.txt, !linklib.txt, makevp.bat, |
was contributed by Alexander Tokarev. Stefan Weber updated the script and added |
| 187 |
pcregexp.pas. |
additional files. The following files in the distribution are for building PCRE |
| 188 |
|
for use with VP/Borland: makevp_c.txt, makevp_l.txt, makevp.bat, pcregexp.pas. |
| 189 |
|
|
| 190 |
|
|
| 191 |
|
STACK SIZE IN WINDOWS ENVIRONMENTS |
| 192 |
|
|
| 193 |
|
The default processor stack size of 1Mb in some Windows environments is too |
| 194 |
|
small for matching patterns that need much recursion. In particular, test 2 may |
| 195 |
|
fail because of this. Normally, running out of stack causes a crash, but there |
| 196 |
|
have been cases where the test program has just died silently. See your linker |
| 197 |
|
documentation for how to increase stack size if you experience problems. The |
| 198 |
|
Linux default of 8Mb is a reasonable choice for the stack, though even that can |
| 199 |
|
be too small for some pattern/subject combinations. |
| 200 |
|
|
| 201 |
|
PCRE has a compile configuration option to disable the use of stack for |
| 202 |
|
recursion so that heap is used instead. However, pattern matching is |
| 203 |
|
significantly slower when this is done. There is more about stack usage in the |
| 204 |
|
"pcrestack" documentation. |
| 205 |
|
|
| 206 |
|
|
| 207 |
|
LINKING PROGRAMS IN WINDOWS ENVIRONMENTS |
| 208 |
|
|
| 209 |
|
If you want to statically link a program against a PCRE library in the form of |
| 210 |
|
a non-dll .a file, you must define PCRE_STATIC before including pcre.h or |
| 211 |
|
pcrecpp.h, otherwise the pcre_malloc() and pcre_free() exported functions will |
| 212 |
|
be declared __declspec(dllimport), with unwanted results. |
| 213 |
|
|
| 214 |
|
|
| 215 |
|
CALLING CONVENTIONS IN WINDOWS ENVIRONMENTS |
| 216 |
|
|
| 217 |
|
It is possible to compile programs to use different calling conventions using |
| 218 |
|
MSVC. Search the web for "calling conventions" for more information. To make it |
| 219 |
|
easier to change the calling convention for the exported functions in the |
| 220 |
|
PCRE library, the macro PCRE_CALL_CONVENTION is present in all the external |
| 221 |
|
definitions. It can be set externally when compiling (e.g. in CFLAGS). If it is |
| 222 |
|
not set, it defaults to empty; the default calling convention is then used |
| 223 |
|
(which is what is wanted most of the time). |
| 224 |
|
|
| 225 |
|
|
| 226 |
|
COMMENTS ABOUT WIN32 BUILDS (see also "BUILDING PCRE WITH CMAKE" below) |
| 227 |
|
|
| 228 |
|
There are two ways of building PCRE using the "configure, make, make install" |
| 229 |
|
paradigm on Windows systems: using MinGW or using Cygwin. These are not at all |
| 230 |
|
the same thing; they are completely different from each other. There is also |
| 231 |
|
support for building using CMake, which some users find a more straightforward |
| 232 |
|
way of building PCRE under Windows. However, the tests are not run |
| 233 |
|
automatically when CMake is used. |
| 234 |
|
|
| 235 |
|
The MinGW home page (http://www.mingw.org/) says this: |
| 236 |
|
|
| 237 |
|
MinGW: A collection of freely available and freely distributable Windows |
| 238 |
|
specific header files and import libraries combined with GNU toolsets that |
| 239 |
|
allow one to produce native Windows programs that do not rely on any |
| 240 |
|
3rd-party C runtime DLLs. |
| 241 |
|
|
| 242 |
|
The Cygwin home page (http://www.cygwin.com/) says this: |
| 243 |
|
|
| 244 |
|
Cygwin is a Linux-like environment for Windows. It consists of two parts: |
| 245 |
|
|
| 246 |
|
. A DLL (cygwin1.dll) which acts as a Linux API emulation layer providing |
| 247 |
|
substantial Linux API functionality |
| 248 |
|
|
| 249 |
|
. A collection of tools which provide Linux look and feel. |
| 250 |
|
|
| 251 |
|
The Cygwin DLL currently works with all recent, commercially released x86 32 |
| 252 |
|
bit and 64 bit versions of Windows, with the exception of Windows CE. |
| 253 |
|
|
| 254 |
|
On both MinGW and Cygwin, PCRE should build correctly using: |
| 255 |
|
|
| 256 |
|
./configure && make && make install |
| 257 |
|
|
| 258 |
|
This should create two libraries called libpcre and libpcreposix, and, if you |
| 259 |
|
have enabled building the C++ wrapper, a third one called libpcrecpp. These are |
| 260 |
|
independent libraries: when you link with libpcreposix or libpcrecpp you must |
| 261 |
|
also link with libpcre, which contains the basic functions. (Some earlier |
| 262 |
|
releases of PCRE included the basic libpcre functions in libpcreposix. This no |
| 263 |
|
longer happens.) |
| 264 |
|
|
| 265 |
|
A user submitted a special-purpose patch that makes it easy to create |
| 266 |
|
"pcre.dll" under mingw32 using the "msys" environment. It provides "pcre.dll" |
| 267 |
|
as a special target. If you use this target, no other files are built, and in |
| 268 |
|
particular, the pcretest and pcregrep programs are not built. An example of how |
| 269 |
|
this might be used is: |
| 270 |
|
|
| 271 |
|
./configure --enable-utf --disable-cpp CFLAGS="-03 -s"; make pcre.dll |
| 272 |
|
|
| 273 |
|
Using Cygwin's compiler generates libraries and executables that depend on |
| 274 |
|
cygwin1.dll. If a library that is generated this way is distributed, |
| 275 |
|
cygwin1.dll has to be distributed as well. Since cygwin1.dll is under the GPL |
| 276 |
|
licence, this forces not only PCRE to be under the GPL, but also the entire |
| 277 |
|
application. A distributor who wants to keep their own code proprietary must |
| 278 |
|
purchase an appropriate Cygwin licence. |
| 279 |
|
|
| 280 |
|
MinGW has no such restrictions. The MinGW compiler generates a library or |
| 281 |
|
executable that can run standalone on Windows without any third party dll or |
| 282 |
|
licensing issues. |
| 283 |
|
|
| 284 |
|
But there is more complication: |
| 285 |
|
|
| 286 |
|
If a Cygwin user uses the -mno-cygwin Cygwin gcc flag, what that really does is |
| 287 |
|
to tell Cygwin's gcc to use the MinGW gcc. Cygwin's gcc is only acting as a |
| 288 |
|
front end to MinGW's gcc (if you install Cygwin's gcc, you get both Cygwin's |
| 289 |
|
gcc and MinGW's gcc). So, a user can: |
| 290 |
|
|
| 291 |
|
. Build native binaries by using MinGW or by getting Cygwin and using |
| 292 |
|
-mno-cygwin. |
| 293 |
|
|
| 294 |
|
. Build binaries that depend on cygwin1.dll by using Cygwin with the normal |
| 295 |
|
compiler flags. |
| 296 |
|
|
| 297 |
|
The test files that are supplied with PCRE are in Unix format, with LF |
| 298 |
|
characters as line terminators. It may be necessary to change the line |
| 299 |
|
terminators in order to get some of the tests to work. |
| 300 |
|
|
| 301 |
|
|
| 302 |
|
BUILDING PCRE ON WINDOWS WITH CMAKE |
| 303 |
|
|
| 304 |
|
CMake is an alternative configuration facility that can be used instead of the |
| 305 |
|
traditional Unix "configure". CMake creates project files (make files, solution |
| 306 |
|
files, etc.) tailored to numerous development environments, including Visual |
| 307 |
|
Studio, Borland, Msys, MinGW, NMake, and Unix. The following instructions |
| 308 |
|
were contributed by a PCRE user. |
| 309 |
|
|
| 310 |
|
1. Install the latest CMake version available from http://www.cmake.org/, and |
| 311 |
|
ensure that cmake\bin is on your path. |
| 312 |
|
|
| 313 |
|
2. Unzip (retaining folder structure) the PCRE source tree into a source |
| 314 |
|
directory such as C:\pcre. |
| 315 |
|
|
| 316 |
|
3. Create a new, empty build directory, for example C:\pcre\build\ |
| 317 |
|
|
| 318 |
|
4. Run cmake-gui from the Shell envirornment of your build tool, for example, |
| 319 |
|
Msys for Msys/MinGW or Visual Studio Command Prompt for VC/VC++. |
| 320 |
|
|
| 321 |
|
5. Enter C:\pcre\pcre-xx and C:\pcre\build for the source and build |
| 322 |
|
directories, respectively. |
| 323 |
|
|
| 324 |
|
6. Hit the "Configure" button. |
| 325 |
|
|
| 326 |
|
7. Select the particular IDE / build tool that you are using (Visual |
| 327 |
|
Studio, MSYS makefiles, MinGW makefiles, etc.) |
| 328 |
|
|
| 329 |
|
8. The GUI will then list several configuration options. This is where |
| 330 |
|
you can enable UTF-8 support or other PCRE optional features. |
| 331 |
|
|
| 332 |
|
9. Hit "Configure" again. The adjacent "Generate" button should now be |
| 333 |
|
active. |
| 334 |
|
|
| 335 |
|
10. Hit "Generate". |
| 336 |
|
|
| 337 |
|
11. The build directory should now contain a usable build system, be it a |
| 338 |
|
solution file for Visual Studio, makefiles for MinGW, etc. Exit from |
| 339 |
|
cmake-gui and use the generated build system with your compiler or IDE. |
| 340 |
|
|
| 341 |
|
|
| 342 |
|
USE OF RELATIVE PATHS WITH CMAKE ON WINDOWS |
| 343 |
|
|
| 344 |
|
A PCRE user comments as follows: |
| 345 |
|
|
| 346 |
|
I thought that others may want to know the current state of |
| 347 |
|
CMAKE_USE_RELATIVE_PATHS support on Windows. |
| 348 |
|
|
| 349 |
|
Here it is: |
| 350 |
|
-- AdditionalIncludeDirectories is only partially modified (only the |
| 351 |
|
first path - see below) |
| 352 |
|
-- Only some of the contained file paths are modified - shown below for |
| 353 |
|
pcre.vcproj |
| 354 |
|
-- It properly modifies |
| 355 |
|
|
| 356 |
|
I am sure CMake people can fix that if they want to. Until then one will |
| 357 |
|
need to replace existing absolute paths in project files with relative |
| 358 |
|
paths manually (e.g. from VS) - relative to project file location. I did |
| 359 |
|
just that before being told to try CMAKE_USE_RELATIVE_PATHS. Not a big |
| 360 |
|
deal. |
| 361 |
|
|
| 362 |
|
AdditionalIncludeDirectories="E:\builds\pcre\build;E:\builds\pcre\pcre-7.5;" |
| 363 |
|
AdditionalIncludeDirectories=".;E:\builds\pcre\pcre-7.5;" |
| 364 |
|
|
| 365 |
|
RelativePath="pcre.h"> |
| 366 |
|
RelativePath="pcre_chartables.c"> |
| 367 |
|
RelativePath="pcre_chartables.c.rule"> |
| 368 |
|
|
| 369 |
|
|
| 370 |
|
TESTING WITH RUNTEST.BAT |
| 371 |
|
|
| 372 |
|
1. Copy RunTest.bat into the directory where pcretest.exe has been created. |
| 373 |
|
|
| 374 |
|
2. Edit RunTest.bat and insert a line that indentifies the relative location of |
| 375 |
|
the pcre source, e.g.: |
| 376 |
|
|
| 377 |
|
set srcdir=..\pcre-7.4-RC3 |
| 378 |
|
|
| 379 |
|
3. Run RunTest.bat from a command shell environment. Test outputs will |
| 380 |
|
automatically be compared to expected results, and discrepancies will |
| 381 |
|
identified in the console output. |
| 382 |
|
|
| 383 |
|
4. To test pcrecpp, run pcrecpp_unittest.exe, pcre_stringpiece_unittest.exe and |
| 384 |
|
pcre_scanner_unittest.exe. |
| 385 |
|
|
| 386 |
|
|
| 387 |
BUILDING UNDER WINDOWS WITH BCC5.5 |
BUILDING UNDER WINDOWS WITH BCC5.5 |
| 398 |
line. |
line. |
| 399 |
|
|
| 400 |
|
|
| 401 |
OUT-OF-DATE COMMENTS ABOUT WIN32 BUILDS |
BUILDING UNDER WINDOWS CE WITH VISUAL STUDIO 200x |
| 402 |
|
|
| 403 |
[These comments need looking at by someone who knows about Windows.] |
Vincent Richomme sent a zip archive of files to help with this process. They |
| 404 |
|
can be found in the file "pcre-vsbuild.zip" in the Contrib directory of the FTP |
| 405 |
Some help in building a Win32 DLL of PCRE in GnuWin32 environments was |
site. |
|
contributed by Paul Sokolovsky. These environments are Mingw32 |
|
|
(http://www.xraylith.wisc.edu/~khan/software/gnu-win32/) and CygWin |
|
|
(http://sourceware.cygnus.com/cygwin/). Paul comments: |
|
|
|
|
|
For CygWin, set CFLAGS=-mno-cygwin, and do 'make dll'. You'll get |
|
|
pcre.dll (containing pcreposix also), libpcre.dll.a, and dynamically |
|
|
linked pgrep and pcretest. If you have /bin/sh, run RunTest (three |
|
|
main test go ok, locale not supported). |
|
|
|
|
|
Changes to do MinGW with autoconf 2.50 were supplied by Fred Cox |
|
|
<sailorFred@yahoo.com>, who comments as follows: |
|
|
|
|
|
If you are using the PCRE DLL, the normal Unix style configure && make && |
|
|
make check && make install should just work[*]. If you want to statically |
|
|
link against the .a file, you must define PCRE_STATIC before including |
|
|
pcre.h, otherwise the pcre_malloc and pcre_free exported functions will be |
|
|
declared __declspec(dllimport), with hilarious results. See the configure.in |
|
|
and pcretest.c for how it is done for the static test. |
|
|
|
|
|
Also, there will only be a libpcre.la, not a libpcreposix.la, as you |
|
|
would expect from the Unix version. The single DLL includes the pcreposix |
|
|
interface. |
|
|
|
|
|
[*] But note that the supplied test files are in Unix format, with just LF |
|
|
characters as line terminators. You will have to edit them to change to CR LF |
|
|
terminators. |
|
|
|
|
|
A script for building PCRE using Borland's C++ compiler for use with VPASCAL |
|
|
was contributed by Alexander Tokarev. It is called makevp.bat. |
|
|
|
|
|
These are some further comments about Win32 builds from Mark Evans. They |
|
|
were contributed before Fred Cox's changes were made, so it is possible that |
|
|
they may no longer be relevant. |
|
|
|
|
|
"The documentation for Win32 builds is a bit shy. Under MSVC6 I |
|
|
followed their instructions to the letter, but there were still |
|
|
some things missing. |
|
|
|
|
|
(1) Must #define STATIC for entire project if linking statically. |
|
|
(I see no reason to use DLLs for code this compact.) This of |
|
|
course is a project setting in MSVC under Preprocessor. |
|
|
|
|
|
(2) Missing some #ifdefs relating to the function pointers |
|
|
pcre_malloc and pcre_free. See my solution below. (The stubs |
|
|
may not be mandatory but they made me feel better.)" |
|
|
|
|
|
========================= |
|
|
#ifdef _WIN32 |
|
|
#include <malloc.h> |
|
|
|
|
|
void* malloc_stub(size_t N) |
|
|
{ return malloc(N); } |
|
|
void free_stub(void* p) |
|
|
{ free(p); } |
|
|
void *(*pcre_malloc)(size_t) = &malloc_stub; |
|
|
void (*pcre_free)(void *) = &free_stub; |
|
|
|
|
|
#else |
|
|
|
|
|
void *(*pcre_malloc)(size_t) = malloc; |
|
|
void (*pcre_free)(void *) = free; |
|
|
|
|
|
#endif |
|
|
========================= |
|
| 406 |
|
|
| 407 |
|
|
| 408 |
BUILDING PCRE ON OPENVMS |
BUILDING PCRE ON OPENVMS |
| 469 |
$! |
$! |
| 470 |
========================= |
========================= |
| 471 |
|
|
| 472 |
|
|
| 473 |
|
BUILDING PCRE ON STRATUS OPENVOS |
| 474 |
|
|
| 475 |
|
These notes on the port of PCRE to VOS (lightly edited) were supplied by |
| 476 |
|
Ashutosh Warikoo, whose email address has the local part awarikoo and the |
| 477 |
|
domain nse.co.in. The port was for version 7.9 in August 2009. |
| 478 |
|
|
| 479 |
|
1. Building PCRE |
| 480 |
|
|
| 481 |
|
I built pcre on OpenVOS Release 17.0.1at using GNU Tools 3.4a without any |
| 482 |
|
problems. I used the following packages to build PCRE: |
| 483 |
|
|
| 484 |
|
ftp://ftp.stratus.com/pub/vos/posix/ga/posix.save.evf.gz |
| 485 |
|
|
| 486 |
|
Please read and follow the instructions that come with these packages. To start |
| 487 |
|
the build of pcre, from the root of the package type: |
| 488 |
|
|
| 489 |
|
./build.sh |
| 490 |
|
|
| 491 |
|
2. Installing PCRE |
| 492 |
|
|
| 493 |
|
Once you have successfully built PCRE, login to the SysAdmin group, switch to |
| 494 |
|
the root user, and type |
| 495 |
|
|
| 496 |
|
[ !create_dir (master_disk)>usr --if needed ] |
| 497 |
|
[ !create_dir (master_disk)>usr>local --if needed ] |
| 498 |
|
!gmake install |
| 499 |
|
|
| 500 |
|
This installs PCRE and its man pages into /usr/local. You can add |
| 501 |
|
(master_disk)>usr>local>bin to your command search paths, or if you are in |
| 502 |
|
BASH, add /usr/local/bin to the PATH environment variable. |
| 503 |
|
|
| 504 |
|
4. Restrictions |
| 505 |
|
|
| 506 |
|
This port requires readline library optionally. However during the build I |
| 507 |
|
faced some yet unexplored errors while linking with readline. As it was an |
| 508 |
|
optional component I chose to disable it. |
| 509 |
|
|
| 510 |
|
5. Known Problems |
| 511 |
|
|
| 512 |
|
I ran a the test suite, but you will have to be your own judge of whether this |
| 513 |
|
command, and this port, suits your purposes. If you find any problems that |
| 514 |
|
appear to be related to the port itself, please let me know. Please see the |
| 515 |
|
build.log file in the root of the package also. |
| 516 |
|
|
| 517 |
|
|
| 518 |
|
========================= |
| 519 |
|
Last Updated: 23 August 2011 |
| 520 |
**** |
**** |