Last active
August 22, 2016 13:57
-
-
Save imesh/7388505 to your computer and use it in GitHub Desktop.
Build HAProxy on OSX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Xcode/Preferences/Downloads/Command Line Tools, this will install make for OSX | |
# Download HAProxy source (tar.gz) bundle. | |
make ARCH=x86_64 and TARGET=darwin | |
make install | |
# Once the installation is complete haproxy executable could be found at: /usr/local/sbin/haproxy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The "and" in the first
make
command isn't needed :-)