diff options
author | Martin Storsjö <martin@martin.st> | 2018-02-17 00:17:21 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2018-02-19 12:36:41 +0200 |
commit | cc1c94dacd0642ac1a6cad45deb65071f127d91a (patch) | |
tree | 4fbd773fd08b8a769e367dd2f86250e62afbcd35 | |
parent | 97eee953e639bd4d17a9f9398293775277d00505 (diff) | |
download | ffmpeg-cc1c94dacd0642ac1a6cad45deb65071f127d91a.tar.gz |
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@martin.st>
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |