What options do I need to pass to compile something to /usr/lib64?
- by Phillip Oldham
I'm trying to install a newer version of libevent than is on my machine, so I can install memcached. However, the install for memcached complains that the libevent library isn't in /usr/lib64 and that it isn't 64bit.
What options do I need to pass to ./configure to get it to compile as 64bit and/or into the /usr/lib64 directory?
This is what I have at the moment:
CHOST="x86_64-pc-linux-gnu" CFLAGS="-O2" CXX=gcc CXXFLAGS="-O2" \
CC=gcc CXX=gcc \
./configure --prefix=/usr
Thanks!