简体   繁体   中英

How 64bit FastCGI library can be built within 32bit Linux Mint?

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++.

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+=-m64 to the compile line and voila. The configure.sh probably takes optional parameters for you to specify the build environment manually.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM