/[pcre]/code/trunk/NON-UNIX-USE
ViewVC logotype

Diff of /code/trunk/NON-UNIX-USE

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 53 by nigel, Sat Feb 24 21:39:42 2007 UTC revision 243 by ph10, Thu Sep 13 09:28:14 2007 UTC
# Line 1  Line 1 
1  Compiling PCRE on non-Unix systems  Compiling PCRE on non-Unix systems
2  ----------------------------------  ----------------------------------
3    
4  If you want to compile PCRE for a non-Unix system, note that it consists  This document contains the following sections:
 entirely of code written in Standard C, and so should compile successfully  
 on any machine with a Standard C compiler and library, using normal compiling  
 commands to do the following:  
   
 (1) Copy or rename the file config.in as config.h, and change the macros that  
 define HAVE_STRERROR and HAVE_MEMMOVE to define them as 1 rather than 0.  
 Unfortunately, because of the way Unix autoconf works, the default setting has  
 to be 0. You may also want to make changes to other macros in config.h. In  
 particular, if you want to force a specific value for newline, you can define  
 the NEWLINE macro. The default is to use '\n', thereby using whatever value  
 your compiler gives to '\n'.  
   
 (2) Copy or rename the file pcre.in as pcre.h, and change the macro definitions  
 for PCRE_MAJOR, PCRE_MINOR, and PCRE_DATE near its start to the values set in  
 configure.in.  
   
 (3) Compile dftables.c as a stand-alone program, and then run it with  
 the standard output sent to chartables.c. This generates a set of standard  
 character tables.  
   
 (4) Compile maketables.c, get.c, study.c and pcre.c and link them all  
 together into an object library in whichever form your system keeps such  
 libraries. This is the pcre library (chartables.c gets included by means of an  
 #include directive).  
   
 (5) Similarly, compile pcreposix.c and link it as the pcreposix library.  
   
 (6) Compile the test program pcretest.c. This needs the functions in the  
 pcre and pcreposix libraries when linking.  
   
 (7) Run pcretest on the testinput files in the testdata directory, and check  
 that the output matches the corresponding testoutput files. You must use the  
 -i option when checking testinput2.  
   
 If you have a system without "configure" but where you can use a Makefile, edit  
 Makefile.in to create Makefile, substituting suitable values for the variables  
 at the head of the file.  
   
 Some help in building a Win32 DLL of PCRE in GnuWin32 environments was  
 contributed by Paul.Sokolovsky@technologist.com. 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).  
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      Comments about Win32 builds
12      Building under Windows with BCC5.5
13      Building PCRE on OpenVMS
14    
15    
16    GENERAL
17    
18    I (Philip Hazel) have no experience of Windows or VMS sytems and how their
19    libraries work. The items in the PCRE distribution and Makefile that relate to
20    anything other than Unix-like systems are untested by me.
21    
22    There are some other comments and files in the Contrib directory on the ftp
23    site that you may find useful. See
24    
25      ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Contrib
26    
27    If you want to compile PCRE for a non-Unix system (especially for a system that
28    does not support "configure" and "make" files), note that the basic PCRE
29    library consists entirely of code written in Standard C, and so should compile
30    successfully on any system that has a Standard C compiler and library. The C++
31    wrapper functions are a separate issue (see below).
32    
33    The PCRE distribution contains some experimental support for "cmake", but this
34    is incomplete and not documented. However if you are a "cmake" user you might
35    like to try building with "cmake".
36    
37    
38    GENERIC INSTRUCTIONS FOR THE PCRE C LIBRARY
39    
40    The following are generic comments about building the PCRE C library "by hand".
41    
42     (1) Copy or rename the file config.h.generic as config.h, and edit the macro
43         settings that it contains to whatever is appropriate for your environment.
44         In particular, if you want to force a specific value for newline, you can
45         define the NEWLINE macro. When you compile any of the PCRE modules, you
46         must specify -DHAVE_CONFIG_H to your compiler so that config.h is included
47         in the sources.
48    
49         An alternative approach is not to edit config.h, but to use -D on the
50         compiler command line to make any changes that you need to the
51         configuration options. In this case -DHAVE_CONFIG_H must not be set.
52    
53         NOTE: There have been occasions when the way in which certain parameters
54         in config.h are used has changed between releases. (In the configure/make
55         world, this is handled automatically.) When upgrading to a new release,
56         you are strongly advised to review config.h.generic before re-using what
57         you had previously.
58    
59     (2) Copy or rename the file pcre.h.generic as pcre.h.
60    
61     (3) EITHER:
62           Copy or rename file pcre_chartables.c.dist as pcre_chartables.c.
63    
64         OR:
65           Compile dftables.c as a stand-alone program (using -DHAVE_CONFIG_H if
66           you have set up config.h), and then run it with the single argument
67           "pcre_chartables.c". This generates a set of standard character tables
68           and writes them to that file. The tables are generated using the default
69           C locale for your system. If you want to use a locale that is specified
70           by LC_xxx environment variables, add the -L option to the dftables
71           command. You must use this method if you are building on a system that
72           uses EBCDIC code.
73    
74         The tables in pcre_chartables.c are defaults. The caller of PCRE can
75         specify alternative tables at run time.
76    
77     (4) Ensure that you have the following header files:
78    
79           pcre_internal.h
80           ucp.h
81           ucpinternal.h
82           ucptable.h
83    
84     (5) Also ensure that you have the following file, which is #included as source
85         when building a debugging version of PCRE and is also used by pcretest.
86    
87           pcre_printint.src
88    
89     (6) Compile the following source files, setting -DHAVE_CONFIG_H as a compiler
90         option if you have set up config.h with your configuration, or else use
91         other -D settings to change the configuration as required.
92    
93           pcre_chartables.c
94           pcre_compile.c
95           pcre_config.c
96           pcre_dfa_exec.c
97           pcre_exec.c
98           pcre_fullinfo.c
99           pcre_get.c
100           pcre_globals.c
101           pcre_info.c
102           pcre_maketables.c
103           pcre_newline.c
104           pcre_ord2utf8.c
105           pcre_refcount.c
106           pcre_study.c
107           pcre_tables.c
108           pcre_try_flipped.c
109           pcre_ucp_searchfuncs.c
110           pcre_valid_utf8.c
111           pcre_version.c
112           pcre_xclass.c
113    
114         Make sure that you include -I. in the compiler command (or equivalent for
115         an unusual compiler) so that all included PCRE header files are first
116         sought in the current directory. Otherwise you run the risk of picking up
117         a previously-installed file from somewhere else.
118    
119     (7) Now link all the compiled code into an object library in whichever form
120         your system keeps such libraries. This is the basic PCRE C library. If
121         your system has static and shared libraries, you may have to do this once
122         for each type.
123    
124     (8) Similarly, compile pcreposix.c (remembering -DHAVE_CONFIG_H if necessary)
125         and link the result (on its own) as the pcreposix library.
126    
127     (9) Compile the test program pcretest.c (again, don't forget -DHAVE_CONFIG_H).
128         This needs the functions in the pcre and pcreposix libraries when linking.
129         It also needs the pcre_printint.src source file, which it #includes.
130    
131    (10) Run pcretest on the testinput files in the testdata directory, and check
132         that the output matches the corresponding testoutput files. Note that the
133         supplied files are in Unix format, with just LF characters as line
134         terminators. You may need to edit them to change this if your system uses
135         a different convention.
136    
137    (11) If you want to use the pcregrep command, compile and link pcregrep.c; it
138         uses only the basic PCRE library (it does not need the pcreposix library).
139    
140    
141    THE C++ WRAPPER FUNCTIONS
142    
143    The PCRE distribution also contains some C++ wrapper functions and tests,
144    contributed by Google Inc. On a system that can use "configure" and "make",
145    the functions are automatically built into a library called pcrecpp. It should
146    be straightforward to compile the .cc files manually on other systems. The
147    files called xxx_unittest.cc are test programs for each of the corresponding
148    xxx.cc files.
149    
150    
151    BUILDING FOR VIRTUAL PASCAL
152    
153    A script for building PCRE using Borland's C++ compiler for use with VPASCAL
154    was contributed by Alexander Tokarev. Stefan Weber updated the script and added
155    additional files. The following files in the distribution are for building PCRE
156    for use with VP/Borland: makevp_c.txt, makevp_l.txt, makevp.bat, pcregexp.pas.
157    
158    
159    STACK SIZE IN WINDOWS ENVIRONMENTS
160    
161    The default processor stack size of 1Mb in some Windows environments is too
162    small for matching patterns that need much recursion. In particular, test 2 may
163    fail because of this. Normally, running out of stack causes a crash, but there
164    have been cases where the test program has just died silently. See your linker
165    documentation for how to increase stack size if you experience problems. The
166    Linux default of 8Mb is a reasonable choice for the stack, though even that can
167    be too small for some pattern/subject combinations. There is more about stack
168    usage in the "pcrestack" documentation.
169    
170    
171    COMMENTS ABOUT WIN32 BUILDS
172    
173    There are two ways of building PCRE using the "configure, make, make install"
174    paradigm on Windows systems: using MinGW or using Cygwin. These are not at all
175    the same thing; they are completely different from each other. There is also
176    some experimental, undocumented support for building using "cmake", which you
177    might like to try if you are familiar with "cmake". However, at the present
178    time, the "cmake" process builds only a static library (not a dll), and the
179    tests are not automatically run.
180    
181    The MinGW home page (http://www.mingw.org/) says this:
182    
183      MinGW: A collection of freely available and freely distributable Windows
184      specific header files and import libraries combined with GNU toolsets that
185      allow one to produce native Windows programs that do not rely on any
186      3rd-party C runtime DLLs.
187    
188    The Cygwin home page (http://www.cygwin.com/) says this:
189    
190      Cygwin is a Linux-like environment for Windows. It consists of two parts:
191    
192      . A DLL (cygwin1.dll) which acts as a Linux API emulation layer providing
193        substantial Linux API functionality
194    
195      . A collection of tools which provide Linux look and feel.
196    
197      The Cygwin DLL currently works with all recent, commercially released x86 32
198      bit and 64 bit versions of Windows, with the exception of Windows CE.
199    
200    On both MinGW and Cygwin, PCRE should build correctly using:
201    
202      ./configure && make && make install
203    
204    This should create two libraries called libpcre and libpcreposix, and, if you
205    have enabled building the C++ wrapper, a third one called libpcrecpp. These are
206    independent libraries: when you like with libpcreposix or libpcrecpp you must
207    also link with libpcre, which contains the basic functions. (Some earlier
208    releases of PCRE included the basic libpcre functions in libpcreposix. This no
209    longer happens.)
210    
211    If you want to statically link your program against a non-dll .a file, you must
212    define PCRE_STATIC before including pcre.h, otherwise the pcre_malloc() and
213    pcre_free() exported functions will be declared __declspec(dllimport), with
214    unwanted results.
215    
216    Using Cygwin's compiler generates libraries and executables that depend on
217    cygwin1.dll. If a library that is generated this way is distributed,
218    cygwin1.dll has to be distributed as well. Since cygwin1.dll is under the GPL
219    licence, this forces not only PCRE to be under the GPL, but also the entire
220    application. A distributor who wants to keep their own code proprietary must
221    purchase an appropriate Cygwin licence.
222    
223    MinGW has no such restrictions. The MinGW compiler generates a library or
224    executable that can run standalone on Windows without any third party dll or
225    licensing issues.
226    
227    But there is more complication:
228    
229    If a Cygwin user uses the -mno-cygwin Cygwin gcc flag, what that really does is
230    to tell Cygwin's gcc to use the MinGW gcc. Cygwin's gcc is only acting as a
231    front end to MinGW's gcc (if you install Cygwin's gcc, you get both Cygwin's
232    gcc and MinGW's gcc). So, a user can:
233    
234    . Build native binaries by using MinGW or by getting Cygwin and using
235      -mno-cygwin.
236    
237    . Build binaries that depend on cygwin1.dll by using Cygwin with the normal
238      compiler flags.
239    
240    The test files that are supplied with PCRE are in Unix format, with LF
241    characters as line terminators. It may be necessary to change the line
242    terminators in order to get some of the tests to work. We hope to improve
243    things in this area in future.
244    
245    
246    BUILDING UNDER WINDOWS WITH BCC5.5
247    
248    Michael Roy sent these comments about building PCRE under Windows with BCC5.5:
249    
250      Some of the core BCC libraries have a version of PCRE from 1998 built in,
251      which can lead to pcre_exec() giving an erroneous PCRE_ERROR_NULL from a
252      version mismatch. I'm including an easy workaround below, if you'd like to
253      include it in the non-unix instructions:
254    
255      When linking a project with BCC5.5, pcre.lib must be included before any of
256      the libraries cw32.lib, cw32i.lib, cw32mt.lib, and cw32mti.lib on the command
257      line.
258    
259    
260    BUILDING PCRE ON OPENVMS
261    
262    Dan Mooney sent the following comments about building PCRE on OpenVMS. They
263    relate to an older version of PCRE that used fewer source files, so the exact
264    commands will need changing. See the current list of source files above.
265    
266    "It was quite easy to compile and link the library. I don't have a formal
267    make file but the attached file [reproduced below] contains the OpenVMS DCL
268    commands I used to build the library. I had to add #define
269    POSIX_MALLOC_THRESHOLD 10 to pcre.h since it was not defined anywhere.
270    
271    The library was built on:
272    O/S: HP OpenVMS v7.3-1
273    Compiler: Compaq C v6.5-001-48BCD
274    Linker: vA13-01
275    
276    The test results did not match 100% due to the issues you mention in your
277    documentation regarding isprint(), iscntrl(), isgraph() and ispunct(). I
278    modified some of the character tables temporarily and was able to get the
279    results to match. Tests using the fr locale did not match since I don't have
280    that locale loaded. The study size was always reported to be 3 less than the
281    value in the standard test output files."
282    
283    =========================
284    $! This DCL procedure builds PCRE on OpenVMS
285    $!
286    $! I followed the instructions in the non-unix-use file in the distribution.
287    $!
288    $ COMPILE == "CC/LIST/NOMEMBER_ALIGNMENT/PREFIX_LIBRARY_ENTRIES=ALL_ENTRIES
289    $ COMPILE DFTABLES.C
290    $ LINK/EXE=DFTABLES.EXE DFTABLES.OBJ
291    $ RUN DFTABLES.EXE/OUTPUT=CHARTABLES.C
292    $ COMPILE MAKETABLES.C
293    $ COMPILE GET.C
294    $ COMPILE STUDY.C
295    $! I had to set POSIX_MALLOC_THRESHOLD to 10 in PCRE.H since the symbol
296    $! did not seem to be defined anywhere.
297    $! I edited pcre.h and added #DEFINE SUPPORT_UTF8 to enable UTF8 support.
298    $ COMPILE PCRE.C
299    $ LIB/CREATE PCRE MAKETABLES.OBJ, GET.OBJ, STUDY.OBJ, PCRE.OBJ
300    $! I had to set POSIX_MALLOC_THRESHOLD to 10 in PCRE.H since the symbol
301    $! did not seem to be defined anywhere.
302    $ COMPILE PCREPOSIX.C
303    $ LIB/CREATE PCREPOSIX PCREPOSIX.OBJ
304    $ COMPILE PCRETEST.C
305    $ LINK/EXE=PCRETEST.EXE PCRETEST.OBJ, PCRE/LIB, PCREPOSIX/LIB
306    $! C programs that want access to command line arguments must be
307    $! defined as a symbol
308    $ PCRETEST :== "$ SYS$ROADSUSERS:[DMOONEY.REGEXP]PCRETEST.EXE"
309    $! Arguments must be enclosed in quotes.
310    $ PCRETEST "-C"
311    $! Test results:
312    $!
313    $!   The test results did not match 100%. The functions isprint(), iscntrl(),
314    $!   isgraph() and ispunct() on OpenVMS must not produce the same results
315    $!   as the system that built the test output files provided with the
316    $!   distribution.
317    $!
318    $!   The study size did not match and was always 3 less on OpenVMS.
319    $!
320    $!   Locale could not be set to fr
321    $!
322    =========================
323    
324    Last Updated: 11 September 2007
325  ****  ****

Legend:
Removed from v.53  
changed lines
  Added in v.243

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12