diff --git a/Makefile b/Makefile index 2e5a74785b..c4c0195b61 100644 --- a/Makefile +++ b/Makefile @@ -35,6 +35,7 @@ $(if $(wildcard .xcompile),,$(eval $(shell util/xcompile/xcompile $(XGCCPATH) > .xcompile || rm -f .xcompile))) .xcompile: util/xcompile/xcompile + rm -f $@ $< $(XGCCPATH) > $@.tmp \mv -f $@.tmp $@ 2> /dev/null @@ -120,7 +121,13 @@ else include $(HAVE_DOTCONFIG) -include .xcompile +-include .xcompile + +ifneq ($(XCOMPILE_COMPLETE),1) +$(shell rm -f .xcompile) +$(error .xcompile deleted because it's invalid. \ + Restarting the build should fix that, or explain the problem) +endif ifneq ($(CONFIG_MMX),y) CFLAGS_x86_32 += -mno-mmx diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index a8134a0c98..4b9858099b 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -355,3 +355,4 @@ for architecture in $SUPPORTED_ARCHITECTURES; do report_arch_toolchain fi done +echo XCOMPILE_COMPLETE:=1