From 806298583bf7ef5a111daf010b4b27aa5440e54b Mon Sep 17 00:00:00 2001 From: sg Date: Thu, 21 Jul 2016 20:47:43 +0200 Subject: [PATCH] Filelists.mk: make init.c the first file compiled, to have the sanity checks first --- src/Filelists.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Filelists.mk b/src/Filelists.mk index 70feab2f..81eb1cee 100644 --- a/src/Filelists.mk +++ b/src/Filelists.mk @@ -30,10 +30,10 @@ # # COREFILES, CORE4FILES: The minimum set of files needed for lwIP. -COREFILES=$(LWIPDIR)/core/def.c \ +COREFILES=$(LWIPDIR)/core/init.c \ + $(LWIPDIR)/core/def.c \ $(LWIPDIR)/core/dns.c \ $(LWIPDIR)/core/inet_chksum.c \ - $(LWIPDIR)/core/init.c \ $(LWIPDIR)/core/ip.c \ $(LWIPDIR)/core/mem.c \ $(LWIPDIR)/core/memp.c \