willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 1 | ------------------- |
| 2 | H A - P r o x y |
| 3 | How to build it |
| 4 | ------------------- |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 5 | version 1.3.15 |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 6 | willy tarreau |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 7 | 2008/05/25 |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 8 | |
| 9 | |
| 10 | To build haproxy, you will need : |
| 11 | - GNU make. Neither Solaris nor OpenBSD's make work with this makefile. |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 12 | However, specific Makefiles for BSD and OSX are provided. |
| 13 | - GCC between 2.91 and 4.3. Others may work, but not tested. |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 14 | - GNU ld |
| 15 | |
| 16 | Also, you might want to build with libpcre support, which will provide a very |
| 17 | efficient regex implementation and will also fix some badness on Solaris's one. |
| 18 | |
| 19 | To build haproxy, you have to choose your target OS amongst the following ones |
| 20 | and assign it to the TARGET variable : |
| 21 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 22 | - 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 tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 32 | |
| 33 | You may also choose your CPU to benefit from some optimizations. This is |
| 34 | particularly important on UltraSparc machines. For this, you can assign |
| 35 | one 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 Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 42 | Alternatively, you may just set the CPU_CFLAGS value to the optimal GCC options |
| 43 | for your platform. |
| 44 | |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 45 | If your system supports PCRE (Perl Compatible Regular Expressions), then you |
| 46 | really should build with libpcre which is between 2 and 10 times faster than |
| 47 | other libc implementations. Regex are used for header processing (deletion, |
| 48 | rewriting, allow, deny). The only inconvenient of libpcre is that it is not |
| 49 | yet widely spread, so if you build for other systems, you might get into |
| 50 | trouble if they don't have the dynamic library. In this situation, you should |
| 51 | statically link libpcre into haproxy so that it will not be necessary to |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 52 | install it on target systems. Available build options for PCRE are : |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 53 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 54 | - USE_PCRE=1 to use libpcre, in whatever form is available on your system |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 55 | (shared or static) |
| 56 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 57 | - 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 tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 63 | |
| 64 | By default, the DEBUG variable is set to '-g' to enable debug symbols. It is |
| 65 | not wise to disable it on uncommon systems, because it's often the only way to |
| 66 | get a complete core when you need one. Otherwise, you can set DEBUG to '-s' to |
| 67 | strip the binary. |
| 68 | |
| 69 | For example, I use this to build for Solaris 8 : |
| 70 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 71 | $ make TARGET=solaris CPU=ultrasparc USE_STATIC_PCRE=1 |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 72 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 73 | And I build it this way on OpenBSD or FreeBSD : |
willy tarreau | d38e72d | 2006-03-19 20:56:52 +0100 | [diff] [blame] | 74 | |
| 75 | $ make -f Makefile.bsd REGEX=pcre DEBUG= COPTS.generic="-Os -fomit-frame-pointer -mgnu" |
| 76 | |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 77 | If you need to pass other defines, includes, libraries, etc... then please |
| 78 | check the Makefile to see which ones will be available in your case, and |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 79 | use the USE_* variables in the GNU Makefile, or ADDINC, ADDLIB, and DEFINE |
| 80 | variables in the BSD makefiles. |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 81 | |
| 82 | -- end |