summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-02-22 17:36:54 +0100
committerantirez <antirez@gmail.com>2010-02-22 17:36:54 +0100
commit9ebed7cf066267c0fe91f100f50c028fc4cec23f (patch)
tree5b1e4b55e50c27121c517ff419f81d481f4e9da6 /Makefile
parent12d090d2d0a9ff8d2c082b97cf405a30c7126752 (diff)
downloadredis-9ebed7cf066267c0fe91f100f50c028fc4cec23f.tar.gz
Fixed 32bit make target to work on Linux out of the box
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c6a61b1e4..9f7dde3a9 100644
--- a/Makefile
+++ b/Makefile
@@ -79,7 +79,10 @@ log:
git log '--pretty=format:%ad %s' --date=short > Changelog
32bit:
- make ARCH="-arch i386"
+ @echo ""
+ @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
+ @echo ""
+ make ARCH="-m32"
gprof:
make PROF="-pg"