PDA

View Full Version : Is it possible to move compiled programs ?



mozartripper
May 26th, 2013, 01:04 AM
Is it possible to compile lets say apache on my workstation then move it to my server ?

ohnonot
May 26th, 2013, 09:07 PM
what would you copy/move? are you talking about creating a .deb file?

that might be possible.

mozartripper
May 31st, 2013, 04:01 AM
No i'm not creating a deb file. I'm doing ./configure, make, make install. I want to know if after doing make install I can transfer the compiled files to another machine. As I don't want to install all the packages needed to compile on the server machine.

steeldriver
May 31st, 2013, 04:19 AM
provided the target machine has the same architecture as the build machine, and has any shared libraries that the program requires

ohnonot
May 31st, 2013, 05:46 AM
yes,
provided the target machine has the same architecture as the build machine, and has any shared libraries that the program requires
...and it doesn't conflict with sth already installed on the other machine.