/[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 127 by ph10, Mon Mar 19 11:44:45 2007 UTC revision 155 by ph10, Tue Apr 24 13:36:11 2007 UTC
# Line 1  Line 1 
1  Compiling PCRE on non-Unix systems  Compiling PCRE on non-Unix systems
2  ----------------------------------  ----------------------------------
3    
4    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      Comments about Win32 builds
11      Building under Windows with BCC5.5
12      Building PCRE on OpenVMS
13    
14    
15    GENERAL
16    
17  I (Philip Hazel) have no knowledge of Windows or VMS sytems and how their  I (Philip Hazel) have no knowledge of Windows or VMS sytems and how their
18  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
19  anything other than Unix-like systems are untested by me.  anything other than Unix-like systems are untested by me.
20    
21  There are some other comments and files in the Contrib directory on the ftp  There are some other comments and files in the Contrib directory on the ftp
22  site that you may find useful, although a lot of them are now out-of-date. See  site that you may find useful. See
23    
24    ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Contrib    ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Contrib
25    
26  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
27  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
28  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
29  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++
30  library. The C++ wrapper functions are a separate issue (see below).  wrapper functions are a separate issue (see below).
31    
32    The PCRE distribution contains some experimental support for "cmake", but this
33    is incomplete and not documented. However if you are a "cmake" user you might
34    like to try building with "cmake".
35    
36    
37  GENERIC INSTRUCTIONS FOR THE C LIBRARY  GENERIC INSTRUCTIONS FOR THE PCRE C LIBRARY
38    
39  The following are generic comments about building the PCRE C library "by hand".  The following are generic comments about building the PCRE C library "by hand".
40    
# Line 31  The following are generic comments about Line 48  The following are generic comments about
48    
49  (2) Copy or rename the file pcre.h.generic as pcre.h.  (2) Copy or rename the file pcre.h.generic as pcre.h.
50    
51  (3) Compile dftables.c as a stand-alone program, and then run it with  (3) EITHER:
52      the single argument "pcre_chartables.c". This generates a set of standard        Copy or rename file pcre_chartables.c.dist as pcre_chartables.c.
53      character tables and writes them to that file.  
54        OR:
55          Compile dftables.c as a stand-alone program, and then run it with the
56          single argument "pcre_chartables.c". This generates a set of standard
57          character tables and writes them to that file. The tables are generated
58          using the default C locale for your system. If you want to use a locale
59          that is specified by LC_xxx environment variables, add the -L option to
60          the dftables command. You must use this method if you are building on
61          a system that uses EBCDIC code.
62    
63        The tables in pcre_chartables.c are defaults. The caller of PCRE can
64        specify alternative tables at run time.
65    
66  (4) Compile the following source files:  (4) Compile the following source files:
67    
# Line 91  xxx.cc files. Line 119  xxx.cc files.
119    
120  BUILDING FOR VIRTUAL PASCAL  BUILDING FOR VIRTUAL PASCAL
121    
122  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
123  PCRE for use with VP/Borland: makevp-compile.txt, makevp-linklib.txt,  was contributed by Alexander Tokarev. Stefan Weber updated the script and added
124  makevp.bat, pcregexp.pas.  additional files. The following files in the distribution are for building PCRE
125    for use with VP/Borland: makevp_c.txt, makevp_l.txt, makevp.bat, pcregexp.pas.
126    
127    
128  BUILDING UNDER WINDOWS WITH BCC5.5  COMMENTS ABOUT WIN32 BUILDS
129    
130  Michael Roy sent these comments about building PCRE under Windows with BCC5.5:  There are two ways of building PCRE using the "congifure, make, make install"
131    paradigm on Windows systems: using MinGW or using Cygwin. These are not at all
132    the same thing; they are completely different from each other. There is also
133    some experimental, undocumented support for building using "cmake", which you
134    might like to try if you are familiar with "cmake". However, at the present
135    time, the "cmake" process builds only a static library (not a dll), and the
136    tests are not automatically run.
137    
138    Some of the core BCC libraries have a version of PCRE from 1998 built in,  The MinGW home page (http://www.mingw.org/) says this:
   which can lead to pcre_exec() giving an erroneous PCRE_ERROR_NULL from a  
   version mismatch. I'm including an easy workaround below, if you'd like to  
   include it in the non-unix instructions:  
139    
140    When linking a project with BCC5.5, pcre.lib must be included before any of    MinGW: A collection of freely available and freely distributable Windows
141    the libraries cw32.lib, cw32i.lib, cw32mt.lib, and cw32mti.lib on the command    specific header files and import libraries combined with GNU toolsets that
142    line.    allow one to produce native Windows programs that do not rely on any
143      3rd-party C runtime DLLs.
144    
145    The Cygwin home page (http://www.cygwin.com/) says this:
146    
147  OUT-OF-DATE COMMENTS ABOUT WIN32 BUILDS    Cygwin is a Linux-like environment for Windows. It consists of two parts:
148    
149  [These comments need looking at by someone who knows about Windows.]    . A DLL (cygwin1.dll) which acts as a Linux API emulation layer providing
150        substantial Linux API functionality
151    
152  Some help in building a Win32 DLL of PCRE in GnuWin32 environments was    . A collection of tools which provide Linux look and feel.
 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.  
153    
154  A script for building PCRE using Borland's C++ compiler for use with VPASCAL    The Cygwin DLL currently works with all recent, commercially released x86 32
155  was contributed by Alexander Tokarev. It is called makevp.bat.    bit and 64 bit versions of Windows, with the exception of Windows CE.
156    
157  These are some further comments about Win32 builds from Mark Evans. They  On both MinGW and Cygwin, PCRE should build correctly using:
 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.)"  
158    
159  =========================    ./configure && make && make install
 #ifdef _WIN32  
 #include <malloc.h>  
160    
161  void* malloc_stub(size_t N)  This should create two libraries called libpcre and libpcreposix, and, if you
162  { return malloc(N); }  have enabled building the C++ wrapper, a third one called libpcrecpp.
 void free_stub(void* p)  
 { free(p); }  
 void *(*pcre_malloc)(size_t) = &malloc_stub;  
 void  (*pcre_free)(void *) = &free_stub;  
163    
164  #else  If you want to statically link your program against a non-dll .a file, you must
165    define PCRE_STATIC before including pcre.h, otherwise the pcre_malloc() and
166    pcre_free() exported functions will be declared __declspec(dllimport), with
167    unwanted results.
168    
169  void *(*pcre_malloc)(size_t) = malloc;  Using Cygwin's compiler generates libraries and executables that depend on
170  void  (*pcre_free)(void *) = free;  cygwin1.dll. If a library that is generated this way is distributed,
171    cygwin1.dll has to be distributed as well. Since cygwin1.dll is under the GPL
172    licence, this forces not only PCRE to be under the GPL, but also the entire
173    application. A distributor who wants to keep their own code proprietary must
174    purchase an appropriate Cygwin licence.
175    
176  #endif  MinGW has no such restrictions. The MinGW compiler generates a library or
177  =========================  executable that can run standalone on Windows without any third party dll or
178    licensing issues.
179    
180    But there is more complication:
181    
182    If a Cygwin user uses the -mno-cygwin Cygwin gcc flag, what that really does is
183    to tell Cygwin's gcc to use the MinGW gcc. Cygwin's gcc is only acting as a
184    front end to MinGW's gcc (if you install Cygwin's gcc, you get both Cygwin's
185    gcc and MinGW's gcc). So, a user can:
186    
187    . Build native binaries by using MinGW or by getting Cygwin and using
188      -mno-cygwin.
189    
190    . Build binaries that depend on cygwin1.dll by using Cygwin with the normal
191      compiler flags.
192    
193    The test files that are supplied with PCRE are in Unix format, with LF
194    characters as line terminators. It may be necessary to change the line
195    terminators in order to get some of the tests to work. We hope to improve
196    things in this area in future.
197    
198    
199    BUILDING UNDER WINDOWS WITH BCC5.5
200    
201    Michael Roy sent these comments about building PCRE under Windows with BCC5.5:
202    
203      Some of the core BCC libraries have a version of PCRE from 1998 built in,
204      which can lead to pcre_exec() giving an erroneous PCRE_ERROR_NULL from a
205      version mismatch. I'm including an easy workaround below, if you'd like to
206      include it in the non-unix instructions:
207    
208      When linking a project with BCC5.5, pcre.lib must be included before any of
209      the libraries cw32.lib, cw32i.lib, cw32mt.lib, and cw32mti.lib on the command
210      line.
211    
212    
213  BUILDING PCRE ON OPENVMS  BUILDING PCRE ON OPENVMS
# Line 245  $! Locale could not be set to fr Line 274  $! Locale could not be set to fr
274  $!  $!
275  =========================  =========================
276    
277    Last Updated: 24 April 2007
278  ****  ****

Legend:
Removed from v.127  
changed lines
  Added in v.155

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12