From patchwork Fri Feb 16 22:19:23 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2/2] configure: Pass the right machine types to dlltool for arm and arm64 mingw X-Patchwork-Submitter: =?utf-8?q?Martin_Storsj=C3=B6?= X-Patchwork-Id: 64203 Message-Id: <20180216221923.89541-2-martin@martin.st> To: libav-devel@libav.org Date: Sat, 17 Feb 2018 00:19:23 +0200 From: =?utf-8?q?Martin_Storsj=C3=B6?= List-Id: libav development These are supported by llvm-dlltool. --- 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.