Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Makefile: fix compilation on ARM (-ldl for x264)
  • Loading branch information
perexg committed Oct 6, 2015
1 parent ac47b98 commit 0a0681b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -73,9 +73,9 @@ LDFLAGS += ${LDFLAGS_FFDIR}/libvorbisenc.a
LDFLAGS += ${LDFLAGS_FFDIR}/libvorbis.a
LDFLAGS += ${LDFLAGS_FFDIR}/libogg.a
ifeq ($(CONFIG_LIBX264_STATIC),yes)
LDFLAGS += ${LDFLAGS_FFDIR}/libx264.a
LDFLAGS += ${LDFLAGS_FFDIR}/libx264.a -ldl
else
LDFLAGS += -lx264
LDFLAGS += -lx264 -ldl
endif
ifeq ($(CONFIG_LIBX265),yes)
ifeq ($(CONFIG_LIBX265_STATIC),yes)
Expand Down

0 comments on commit 0a0681b

Please sign in to comment.