Comment 2 for bug 1221725

Revision history for this message
Gerhard Bertelsmann (0-infy-7) wrote :

The makefiles set LNK and CPP sometimes with TOOLPREFIX sometimes not.
The patch will add TOOLPREFIX consistently, e.g.:

-CPP=gcc
-LNK=gcc
+CPP=$(TOOLPREFIX)gcc
+LNK=$(TOOLPREFIX)gcc

This patch makes cross compiling much smoother.