On 07/18/2012 11:00 PM, Sylvain Leroux wrote:
It appears that for some reason the installation of gcc does not follow
the same path as for the other binaries.
By taking a closer look at the output of 'make install' it appears that
gcc is in fact installed with the requested name, but removed just
afterward:
-------8<----------
rm -f /tmp/gcc-4.7.1/bin/avr-gcc-4.7.1
/usr/bin/install -c xgcc /tmp/gcc-4.7.1/bin/avr-gcc-4.7.1 (install)
rm -f /tmp/gcc-4.7.1/bin/avr-gcc-4.7.1 (delete )
-------8<----------
I fixed the problem by swapping the two corresponding lines in the
target 'install-driver' of the file ${GCCSRC}gcc/Makefile.in:
--- Makefile.in.orig 2012-07-18 23:16:01.000000000 +0200
+++ Makefile.in 2012-07-18 23:16:13.000000000 +0200
@@ -4650,10 +4650,10 @@
# $(target_noncanonical)-gcc-$(version)
# and also as either gcc (if native) or $(gcc_tooldir)/bin/gcc.
install-driver: installdirs xgcc$(exeext)
-rm -f $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
- -$(INSTALL_PROGRAM) xgcc$(exeext)
$(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
-rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-$(version)$(exeext)
+ -$(INSTALL_PROGRAM) xgcc$(exeext)
$(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
-( cd $(DESTDIR)$(bindir) && \
$(LN) $(GCC_INSTALL_NAME)$(exeext)
$(target_noncanonical)-gcc-$(version)$(exeext) )
-if [ -f gcc-cross$(exeext) ] ; then \
if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
I don't think this had any side effect - and should be safe for inclusion.
- Sylvain