diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-11-22 16:20:31 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-12-05 16:39:52 +0100 |
commit | 5d45fe7da972da528915fbdfe3dbf22eb2effd01 (patch) | |
tree | 563d40d03fcedfde32173c9ad8b2f58cc6c082bb /Makefile | |
parent | 2a096440768b1086bb437939f827b8b7a5716bf7 (diff) | |
download | ffmpeg-5d45fe7da972da528915fbdfe3dbf22eb2effd01.tar.gz |
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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |