Both at gimp-normalmap and gimp-dds, we have an incorrect usage of $(LD)
at the Makefile.
We have $(LD) being used to link all the objects together. However, this
is incorrect, $(CC) should have been used instead.
If we set LD to "ld" program, which would be the correct, then the
compilation fails because of $(LDFLAGS) parameters (as these flags are
meant to be passed to $(CC)).
So, the solution is simple:
* Delete the "LD=gcc" line
* Chante $(LD) to $(CC) at the line that generates the final executable.
Original issue reported on code.google.com by denilsonsa on 25 Apr 2010 at 8:40
Original issue reported on code.google.com by
denilsonsa
on 25 Apr 2010 at 8:40