Last active
March 23, 2023 18:01
-
-
Save ryanjbonnell/3880048 to your computer and use it in GitHub Desktop.
Install Memcache on Mac OS X 10.8 "Mountain Lion"
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
# memcached requires libevent | |
cd /usr/local/src | |
curl -L -O http://cloud.github.com/downloads/libevent/libevent/libevent-2.0.17-stable.tar.gz | |
tar -xvzf libevent-2.0.17-stable.tar.gz | |
cd libevent-2.0.17-stable* | |
./configure | |
make | |
sudo make install | |
# Compile memcached utility | |
cd /usr/local/src | |
curl -L -O http://memcached.googlecode.com/files/memcached-1.4.13.tar.gz | |
tar -xvzf memcached-1.4.13.tar.gz | |
cd memcached-1.4.13* | |
./configure | |
make | |
sudo make install | |
# Create .bash_profile alias to start memcached as needed | |
alias m="memcached -d -m 24 -p 11211" | |
# Install autoconfig | |
cd /usr/local/src | |
curl -L -O http://gnu.mirrors.hoobly.com/gnu/autoconf/autoconf-2.69.tar.gz | |
tar xzf autoconf-2.69.tar.gz | |
cd autoconf-2.69 | |
./configure --prefix=/usr/local | |
make | |
sudo make install | |
# Compile and copy memcached.so module | |
cd /usr/local/src | |
curl -O http://pecl.php.net/get/memcache-2.2.7.tgz | |
tar -xvzf memcache-2.2.7.tgz | |
cd memcache-2.2.7 | |
phpize | |
./configure --enable-memcache | |
make | |
sudo make install | |
# If using MAMP | |
# cp modules/memcache.so /Applications/MAMP/bin/php/php5.3.6/lib/php/extensions/no-debug-non-zts-20090626/ | |
# emacs /Applications/MAMP/bin/php/php5.3.6/conf/php.ini # add line: extension=memcache.so | |
# If using Apache2 | |
# sudo emacs /etc/php.ini # add line: extension=memcache.so |
@ecamaj actually four :)
Didn't find any solution to this compilation error, but I was able to install it via brew install memcached
I was building memcache
3.0.8 for PHP 5.6 from Acquia DevDesktop and I was getting error about incorrect architecture (also when I installed memcache
via brew
). The solution was to add "32bit" flags for the configuration script:
./configure --enable-memcache --with-php-config=/Applications/DevDesktop/php5_6/bin/php-config "CFLAGS=-m32" "CXXFLAGS=-m32" "LDFLAGS=-m32"
The error I was getting was something like wrong architecture in Unknown on line 0 in MAMP
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm also getting this -pthread error. That makes three of us.
Anyone can help?