This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Compiling gcc-4.1.2 on 64-bit Ubuntu machines


On 25 January 2011 10:31, Olumide wrote:
>
> I would like to roll out the build to other machines (several dozen
> actually). I've tried copying the entire hierarchy (source and build) to the
> target machines and then running make install but I'm getting the error
> message (I'd appreciate help solving this problem -- thanks):

The problem is that "make install" checks if it needs to rebuild, and
notices that system headers and other things have changed.

Don't do it that way, instead use "DESTDIR"

http://www.gnu.org/prep/standards/html_node/DESTDIR.html

This allows you to copy the entire installed tree (not the source and
build trees) to a temporary staging area, from where it can be
packaged up into an archive, then extracted on the destination
machines.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]