[FFmpeg-cvslog] configure: Pass the right machine types to dlltool for arm and arm64 mingw

Martin Storsjö git at videolan.org
Mon Feb 19 23:36:51 EET 2018


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Sat Feb 17 00:17:21 2018 +0200| [cc1c94dacd0642ac1a6cad45deb65071f127d91a] | committer: Martin Storsjö

configure: Pass the right machine types to dlltool for arm and arm64 mingw

These are supported by llvm-dlltool.

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cc1c94dacd0642ac1a6cad45deb65071f127d91a
---

 configure | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/configure b/configure
index 06fb839a18..1c35f9dc64 100755
--- a/configure
+++ b/configure
@@ -3894,6 +3894,10 @@ case $target_os in
         LIBTARGET=i386
         if enabled x86_64; then
             LIBTARGET="i386:x86-64"
+        elif enabled arm; then
+            LIBTARGET="arm"
+        elif enabled aarch64; then
+            LIBTARGET="arm64"
         fi
         if enabled shared; then
             # Cannot build both shared and static libs when using dllimport.



More information about the ffmpeg-cvslog mailing list