From 5d45fe7da972da528915fbdfe3dbf22eb2effd01 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 22 Nov 2016 16:20:31 +0100 Subject: [PATCH] build: Add EXTRALIBS to TOOLS linker command EXTRALIBS contains general and platform-specific extra libraries that should be part of all linker commands. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f5bbc8b626..5aa2ab4557 100644 --- a/Makefile +++ b/Makefile @@ -117,7 +117,7 @@ FF_STATIC_DEP_LIBS := $(STATIC_DEP_LIBS) all: $(AVPROGS) $(TOOLS): %$(EXESUF): %.o - $(LD) $(LDFLAGS) $(LDEXEFLAGS) $(LD_O) $^ $(ELIBS) + $(LD) $(LDFLAGS) $(LDEXEFLAGS) $(LD_O) $^ $(EXTRALIBS) $(ELIBS) tools/cws2fws$(EXESUF): ELIBS = $(ZLIB)