blob: 3738b5ab283400b5f381bc4eea098bbb029bc7c0 [file] [log] [blame]
willy tarreau78345332005-12-18 01:33:16 +01001 -------------------
2 H A - P r o x y
3 How to build it
4 -------------------
Willy Tarreau83b30c12008-05-25 10:32:50 +02005 version 1.3.15
willy tarreau78345332005-12-18 01:33:16 +01006 willy tarreau
Willy Tarreau83b30c12008-05-25 10:32:50 +02007 2008/05/25
willy tarreau78345332005-12-18 01:33:16 +01008
9
10To build haproxy, you will need :
11 - GNU make. Neither Solaris nor OpenBSD's make work with this makefile.
Willy Tarreau83b30c12008-05-25 10:32:50 +020012 However, specific Makefiles for BSD and OSX are provided.
13 - GCC between 2.91 and 4.3. Others may work, but not tested.
willy tarreau78345332005-12-18 01:33:16 +010014 - GNU ld
15
16Also, you might want to build with libpcre support, which will provide a very
17efficient regex implementation and will also fix some badness on Solaris's one.
18
19To build haproxy, you have to choose your target OS amongst the following ones
20and assign it to the TARGET variable :
21
Willy Tarreau83b30c12008-05-25 10:32:50 +020022 - linux22 for Linux 2.2
23 - linux24 for Linux 2.4 and above (default)
24 - linux24e for Linux 2.4 with support for a working epoll (> 0.21)
Willy Tarreau83b30c12008-05-25 10:32:50 +020025 - linux26 for Linux 2.6 and above
26 - solaris for Solaris 8 or 10 (others untested)
27 - freebsd for FreeBSD 5 to 6.2 (others untested)
28 - openbsd for OpenBSD 3.1 to 3.7 (others untested)
29 - generic for any other OS.
30 - custom to manually adjust every setting
willy tarreau78345332005-12-18 01:33:16 +010031
32You may also choose your CPU to benefit from some optimizations. This is
33particularly important on UltraSparc machines. For this, you can assign
34one of the following choices to the CPU variable :
35
36 - i686 for intel PentiumPro, Pentium 2 and above, AMD Athlon
37 - i586 for intel Pentium, AMD K6, VIA C3.
38 - ultrasparc : Sun UltraSparc I/II/III/IV processor
39 - generic : any other processor or no specific optimization. (default)
40
Willy Tarreau83b30c12008-05-25 10:32:50 +020041Alternatively, you may just set the CPU_CFLAGS value to the optimal GCC options
42for your platform.
43
Willy Tarreauef7341d2009-04-11 19:45:50 +020044You may want to build specific target binaries which do not match your native
45compiler's target. This is particularly true on 64-bit systems when you want
46to build a 32-bit binary. Use the ARCH variable for this purpose. Right now
47it only knows about a few x86 variants (i386,i486,i586,i686,x86_64) and sets
48-m32/-m64 as well as -march=<arch> accordingly.
49
willy tarreau78345332005-12-18 01:33:16 +010050If your system supports PCRE (Perl Compatible Regular Expressions), then you
51really should build with libpcre which is between 2 and 10 times faster than
52other libc implementations. Regex are used for header processing (deletion,
53rewriting, allow, deny). The only inconvenient of libpcre is that it is not
54yet widely spread, so if you build for other systems, you might get into
55trouble if they don't have the dynamic library. In this situation, you should
56statically link libpcre into haproxy so that it will not be necessary to
Willy Tarreau83b30c12008-05-25 10:32:50 +020057install it on target systems. Available build options for PCRE are :
willy tarreau78345332005-12-18 01:33:16 +010058
Willy Tarreau83b30c12008-05-25 10:32:50 +020059 - USE_PCRE=1 to use libpcre, in whatever form is available on your system
willy tarreau78345332005-12-18 01:33:16 +010060 (shared or static)
61
Willy Tarreau83b30c12008-05-25 10:32:50 +020062 - USE_STATIC_PCRE=1 to use a static version of libpcre even if the dynamic
63 one is available. This will enhance portability.
64
65 - with no option, use your OS libc's standard regex implemntation (default).
66 Warning! group references on Solaris seem broken. Use static-pcre whenever
67 possible.
willy tarreau78345332005-12-18 01:33:16 +010068
69By default, the DEBUG variable is set to '-g' to enable debug symbols. It is
70not wise to disable it on uncommon systems, because it's often the only way to
71get a complete core when you need one. Otherwise, you can set DEBUG to '-s' to
72strip the binary.
73
74For example, I use this to build for Solaris 8 :
75
Willy Tarreau83b30c12008-05-25 10:32:50 +020076 $ make TARGET=solaris CPU=ultrasparc USE_STATIC_PCRE=1
willy tarreau78345332005-12-18 01:33:16 +010077
Willy Tarreau83b30c12008-05-25 10:32:50 +020078And I build it this way on OpenBSD or FreeBSD :
willy tarreaud38e72d2006-03-19 20:56:52 +010079
80 $ make -f Makefile.bsd REGEX=pcre DEBUG= COPTS.generic="-Os -fomit-frame-pointer -mgnu"
81
Willy Tarreauef7341d2009-04-11 19:45:50 +020082In order to build a 32-bit binary on an x86_64 Linux system :
83
84 $ make TARGET=linux26 ARCH=i386
85
willy tarreau78345332005-12-18 01:33:16 +010086If you need to pass other defines, includes, libraries, etc... then please
87check the Makefile to see which ones will be available in your case, and
Willy Tarreau83b30c12008-05-25 10:32:50 +020088use the USE_* variables in the GNU Makefile, or ADDINC, ADDLIB, and DEFINE
89variables in the BSD makefiles.
willy tarreau78345332005-12-18 01:33:16 +010090
91-- end