blob: 86e480ef575582dd97be4f94a1257c30611f99fe [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)
25 - linux24eold for Linux 2.4 with support for a broken epoll (<= 0.21)
26 - linux26 for Linux 2.6 and above
27 - solaris for Solaris 8 or 10 (others untested)
28 - freebsd for FreeBSD 5 to 6.2 (others untested)
29 - openbsd for OpenBSD 3.1 to 3.7 (others untested)
30 - generic for any other OS.
31 - custom to manually adjust every setting
willy tarreau78345332005-12-18 01:33:16 +010032
33You may also choose your CPU to benefit from some optimizations. This is
34particularly important on UltraSparc machines. For this, you can assign
35one of the following choices to the CPU variable :
36
37 - i686 for intel PentiumPro, Pentium 2 and above, AMD Athlon
38 - i586 for intel Pentium, AMD K6, VIA C3.
39 - ultrasparc : Sun UltraSparc I/II/III/IV processor
40 - generic : any other processor or no specific optimization. (default)
41
Willy Tarreau83b30c12008-05-25 10:32:50 +020042Alternatively, you may just set the CPU_CFLAGS value to the optimal GCC options
43for your platform.
44
willy tarreau78345332005-12-18 01:33:16 +010045If your system supports PCRE (Perl Compatible Regular Expressions), then you
46really should build with libpcre which is between 2 and 10 times faster than
47other libc implementations. Regex are used for header processing (deletion,
48rewriting, allow, deny). The only inconvenient of libpcre is that it is not
49yet widely spread, so if you build for other systems, you might get into
50trouble if they don't have the dynamic library. In this situation, you should
51statically link libpcre into haproxy so that it will not be necessary to
Willy Tarreau83b30c12008-05-25 10:32:50 +020052install it on target systems. Available build options for PCRE are :
willy tarreau78345332005-12-18 01:33:16 +010053
Willy Tarreau83b30c12008-05-25 10:32:50 +020054 - USE_PCRE=1 to use libpcre, in whatever form is available on your system
willy tarreau78345332005-12-18 01:33:16 +010055 (shared or static)
56
Willy Tarreau83b30c12008-05-25 10:32:50 +020057 - USE_STATIC_PCRE=1 to use a static version of libpcre even if the dynamic
58 one is available. This will enhance portability.
59
60 - with no option, use your OS libc's standard regex implemntation (default).
61 Warning! group references on Solaris seem broken. Use static-pcre whenever
62 possible.
willy tarreau78345332005-12-18 01:33:16 +010063
64By default, the DEBUG variable is set to '-g' to enable debug symbols. It is
65not wise to disable it on uncommon systems, because it's often the only way to
66get a complete core when you need one. Otherwise, you can set DEBUG to '-s' to
67strip the binary.
68
69For example, I use this to build for Solaris 8 :
70
Willy Tarreau83b30c12008-05-25 10:32:50 +020071 $ make TARGET=solaris CPU=ultrasparc USE_STATIC_PCRE=1
willy tarreau78345332005-12-18 01:33:16 +010072
Willy Tarreau83b30c12008-05-25 10:32:50 +020073And I build it this way on OpenBSD or FreeBSD :
willy tarreaud38e72d2006-03-19 20:56:52 +010074
75 $ make -f Makefile.bsd REGEX=pcre DEBUG= COPTS.generic="-Os -fomit-frame-pointer -mgnu"
76
willy tarreau78345332005-12-18 01:33:16 +010077If you need to pass other defines, includes, libraries, etc... then please
78check the Makefile to see which ones will be available in your case, and
Willy Tarreau83b30c12008-05-25 10:32:50 +020079use the USE_* variables in the GNU Makefile, or ADDINC, ADDLIB, and DEFINE
80variables in the BSD makefiles.
willy tarreau78345332005-12-18 01:33:16 +010081
82-- end