2010-12-12 11:56:22 +01:00
|
|
|
|
|
|
|
Some temporary build instructions. This is work in progress.
|
|
|
|
|
|
|
|
|
|
|
|
Windows
|
|
|
|
|
|
|
|
Visual Studio
|
|
|
|
|
|
|
|
To build pcre I downloaded the sourcecode from www.pcre.org. I downloaded cmake 2.8.
|
|
|
|
Then I built the lib with:
|
|
|
|
cmake .
|
|
|
|
nmake
|
|
|
|
|
2010-12-30 00:00:46 +01:00
|
|
|
The resulting files can be downloaded here (please try if it works):
|
|
|
|
http://cppcheck.sf.net/pcre-8.10-vs.zip
|
2010-12-12 11:56:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
MINGW (Qt 4.7 SDK)
|
|
|
|
|
2010-12-30 00:00:46 +01:00
|
|
|
I downloaded pcre-8.0-lib.zip from here: http://software-download.name/pcre-library-windows/
|
2010-12-12 11:56:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
Linux
|
|
|
|
|
|
|
|
The normal Makefile should work
|
|
|
|
|
2010-12-30 00:00:46 +01:00
|
|
|
Install pcre on ubuntu might be needed:
|
2010-12-12 11:56:22 +01:00
|
|
|
sudo apt-get install libpcre3 libpcre3-dev
|
2010-12-30 00:00:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
Mac OSX
|
|
|
|
|
|
|
|
Install pcre:
|
|
|
|
|
|
|
|
sudo port install pcre
|
|
|
|
|
|
|
|
Ensure /path/to/pcre.h is in CXXFLAGS, e.g:
|
|
|
|
|
|
|
|
export CXXFLAGS=${CXXFLAGS}:/opt/local/include
|
|
|
|
|