Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-11-22 18:20:31 +0300
committerDiego Biurrun <diego@biurrun.de>2016-12-05 18:39:52 +0300
commit5d45fe7da972da528915fbdfe3dbf22eb2effd01 (patch)
tree563d40d03fcedfde32173c9ad8b2f58cc6c082bb /Makefile
parent2a096440768b1086bb437939f827b8b7a5716bf7 (diff)
build: Add EXTRALIBS to TOOLS linker command
EXTRALIBS contains general and platform-specific extra libraries that should be part of all linker commands.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)