I am able to build 32bit FastCGI library in 32bit Linux Mint using this sequence:
./configure
make
make install
But how should I change files in order to build 64 version? I’ve already installed multilib for gcc and g++.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is possible to compile 64 bit applications on a 32 bit machine, but you will not be able to run them.
I beleive all you would have to do is pass
CPPFLAGS+=-m64to the compile line and voila. Theconfigure.shprobably takes optional parameters for you to specify the build environment manually.