This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: libffi not installed
- From: Nathanael Nerode <neroden at twcny dot rr dot com>
- To: gcc at gcc dot gnu dot org, tromey at redhat dot com
- Date: Tue, 31 Dec 2002 06:08:12 -0500
- Subject: Re: libffi not installed
>Today I did a clean build and install of the trunk, and I noticed that
>libffi is not installed.
>
>I see this in the top-level Makefile.in:
>
># Dummy target for uninstallable.
>install-target-libffi:
>
>I'd prefer it if libffi install decisions were left up to the libffi
>Makefile.
>
>Tom
This reproduced existing behavior prior to my cleanups; I found that
several subdirectories were never installed and reproduced that.
If libffi provides a functioning "install" target (even if it's a dummy target
which does nothing) this can be removed safely.
Note the following line in Makefile.def:
target_modules = { module= libffi; no_install=true; };
Just remove the "no_install=true;" and regenerate Makefile.in if you
want libffi to be installable. Happy?
--Nathanael