On 22/04/2016 10:08, Cornelia Huck wrote: >> > However, to solve this problem, it would be enough to export >> > ${cross_prefix} from configure to config-host.mak and do like this: >> > >> > $(CROSS_PREFIX)strip <...> > I agree. This would probably be the easiest way. >
$(CROSS_PREFIX) is a build->host cross prefix (tool running on build machine, producing output for the machine that QEMU runs on). The ones in roms/Makefile are build->target cross prefix (tool running on build machine, producing output for the machine that QEMU emulates). So roms/Makefile is the way to go. Paolo